the theme.css file can include a .reskin selector the filter.py file will parse the css file and replace the card color accordingly
52 lines
757 B
CSS
52 lines
757 B
CSS
html {
|
|
background-color: #292E39 !important;
|
|
}
|
|
|
|
body {
|
|
background-color: #292E39 !important;
|
|
}
|
|
|
|
div {
|
|
/*background-color: #111 !important;*/
|
|
color: #ECEFF4 !important;
|
|
}
|
|
|
|
a:visited h3 div {
|
|
color: #ECEFF4 !important;
|
|
}
|
|
|
|
a:link h3 div {
|
|
color: #88C0D0 !important;
|
|
}
|
|
|
|
a:link div {
|
|
color: #8FBCBB !important;
|
|
}
|
|
|
|
div span {
|
|
color: #81A1C1 !important;
|
|
}
|
|
|
|
input {
|
|
background-color: #292E39 !important;
|
|
color: #ECEFF4 !important;
|
|
}
|
|
|
|
#search-bar {
|
|
color: #ECEFF4 !important;
|
|
background-color: #292E39 !important;
|
|
}
|
|
|
|
.search-container {
|
|
background-color: #292E39 !important;
|
|
}
|
|
|
|
footer {
|
|
background-color: #292E39 !important;
|
|
color: #ECEFF4;
|
|
}
|
|
|
|
.reskin {
|
|
background-color: #2E3440;
|
|
color: #ECEFF4;
|
|
} |