light color scheme

This commit is contained in:
Alejandro Gomez 2023-01-20 16:57:59 +01:00
parent 6f1a4c0cd0
commit d37a3f4252
No known key found for this signature in database
GPG Key ID: 4DF39E566658C817
2 changed files with 12 additions and 9 deletions

View File

@ -12,8 +12,9 @@
line-height: 1.5em;
top: -10px;
left: -10px;
font-size: small;
font-size: var(--font-size-small);
background-color: var(--error);
color: var(--note-bg);
font-weight: bold;
text-align: center;
}

View File

@ -30,15 +30,17 @@
@media (prefers-color-scheme: light) {
:root {
--bg-color: #FFF;
--font-color: #000;
--font-secondary-color: #444;
--font-tertiary-color: #666;
--highlight-light: #FFC852;
--highlight: #FF9B00;
--highlight-dark: #944F05;
--bg-color: #F1F1F1;
--font-color: #57534E;
--font-secondary-color: #B9B9B9;
--font-tertiary-color: #F3F3F3;
--highlight-light: #16AAC1;
--highlight: #0284C7;
--highlight-dark: #0A52B5;
--modal-bg-color: rgba(240, 240, 240, 0.8);
--note-bg: #EEE;
--note-bg: white;
--gray: #CCC;
--gray-secondary: #DDD;