Color changes

This commit is contained in:
Dominic Ferrando
2025-04-26 19:53:34 -04:00
parent 7148a0a094
commit 5e5d50f023
+35 -23
View File
@@ -1,29 +1,30 @@
/* ---------- Palette ---------- */ /* ---------- Palette ---------- */
:root { :root {
--bg-main: #EEF2FF; --bg-main: #1d1f21;
--text-muted: #575F68; --text-color: #c5c8c6;
--brand-red: #AF0A0F; --text-muted: #81a2be;
--brand-red: #c5c8c6;
--form-header-bg: #9988EE; --form-header-bg: #282a2e;
--border-light: #B7C5D9; --border-light: #282a2e;
--link-primary: #0F0C5D; --subject: #b294bb;
--link-secondary: #34345C; --link-secondary: #81a2be;
--post-bg: #D6DAF0; --post-bg: #282a2e;
--post-highlight: #D6BAD0; --post-highlight: #D6BAD0;
--post-author: #13A82A; --post-author: #c5c8c6;
--greentext: #789922; --greentext: #b5bd68;
--reply-link: #DD0000; --reply-link: #81a2be;
--dialog-bg: #EDEFF7; --dialog-bg: #EDEFF7;
--danger: #FF0000; --danger: #b294bb;
--warning-bg: #FFAAAA; --warning-bg: #b294bb;
--black: #000000; --black: #000000;
--heading-bg: #00007F; --heading-bg: #b294bb45;
--heading-text: #FFFFFF; --heading-text: #FFFFFF;
--box-bg: #ECEFF6; --box-bg: #282a2e;
--shadow: rgba(0, 0, 0, 0.25); --shadow: rgba(0, 0, 0, 0.25);
} }
@@ -37,6 +38,7 @@ body {
padding-right: 4px; padding-right: 4px;
margin: 0 4px; margin: 0 4px;
font-size: 10pt; font-size: 10pt;
color: var(--text-color)
} }
/* INDEX */ /* INDEX */
@@ -72,7 +74,7 @@ body {
} }
.board-header h1 { .board-header h1 {
font-weight: bold; font-weight: bolder;
font-size: 1.8rem; font-size: 1.8rem;
margin: 8px; margin: 8px;
margin-top: 12px; margin-top: 12px;
@@ -122,7 +124,7 @@ body {
.catalog-preview h1 { .catalog-preview h1 {
font-size: 14px; font-size: 14px;
font-weight: bold; font-weight: bolder;
} }
.catalog-preview p { .catalog-preview p {
@@ -133,7 +135,7 @@ body {
.catalog-preview-link { .catalog-preview-link {
text-decoration: none; text-decoration: none;
cursor: pointer; cursor: pointer;
color: var(--link-primary); color: var(--subject);
} }
.catalog-preview-img { .catalog-preview-img {
@@ -235,7 +237,7 @@ body {
.thread-subject { .thread-subject {
font-weight: bold; font-weight: bold;
color: var(--link-primary); color: var(--subject);
margin-right: 5px; margin-right: 5px;
float: left; float: left;
} }
@@ -254,7 +256,7 @@ body {
} }
.post-highlighted { .post-highlighted {
background: var(--post-highlight); outline: 1px solid var(--link-secondary)
} }
.post-header { .post-header {
@@ -267,6 +269,7 @@ body {
} }
.post-author { .post-author {
font-weight: bold;
color: var(--post-author); color: var(--post-author);
} }
@@ -337,15 +340,24 @@ body {
cursor: pointer; cursor: pointer;
} }
.reply-link:hover {
opacity: 60%;
}
.reply-link-header { .reply-link-header {
color: var(--link-secondary); color: var(--link-secondary);
text-decoration: underline; text-decoration: none;
cursor: pointer; cursor: pointer;
margin-left: 4px; margin-left: 4px;
} }
.reply-link-header:hover { .reply-link-header:hover {
color: var(--reply-link); opacity: 60%;
}
.ext-link {
color: var(--link-secondary);
} }
/* ADMIN */ /* ADMIN */
@@ -405,7 +417,7 @@ body {
} }
.box { .box {
font-size: 12px; font-size: 10pt;
border: 1px solid var(--black); border: 1px solid var(--black);
background-color: var(--box-bg); background-color: var(--box-bg);
} }