18 lines
400 B
CSS
18 lines
400 B
CSS
/* Alters the preferences page */
|
|
/* IMPORTANT: change the Internal UUID */
|
|
|
|
@-moz-document url-prefix("moz-extension://3c48cf03-2bbf-b240-b420-7bb4f1a44a8c/") {
|
|
|
|
body {
|
|
background: var(--primary-dark-color) !important;
|
|
color: var(--primary-light-color) !important;
|
|
}
|
|
|
|
#notes {
|
|
background: var(--primary-dark-color) !important;
|
|
color: var(--primary-light-color) !important;
|
|
}
|
|
|
|
}
|
|
|