13 lines
202 B
CSS
13 lines
202 B
CSS
#darkModeImg {
|
|
height: 32px;
|
|
width: 32px
|
|
}
|
|
|
|
body.darkMode {
|
|
background-color: rgb(63, 63, 63);
|
|
color: white;
|
|
}
|
|
|
|
.text-shadow.darkMode {
|
|
text-shadow: 1.3px 1.3px #818181 !important;
|
|
} |