mirror of
https://github.com/letieu/terminal.css.git
synced 2026-03-15 10:14:29 -07:00
26 lines
612 B
CSS
26 lines
612 B
CSS
:root {
|
|
--terminal-bg: #fbf1c7;
|
|
--terminal-fg: #3c3836;
|
|
|
|
/* ANSI Palette */
|
|
--terminal-black: #fbf1c7;
|
|
--terminal-red: #9d0006;
|
|
--terminal-green: #79740e;
|
|
--terminal-yellow: #b57614;
|
|
--terminal-blue: #076678;
|
|
--terminal-magenta: #8f3f71;
|
|
--terminal-cyan: #427b58;
|
|
--terminal-white: #3c3836;
|
|
--terminal-purple: #8f3f71;
|
|
|
|
/* Semantic Colors */
|
|
--primary: var(--terminal-blue);
|
|
--danger: var(--terminal-red);
|
|
--success: var(--terminal-green);
|
|
--warning: var(--terminal-yellow);
|
|
--info: var(--terminal-cyan);
|
|
--border-color: #d5c4a1;
|
|
--surface: #ebdbb2;
|
|
--muted: #7c6f64;
|
|
}
|