add text and output theme colours

This commit is contained in:
do butterflies cry? 2026-02-03 20:25:52 +10:00
parent dc2ec07b0a
commit a13032c76e
2 changed files with 14 additions and 3 deletions

View file

@ -1,11 +1,15 @@
.theme-tty-base { .theme-base {
color: var(--theme-base); color: var(--theme-base);
} }
.theme-tty-bg { .theme-bg {
color: var(--theme-bg); color: var(--theme-bg);
} }
.theme-text {
color: var(--theme-text);
}
.theme-tty-prompt { .theme-tty-prompt {
color: var(--theme-tty-prompt); color: var(--theme-tty-prompt);
} }
@ -14,6 +18,10 @@
color: var(--theme-tty-command); color: var(--theme-tty-command);
} }
.theme-tty-output {
color: var(--theme-tty-output);
}
.theme-tty-warning { .theme-tty-warning {
color: var(--theme-tty-warning); color: var(--theme-tty-warning);
} }

View file

@ -20,9 +20,12 @@ Variables:
:root { :root {
--theme-base: var(--palette-rose-pine-base); --theme-base: var(--palette-rose-pine-base);
--theme-bg: var(--palette-rose-pine-base); --theme-bg: var(--palette-rose-pine-base);
--theme-text: var(--palette-rose-pine-text);
--theme-tty-border: var(--palette-rose-pine-rose);
--theme-tty-prompt: var(--palette-rose-pine-foam); --theme-tty-prompt: var(--palette-rose-pine-foam);
--theme-tty-command: var(--palette-rose-pine-iris); --theme-tty-command: var(--palette-rose-pine-iris);
--theme-tty-output: var(--palette-rose-pine-text);
--theme-tty-warning: var(--palette-rose-pine-gold); --theme-tty-warning: var(--palette-rose-pine-gold);
--theme-tty-error: var(--palette-rose-pine-love); --theme-tty-error: var(--palette-rose-pine-love);
/* --theme-tty-: var(--palette-rose-pine-); */ /* --theme-tty-: var(--palette-rose-pine-); */