From 7cb7c339a2ba0b3a0cf39b09194e7882f74c6e1f Mon Sep 17 00:00:00 2001 From: Kit La Touche Date: Sat, 4 Jan 2025 18:46:43 -0500 Subject: Do a lot of styling --- ui/styles/variables.css | 52 ++++++++++++++++++++++++++++--------------------- 1 file changed, 30 insertions(+), 22 deletions(-) (limited to 'ui/styles/variables.css') 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); } -- cgit v1.2.3