43 lines
940 B
CSS
43 lines
940 B
CSS
/**
|
|
* Linux BenchTools - Monokai Dark Theme
|
|
* Default theme with dark Monokai color palette
|
|
*/
|
|
|
|
:root {
|
|
/* Background Colors */
|
|
--bg-primary: #1e1e1e;
|
|
--bg-secondary: #2d2d2d;
|
|
--bg-tertiary: #3e3e3e;
|
|
--bg-hover: #4e4e4e;
|
|
|
|
/* Text Colors */
|
|
--text-primary: #f8f8f2;
|
|
--text-secondary: #cccccc;
|
|
--text-muted: #75715e;
|
|
|
|
/* Monokai Accent Colors */
|
|
--color-red: #f92672;
|
|
--color-orange: #fd971f;
|
|
--color-yellow: #e6db74;
|
|
--color-green: #a6e22e;
|
|
--color-cyan: #66d9ef;
|
|
--color-blue: #66d9ef;
|
|
--color-purple: #ae81ff;
|
|
|
|
/* Semantic Colors */
|
|
--color-success: #a6e22e;
|
|
--color-warning: #fd971f;
|
|
--color-danger: #f92672;
|
|
--color-info: #66d9ef;
|
|
--color-primary: #a6e22e;
|
|
|
|
/* Borders */
|
|
--border-color: #444444;
|
|
--border-highlight: #66d9ef;
|
|
|
|
/* Shadows */
|
|
--shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.4);
|
|
--shadow-md: 0 4px 12px rgba(0, 0, 0, 0.5);
|
|
--shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.6);
|
|
}
|