Add color theme

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2025-08-06 09:59:41 +02:00
parent 004a20caac
commit d906171b37
3 changed files with 162 additions and 30 deletions

12
assets/sass/fonts.scss Normal file
View File

@@ -0,0 +1,12 @@
:root {
--line-height: 1.5;
--font-family:
system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif,
"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
html {
font-size: 100%;
font-family: var(--font-family);
line-height: var(--line-height);
}