10 lines
127 B
CSS
10 lines
127 B
CSS
#darkModeImg {
|
|
height: 32px;
|
|
width: 32px
|
|
}
|
|
|
|
body.darkMode {
|
|
background-color: rgb(63, 63, 63);
|
|
color: white;
|
|
}
|