2025-11-05 16:48:41 +00:00
|
|
|
/* Cobalt2 Theme */
|
|
|
|
|
/* Inspired by Wes Bos's Cobalt2 theme for VS Code */
|
2025-11-17 16:29:00 +00:00
|
|
|
/* @theme-type: dark */
|
2025-11-05 16:48:41 +00:00
|
|
|
|
|
|
|
|
:root[data-theme="cobalt2"] {
|
|
|
|
|
/* Background colors */
|
|
|
|
|
--bg-primary: #193549;
|
|
|
|
|
--bg-secondary: #122738;
|
|
|
|
|
--bg-tertiary: #1f4662;
|
|
|
|
|
--bg-hover: #234e6d;
|
|
|
|
|
--bg-active: #275472;
|
|
|
|
|
|
|
|
|
|
/* Text colors */
|
|
|
|
|
--text-primary: #ffffff;
|
|
|
|
|
--text-secondary: #e8e8e8;
|
|
|
|
|
--text-tertiary: #aaaaaa;
|
|
|
|
|
|
|
|
|
|
/* Border colors */
|
|
|
|
|
--border-primary: #0d3a58;
|
|
|
|
|
--border-secondary: #0a2942;
|
|
|
|
|
|
|
|
|
|
/* Accent colors - Cobalt blue/yellow */
|
|
|
|
|
--accent-primary: #ffc600;
|
|
|
|
|
--accent-hover: #ffdd57;
|
|
|
|
|
--accent-light: rgba(255, 198, 0, 0.15);
|
|
|
|
|
|
|
|
|
|
/* Status colors */
|
|
|
|
|
--success: #3ad900;
|
|
|
|
|
--error: #ff0088;
|
|
|
|
|
--warning: #ffc600;
|
|
|
|
|
|
|
|
|
|
/* Shadows */
|
|
|
|
|
--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.4);
|
|
|
|
|
--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
|
|
|
|
|
--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.6);
|
|
|
|
|
}
|
|
|
|
|
|