link style, focus style, message overflow fix

also background-color -> background standardization
red and green are variables now
This commit is contained in:
ygg2 2024-07-20 17:12:02 -04:00
parent d9a0350155
commit 5ed0d924ee
2 changed files with 73 additions and 47 deletions

View file

@ -1,6 +1,8 @@
:root {
--servertd-height: 0px;
/* Default value */
--red: red;
--green: green;
}
.Dark-theme { /* thanks to TomatoCake for the updated CSS vars and such*/
color-scheme: dark;
@ -8,6 +10,7 @@
--primary-bg: #282832;
--black: #000;
--shadow: #000;
--focus: #8888ff;
--message-bg-hover: #1e1e28;
--typing-bg: #161616;
--timestamp-color: #a2a2a2;
@ -21,6 +24,7 @@
--settings-hover: #0e0d10;
--quote-bg: #7a798e;
--button-bg: #1b1b28;
--button-hover: #282832;
--textarea-bg: #26272c;
--filename: #47bbff;
--mention-bg: #F00;
@ -45,6 +49,7 @@
--scrollbar-thumb-hover: #a2a2a2;
--markdown-timestamp: #2f2f33;
--embed: #1a1823;
--link: #8888ff;
--discovery-bg: #37373b;
}
.WHITE-theme {
@ -52,7 +57,10 @@
--primary-text: #000;
--primary-bg: #FFF;
--black: #FFF;
--red: #dd6c6c;
--green: #639d63;
--shadow: #777;
--focus: #47bbff;
--message-bg-hover: #dedee2;
--typing-bg: #dad8d8;
--timestamp-color: #929297;
@ -66,6 +74,7 @@
--settings-hover: #b5b1bb;
--quote-bg: #7a798e;
--button-bg: #b7b7cc;
--button-hover: #FFF;
--textarea-bg: #b1b6ce;
--filename: #47bbff;
--mention-bg: #F00;
@ -90,6 +99,7 @@
--scrollbar-thumb-hover: #a5a5b8;
--markdown-timestamp: #c8c8da;
--embed: #f2f3f5;
--link: #3333ee;
--discovery-bg: #c6c6d8;
}
.Light-theme {
@ -99,6 +109,7 @@
--primary-bg: #8e90c3;
--black: #fff;
--shadow: #000;
--focus: #5e50c5;
--message-bg-hover: #5757b5;
--typing-bg: #000000;
@ -116,6 +127,7 @@
--settings-hover: #b5b1bb;
--quote-bg: #7a798e;
--button-bg: #96969e;
--button-hover: #8e90c3;
--textarea-bg: #abb1cd;
--filename: #47bbff;
--mention-bg: #F00;
@ -145,5 +157,6 @@
--scrollbar-thumb-hover: #a7a7be;
--markdown-timestamp: #c8c8da;
--embed: #cdccd1;
--link: #5566cc;
--discovery-bg: #c6c6d8;
}