mirror of
https://github.com/letieu/terminal.css.git
synced 2026-03-15 02:04:30 -07:00
26 lines
612 B
CSS
26 lines
612 B
CSS
|
|
:root {
|
||
|
|
--terminal-bg: #1e1e2e;
|
||
|
|
--terminal-fg: #cdd6f4;
|
||
|
|
|
||
|
|
/* ANSI Palette */
|
||
|
|
--terminal-black: #45475a;
|
||
|
|
--terminal-red: #f38ba8;
|
||
|
|
--terminal-green: #a6e3a1;
|
||
|
|
--terminal-yellow: #f9e2af;
|
||
|
|
--terminal-blue: #89b4fa;
|
||
|
|
--terminal-magenta: #cba6f7;
|
||
|
|
--terminal-cyan: #89dceb;
|
||
|
|
--terminal-white: #bac2de;
|
||
|
|
--terminal-purple: #cba6f7;
|
||
|
|
|
||
|
|
/* Semantic Colors */
|
||
|
|
--primary: var(--terminal-blue);
|
||
|
|
--danger: var(--terminal-red);
|
||
|
|
--success: var(--terminal-green);
|
||
|
|
--warning: var(--terminal-yellow);
|
||
|
|
--info: var(--terminal-cyan);
|
||
|
|
--border-color: #585b70;
|
||
|
|
--surface: #313244;
|
||
|
|
--muted: #a6adc8;
|
||
|
|
}
|