Fixed issue with invisible text on lightmode

Fixed an issue where the font color would be the same as the background on lightmode
This commit is contained in:
Jonas_Jones 2023-10-10 18:47:38 +02:00
parent 11b38f9217
commit 02bf2e03c1

View file

@ -1,6 +1,6 @@
:root {
--color-primary: white;
--color-secondary: blac;
--color-secondary: black;
--background-color: white;
}
@ -66,7 +66,7 @@ input, button, select, textarea {
border: 1px solid #ccc;
border-radius: 2px;
background-color: var(--background-color);
color: var(--color-primary);
color: var(--color-secondary);
}
input:disabled {
@ -74,7 +74,7 @@ input:disabled {
}
button {
color: var(--color-primary);
color: var(--color-secondary);
background-color: var(--background-color);
outline: none;
}
@ -90,3 +90,7 @@ button:not(:disabled):active {
button:focus {
border-color: #666;
}
th {
color: var(--color-secondary);
}