mirror of
https://github.com/JonasunderscoreJones/K-Comebacks.git
synced 2025-10-23 01:49:19 +02:00
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:
parent
11b38f9217
commit
02bf2e03c1
1 changed files with 7 additions and 3 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue