fix(share): flash of dark color on light theme

This commit is contained in:
Elian Doran 2025-10-29 18:46:24 +02:00
parent 1c832182d6
commit 9c3f9a524e
No known key found for this signature in database

View File

@ -30,19 +30,6 @@ Accent Color Ideas
--text-link: #FFB628;
*/
:root {
--background-primary: #333333;
--background-secondary: #1F1F1F;
--background-highlight: #484848;
--background-active: #777777;
--text-primary: #cccccc;
--text-heading: #cccccc;
--text-menu: #AAAAAA;
--text-link: #87CEFA;
--text-menu-active: #000000;
color-scheme: dark;
}
body.theme-light {
--background-primary: #FFFFFF;
--background-secondary: #F3F3F3;
@ -55,6 +42,19 @@ body.theme-light {
color-scheme: light;
}
body.theme-dark {
--background-primary: #333333;
--background-secondary: #1F1F1F;
--background-highlight: #484848;
--background-active: #777777;
--text-primary: #cccccc;
--text-heading: #cccccc;
--text-menu: #AAAAAA;
--text-link: #87CEFA;
--text-menu-active: #000000;
color-scheme: dark;
}
body {
background: var(--background-primary);
font-family: 'Montserrat', 'Lucida Grande', 'Lucida Sans Unicode', arial, sans-serif;