Make quote colours less jarring

This commit is contained in:
Mike Barnes 2025-09-26 10:33:16 +10:00
commit 1896790c03

View file

@ -24,6 +24,12 @@
--color-accent-bg: #f6f5ed; --color-accent-bg: #f6f5ed;
--color-reject: #953f3b; --color-reject: #953f3b;
} }
body {
--rich-text-container-color: rgb(255, 254, 216);
--rich-text-text-color: rgb(63, 58, 18);
--rich-text-decorations-color: rgb(228, 226, 112);
}
@media (prefers-color-scheme: dark) { @media (prefers-color-scheme: dark) {
:root { :root {
--color-bg: #111; --color-bg: #111;
@ -46,6 +52,12 @@
/* --color-confirm: #79bd9a; */ /* --color-confirm: #79bd9a; */
--color-confirm-bg: rgba(196, 216, 197, 30%); --color-confirm-bg: rgba(196, 216, 197, 30%);
} }
body {
--rich-text-container-color: rgb(63, 58, 18);
--rich-text-text-color: rgb(255, 254, 216);
--rich-text-decorations-color: rgb(228, 226, 112);
}
} }
:root { :root {