16 lines
329 B
CSS
16 lines
329 B
CSS
![]() |
/* Alters the preferences page for Dark Mode */
|
||
|
/* IMPORTANT: change the Internal UUID */
|
||
|
|
||
|
@-moz-document url-prefix("moz-extension://32b18bd1-4169-b649-b20a-ebafe1e7e549/") {
|
||
|
|
||
|
/* Headers */
|
||
|
.comment {
|
||
|
color: var(--primary-accent-color) !important;
|
||
|
}
|
||
|
|
||
|
label {
|
||
|
color: var(--primary-light-color) !important;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|