From a13032c76ed00e979fcf9fb0b20ae8e0e5fd83fe Mon Sep 17 00:00:00 2001 From: Emile Clark-Boman Date: Tue, 3 Feb 2026 20:25:52 +1000 Subject: [PATCH] add text and output theme colours --- www/css/themes/core.css | 12 ++++++++++-- www/css/themes/maps/rose-pine.css | 5 ++++- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/www/css/themes/core.css b/www/css/themes/core.css index b01cbaa..2c30107 100644 --- a/www/css/themes/core.css +++ b/www/css/themes/core.css @@ -1,11 +1,15 @@ -.theme-tty-base { +.theme-base { color: var(--theme-base); } -.theme-tty-bg { +.theme-bg { color: var(--theme-bg); } +.theme-text { + color: var(--theme-text); +} + .theme-tty-prompt { color: var(--theme-tty-prompt); } @@ -14,6 +18,10 @@ color: var(--theme-tty-command); } +.theme-tty-output { + color: var(--theme-tty-output); +} + .theme-tty-warning { color: var(--theme-tty-warning); } diff --git a/www/css/themes/maps/rose-pine.css b/www/css/themes/maps/rose-pine.css index 58a809b..a4497d9 100644 --- a/www/css/themes/maps/rose-pine.css +++ b/www/css/themes/maps/rose-pine.css @@ -20,9 +20,12 @@ Variables: :root { --theme-base: 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-command: var(--palette-rose-pine-iris); + --theme-tty-output: var(--palette-rose-pine-text); --theme-tty-warning: var(--palette-rose-pine-gold); --theme-tty-error: var(--palette-rose-pine-love); /* --theme-tty-: var(--palette-rose-pine-); */