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
759 B
CSS
52 lines
759 B
CSS
html {
|
|
background-color: #D8DEE9b3 !important;
|
|
}
|
|
|
|
body {
|
|
background-color: #f9fafb !important;
|
|
}
|
|
|
|
div {
|
|
/*background-color: #111 !important;*/
|
|
color: #3B4252 !important;
|
|
}
|
|
|
|
a:visited h3 div {
|
|
color: #A3BE8C !important;
|
|
}
|
|
|
|
a:link h3 div {
|
|
color: #4C566A !important;
|
|
}
|
|
|
|
a:link div {
|
|
color: #81a1c1 !important;
|
|
}
|
|
|
|
div span {
|
|
color: #3B4252 !important;
|
|
}
|
|
|
|
input {
|
|
background-color: #f9fafb !important;
|
|
color: #3B4252 !important;
|
|
}
|
|
|
|
#search-bar {
|
|
color: #4C566A !important;
|
|
background-color: #ffffff !important;
|
|
}
|
|
|
|
.search-container {
|
|
background-color: #f9fafb !important;
|
|
}
|
|
|
|
footer {
|
|
background-color: #f9fafb !important;
|
|
color: #3B4252;
|
|
}
|
|
|
|
.reskin {
|
|
background-color: #ffffff;
|
|
color: #3B4252;
|
|
} |