summaryrefslogtreecommitdiff
path: root/ui/styles/variables.css
diff options
context:
space:
mode:
authorKit La Touche <kit@transneptune.net>2025-01-04 18:46:43 -0500
committerKit La Touche <kit@transneptune.net>2025-01-04 18:46:43 -0500
commit7cb7c339a2ba0b3a0cf39b09194e7882f74c6e1f (patch)
treebcd6b4e6766b996b9b9391c516a472e2a7ac638e /ui/styles/variables.css
parent88f4aa4a5b0f42cd061498c9726fb4b8895ff007 (diff)
Do a lot of styling
Diffstat (limited to 'ui/styles/variables.css')
-rw-r--r--ui/styles/variables.css52
1 files changed, 30 insertions, 22 deletions
diff --git a/ui/styles/variables.css b/ui/styles/variables.css
index 0f5cd0e..947cf68 100644
--- a/ui/styles/variables.css
+++ b/ui/styles/variables.css
@@ -12,34 +12,42 @@
--colour-warn: #EBC3BE;
--colour-error: #DE5F55;
- /* Header BG (dark) */
+ --light-text: rgb(228, 228, 255);
+ --dark-text: rgb(28, 28, 35);
+
+ /* Header */
--colour-header-bg: rgb(66, 66, 66);
- /* Header text (light) */
- --colour-header-text: rgb(245, 245, 245);
- /* Navbar BG (medium) */
+ --colour-header-border: color-mix(in srgb, var(--colour-header-bg) 50%, black);
+ --colour-header-text: var(--light-text);
+
+ /* Navbar */
--colour-navbar-bg: rgb(117, 117, 117);
- /* Navbar text (light) */
- --colour-navbar-text: rgb(224, 224, 224);
- /* Input BG (light) */
+ --colour-navbar-border: color-mix(in srgb, var(--colour-navbar-bg) 50%, black);
+ --colour-navbar-text: var(--light-text);
+ --colour-navbar-active-bg: color-mix(in srgb, var(--colour-navbar-bg) 40%, white);
+ --colour-navbar-hover-bg: color-mix(in srgb, var(--colour-navbar-bg) 20%, white);
+
+ /* Input */
--colour-input-bg: rgb(224, 224, 224);
- /* Input text (dark) */
- --colour-input-text: rgb(66, 66, 66);
- /* Active channel BG (light) */
+ --colour-input-border: color-mix(in srgb, var(--colour-input-bg) 50%, black);
+ --colour-input-text: var(--dark-text);
+
+ /* Active channel */
--colour-active-channel-bg: rgb(224, 224, 224);
- /* MessageRun self BG (medium) */
+
+ /* MessageRun */
--colour-message-run-self-bg: rgb(117, 117, 117);
- /* MessageRun other BG (medium) */
+ --colour-message-run-self-border: color-mix(in srgb, var(--colour-message-run-self-bg) 50%, black);
--colour-message-run-other-bg: rgb(117, 117, 117);
- /* Message hover BG (medium-dark) */
+ --colour-message-run-other-border: color-mix(in srgb, var(--colour-message-run-other-bg) 50%, black);
+ --colour-message-run-text: var(--light-text);
+
+ /* Message */
--colour-message-hover-bg: rgb(170, 170, 170);
- /* Message handle BG (medium-light) */
+ --colour-message-hover-text: var(--dark-text);
+
+ /* Message handle */
--colour-message-handle-bg: rgb(224, 224, 224);
- /* Message handle text */
- --colour-message-handle-text: rgb(170, 170, 170);
- /* Navbar active BG */
- --colour-navbar-active-bg: rgb(117, 117, 117);
- /* Navbar hover BG */
- --colour-navbar-hover-bg: rgb(170, 170, 170);
- /* MessageRun text */
- --colour-message-run-text: rgb(170, 170, 170);
+ --colour-message-handle-border: color-mix(in srgb, var(--colour-message-handle-bg) 50%, black);
+ --colour-message-handle-text: var(--dark-text);
}