light-ify InputElement

This commit is contained in:
blek 2023-09-06 21:10:40 +10:00
parent 8292637cc3
commit 0916417957
Signed by: blek
GPG Key ID: 14546221E3595D0C
2 changed files with 20 additions and 3 deletions

View File

@ -47,6 +47,25 @@
.input-status-green {
background: #76b676;
border-color: #76b676;
/* color: #232323; */
}
@media (prefers-color-scheme: light) {
.wordle-input-element {
border-color: #919191;
color: white
}
.input-status-input {
background: #f1f6f6;
color: black;
border-color: #c1c1c1;
}
.input-status-standby {
background: #919191;
}
.input-status-unfit {
background: #b2b4c2;
}
.input-status-green, .input-status-yellow, .input-status-unfit {
border-color: #a1a1a1;
}
}
</style>

View File

@ -106,8 +106,6 @@
.kb-btn-unfit { background: #d1d1d1 !important; }
.kb-btn-unfit:hover { background: #dadada !important; }
.kb-btn-unfit:active { background: #c1c1c1 !important; }
.
}
</style>