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/ayu-dark.css
Normal file
25
themes/ayu-dark.css
Normal file
@@ -0,0 +1,25 @@
|
||||
:root {
|
||||
--terminal-bg: #0A0E14;
|
||||
--terminal-fg: #B3B1AD;
|
||||
|
||||
/* ANSI Palette */
|
||||
--terminal-black: #01060E;
|
||||
--terminal-red: #FF3333;
|
||||
--terminal-green: #BAE67E;
|
||||
--terminal-yellow: #FFD580;
|
||||
--terminal-blue: #73D0FF;
|
||||
--terminal-magenta: #D4BFFF;
|
||||
--terminal-cyan: #5FD7FF;
|
||||
--terminal-white: #D9D7CE;
|
||||
--terminal-purple: #D4BFFF;
|
||||
|
||||
/* Semantic Colors */
|
||||
--primary: var(--terminal-blue);
|
||||
--danger: var(--terminal-red);
|
||||
--success: var(--terminal-green);
|
||||
--warning: var(--terminal-yellow);
|
||||
--info: var(--terminal-cyan);
|
||||
--border-color: #393b44;
|
||||
--surface: #1F2229;
|
||||
--muted: #5C6773;
|
||||
}
|
||||
Reference in New Issue
Block a user