mirror of
https://github.com/letieu/terminal.css.git
synced 2026-03-15 02:04:30 -07:00
feat: implement theming system with persistence and add new themes
This commit is contained in:
25
themes/catppuccin-mocha.css
Normal file
25
themes/catppuccin-mocha.css
Normal file
@@ -0,0 +1,25 @@
|
||||
: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;
|
||||
}
|
||||
Reference in New Issue
Block a user