Basic dark-on-light eink theme
Could use plenty of adjustment, but this is better than the default dark theme for now.
This commit is contained in:
parent
858d10cdd4
commit
e2dd38c3ef
|
@ -0,0 +1,100 @@
|
|||
/*
|
||||
* This is the built-in 'default' theme. If you would like to make your own
|
||||
* custom theme, you should make a copy of this file, apply the changes you
|
||||
* want to that copy, then select that copy by name in the settings to apply.
|
||||
*/
|
||||
|
||||
body {
|
||||
background: #DBDBDB;
|
||||
color: #000000;
|
||||
font-family: Arial, sans-serif;
|
||||
}
|
||||
#debug {
|
||||
background: #FFFFFF;
|
||||
color: #f00;
|
||||
border-color: #f00;
|
||||
}
|
||||
#debug button {
|
||||
background: #b00;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
a {
|
||||
color: #000000;
|
||||
}
|
||||
div#error {
|
||||
background: #b00;
|
||||
}
|
||||
div#title {
|
||||
background: #FFFFFF;
|
||||
}
|
||||
div#title h1 {
|
||||
color: #b00;
|
||||
}
|
||||
div#subs {
|
||||
background: #DBDBDB;
|
||||
border-color: #b00;
|
||||
}
|
||||
div#subs img {
|
||||
border-color: #000000;
|
||||
}
|
||||
div.row {
|
||||
background: #FFFFFF;
|
||||
}
|
||||
div.playmodes {
|
||||
background: #DBDBDB;
|
||||
}
|
||||
.mark {
|
||||
background: #b00;
|
||||
}
|
||||
div.time h4 {
|
||||
background: #FFFFFF;
|
||||
}
|
||||
.category, .no-category, .unsubscribe, .solo, .no-solo, .regex, .no-regex {
|
||||
border-color: solid 2px #000000;
|
||||
}
|
||||
.category a, .no-category a, .unsubscribe a, .solo a, .no-solo a, .regex a, .no-regex a {
|
||||
color: #000000;
|
||||
}
|
||||
.unsubscribe {
|
||||
background: #bb0000;
|
||||
}
|
||||
.no-category, .no-solo, .no-regex {
|
||||
background: #FFFFFF;
|
||||
}
|
||||
.category, .solo, .regex {
|
||||
background: #00bb00;
|
||||
}
|
||||
.menu {
|
||||
color: #FFFFFF;
|
||||
background: #cdcdcd;
|
||||
}
|
||||
.menu button {
|
||||
background: #bb0000;
|
||||
color: #000000;
|
||||
}
|
||||
.menu select {
|
||||
background: #000000;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
submit {
|
||||
background: #bb0000;
|
||||
}
|
||||
#footer {
|
||||
background: #FFFFFF;
|
||||
}
|
||||
#footer a {
|
||||
color: #bb0000;
|
||||
}
|
||||
#timeout {
|
||||
color: #bb0000;
|
||||
}
|
||||
#copied {
|
||||
background: rgba(255,31,31,0.5);
|
||||
color: #000000;
|
||||
}
|
||||
.web, .embed, .clip {
|
||||
background: #FFFFFF;
|
||||
}
|
||||
img.tab-focused {
|
||||
background: #CDCDCD;
|
||||
}
|
Loading…
Reference in New Issue