From c4d106618612761dabd998323354eeced0e52746 Mon Sep 17 00:00:00 2001 From: Wirlaburla Date: Mon, 22 Jan 2024 10:07:27 -0600 Subject: [PATCH] add Ashes --- ashes/css/theme.css | 99 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 99 insertions(+) create mode 100644 ashes/css/theme.css diff --git a/ashes/css/theme.css b/ashes/css/theme.css new file mode 100644 index 0000000..ecdd41e --- /dev/null +++ b/ashes/css/theme.css @@ -0,0 +1,99 @@ +:root { + --main-background: #171717; + --main-text: #ececec; + + --subtitle: #949494; + --main-nav: #515151; + --acc-nav: #333; + --acc-nav-separator: 2px solid transparent; + + --primary-container-background: #444444; + --primary-container-border: 2px solid transparent; + + --header-bg: #5e5e5e; + --header-text: #dcddde; + + --code-bg: #5e5e5e63; + --code-text: #dcddde; + + --comments-bg: #5e5e5e; + + --border-line: #ffffff; + --border-header: #000000; + + --inactive: #b4b4b4; + --alert: #FF8300; + --currency: #E09F4B; + + --tab-inactive: #444444; + --tab-selected: #353535; + --tab-gradient: #353535; + + --dialog-bg: #464646; + --dialog-button-hover: #f9f7dd; + --dialog-button-active: #fffeee; + + --listing-unknown: #744b7a; + --listing-missing: #603830; + --listing-found: #33416d; + --listing-archived: #28542c; + + --status-success: #00ff00; + --status-error: #ff0000; + + --error: #b77e7e; + --warn: #d5c58e; + --info: #8d9dce; + --success: #95ce8d; + + --input-bg: #3e3e3e; + --input-text: #dcddde; + + --bar-bgcolor: #ffffff; + + --input-bg: #ffffff; + --input-text: #000000; + + --direct: #ffffff; + + --background-image: none; + --default-button-background: #6e6e6e; + --default-button-border: 2px solid #6e6e6e; + --hover-button-background: #5999c9; + --hover-button-border: 2px solid #5999c9; + --active-button-background: #c95959; + --active-button-border: 2px solid #c95959; + --disabled-button-background: #808080; + --disabled-button-border: 2px solid #808080; + + --navbar-left: none; + --navbar-right: none; + --navbar-top: none; + --navbar-bottom: none; + --nav-db: none; + + --switch: url('/style/switch.png'); + + --navbar-bg: none; + --navbar-gradient: none; + + --forum-header: #444; + --forum-header-border: #444; + --forum-content: #2f2f2f; + --forum-content-border: #2f2f2f; + --forum-sub: #575757; + --forum-sub-border: #575757; + --post: #2d2d2d; + --post-border: #2d2d2d; + --post-bottombar: #4242424; + --post-author: #555; + --post-author-border: #555; + --quote-bg: #515151; + --quote-border: #515151; + + --primary-font: Pixio; + --secondary-font: TypeWriter; +} + +a:link {color:#5999c9;} +a:visited {color: #c95959;} \ No newline at end of file