1
0
Fork 0
mirror of https://github.com/Eggbertx/gochan.git synced 2025-09-13 17:46:23 -07:00

Add Dark Bunker theme

This commit is contained in:
Eggbertx 2024-11-20 22:59:34 -08:00
parent bfac325453
commit 62784a99f7
7 changed files with 193 additions and 9 deletions

View file

@ -0,0 +1,33 @@
@import './vars';
div#content, div#qr-box {
color: $txtcol;
border: 1px double $inputshadow;
border-radius: 5px;
textarea,
input:not([type="file"]):not([type="checkbox"]),
[type="submit"],
select {
color: $txtcol;
background: $gridcol;
border: 1px solid $inputshadow;
border-radius: 5px;
}
}
div#qr-box {
background: $gridcol;
}
form#postform, form#qrpostform {
a.browse-text {
background: rgba(200, 200, 200, 0.5);
color: rgba(0, 0, 0, 0.5);
}
}
div#staffmenu, div#watchermenu {
background: black;
border: 1px solid $txtcol;
}

View file

@ -0,0 +1,10 @@
$bgcol: #1d1f21;
$txtcol: #ACACAC;
$topbarcol: #151515;
$linkcol: #FFB300;
$linklight: #d00;
$gridcol: #282A2E;
$bordercol: #117743;
$inputshadow: #07371F;
$headercol: #AF0A0F;
$blocktitle: #8B0000;