2025-11-05 16:48:41 +00:00
|
|
|
/* Visual Studio Blue Theme */
|
|
|
|
|
/* Inspired by classic Visual Studio 2012-2015 Light Blue theme */
|
2025-11-17 16:29:00 +00:00
|
|
|
/* @theme-type: light */
|
2025-11-05 16:48:41 +00:00
|
|
|
|
|
|
|
|
:root[data-theme="vs-blue"] {
|
|
|
|
|
/* Background colors */
|
|
|
|
|
--bg-primary: #ffffff;
|
|
|
|
|
--bg-secondary: #f6f6f6;
|
|
|
|
|
--bg-tertiary: #eeeef2;
|
|
|
|
|
--bg-hover: #e7e9f0;
|
|
|
|
|
--bg-active: #cce4f7;
|
|
|
|
|
|
|
|
|
|
/* Text colors */
|
|
|
|
|
--text-primary: #1e1e1e;
|
|
|
|
|
--text-secondary: #424242;
|
|
|
|
|
--text-tertiary: #717171;
|
|
|
|
|
|
|
|
|
|
/* Border colors */
|
|
|
|
|
--border-primary: #cccedb;
|
|
|
|
|
--border-secondary: #e5e5e5;
|
|
|
|
|
|
|
|
|
|
/* Accent colors - VS Blue */
|
|
|
|
|
--accent-primary: #007acc;
|
|
|
|
|
--accent-hover: #005a9e;
|
|
|
|
|
--accent-light: rgba(0, 122, 204, 0.1);
|
|
|
|
|
|
|
|
|
|
/* Status colors */
|
|
|
|
|
--success: #388a34;
|
|
|
|
|
--error: #e51400;
|
|
|
|
|
--warning: #f6a623;
|
|
|
|
|
|
|
|
|
|
/* Shadows */
|
|
|
|
|
--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.08);
|
|
|
|
|
--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.12);
|
|
|
|
|
--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.16);
|
|
|
|
|
}
|
|
|
|
|
|