From 2350395bdc1afe135141bd8a2d08f63ec3c8d4cb Mon Sep 17 00:00:00 2001 From: Anhgelus Morhtuuzh Date: Fri, 6 Feb 2026 09:02:48 +0100 Subject: feat(frontend): default color for unknown callout --- frontend/scss/main.scss | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'frontend') diff --git a/frontend/scss/main.scss b/frontend/scss/main.scss index ced6763..390112b 100644 --- a/frontend/scss/main.scss +++ b/frontend/scss/main.scss @@ -11,6 +11,9 @@ --color-light-rose: hsl(330, 55%, 70%, 0.2); /* link accent hover and highlight */ --color-black: rgba(0, 0, 0, 0.4); /* pre, code */ + --callout-color-background: hsl(210, 10%, 23%); + --callout-color: hsl(210, 14%, 89%); + @media (prefers-color-scheme: light) { --color-dark: #dbf6f6; --color-light: hsl(202, 25%, 9%); @@ -18,6 +21,9 @@ --color-rose: #a01a5e; /* link accent */ --color-light-rose: hsla(330, 86%, 67%, 0.2); /* link accent hover and highlight */ --color-black: rgba(0, 0, 0, 0.2); /* pre, code */ + + --callout-color-background: hsl(210, 14%, 89%); + --callout-color: hsl(210, 10%, 23%); } --font-size-tiny: 0.85rem; /* quote, legend, code */ -- cgit v1.2.3