39 lines
410 B
CSS
39 lines
410 B
CSS
body{
|
|
--interface-color: #333333;
|
|
--text-color: #cccccc;
|
|
--background-color: #000000;
|
|
}
|
|
|
|
a:link {
|
|
color: #22aaff;
|
|
}
|
|
|
|
a:visited {
|
|
color: #7755ff;
|
|
}
|
|
|
|
a:not([href]){
|
|
color: var(--text-color);
|
|
}
|
|
|
|
.comment .permalink{
|
|
color: #ffffff;
|
|
}
|
|
|
|
.setting-item{
|
|
background-color: #444444;
|
|
}
|
|
|
|
|
|
.muted{
|
|
background-color: #111111;
|
|
color: gray;
|
|
}
|
|
|
|
.muted a:link {
|
|
color: #10547f;
|
|
}
|
|
|
|
|
|
|