feat(theme): add --font-headings; flip body to Carbon Blue dark

This commit is contained in:
Keith Solomon
2026-08-16 12:16:20 -05:00
parent 969cdb14a0
commit ccccd87544
3 changed files with 6403 additions and 7 deletions
+6395
View File
File diff suppressed because it is too large Load Diff
+2 -2
View File
@@ -23,8 +23,8 @@
/* Basic layout styles */
main#maincontent {
background-color: var(--color-background);
color: var(--color-text);
background-color: transparent;
color: var(--color-on-surface, #e3e1e9);
margin: 0;
padding: 0 0 4rem;
}
+3 -2
View File
@@ -41,6 +41,7 @@
@theme {
--font-sans: "Raleway", sans-serif;
--font-headings: var(--font-sans);
--line-height: 1.6;
--text-base: 1rem;
@@ -68,8 +69,8 @@
}
body {
background-color: white;
color: black;
background-color: #100e0b;
color: var(--color-on-surface, #e3e1e9);
font-family: var(--font-sans);
font-size: var(--text-base);
line-height: var(--line-height);