chore: update light theme

This commit is contained in:
Cory Dransfeldt 2024-09-02 16:12:58 -07:00 committed by GitHub
parent 72c09452e0
commit a87ebada49
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -146,6 +146,20 @@
accent-color: var(--accent-color); accent-color: var(--accent-color);
} }
/* light theme */
:root[data-theme="light"] {
--text-color: var(--color-darkest);
--background-color: var(--color-lightest);
--text-color-inverted: var(--color-lightest);
--background-color-inverted: var(--color-darkest);
--accent-color: var(--blue-600);
--accent-color-hover: var(--blue-800);
--gray-light: var(--gray-200);
--gray-lighter: var(--gray-100);
--gray-dark: var(--gray-950);
--brand-github: #333;
}
/* dark theme */ /* dark theme */
:root[data-theme="dark"] { :root[data-theme="dark"] {
--text-color: var(--color-lightest); --text-color: var(--color-lightest);