Skip to content

Commit

Permalink
Possible fix for the wrong highlight colors
Browse files Browse the repository at this point in the history
(Might also break everything)
  • Loading branch information
B4T3S committed Mar 26, 2023
1 parent 39305fe commit 5e500d4
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/_variables.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
:root, .theme-dark, .theme-light {
--rgb-highlight: 4, 217, 255;
--highlight: rgb(var(--rgb-highlight));
--rgb-background: 0, 0, 0;
--background: rgb(var(--rgb-background));
Expand Down
21 changes: 20 additions & 1 deletion src/dev.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,23 @@
*/

@import "main.scss";
@import "hideUsers.scss";
@import "hideUsers.scss";

:root {
--rgb-highlight: 204, 217, 255; /* The main highlight color */
--rgb-background: 0, 0, 0; /* The main background color */
--rgb-text: 197, 200, 198; /* The main text color */
--rgb-close-button: 212, 18, 39; /* The main "close this" or "deny" color */
--rgb-online-color: 57, 255, 20; /* The color used in the "online" user status symbol */
--rgb-afk-color: 255, 255, 51; /* The color used in the "idle" user status symbol */
--rgb-dnd-color: 255, 0, 0; /* The color used in the "do not disturb" user status symbol */
--rgb-streaming-color: 188, 19, 254; /* The color used in the "streaming X" user status symbol */

--transition-time: .3s; /* How fast animations added by the theme happen. Default is 0.3 seconds */

--background-image: unset; /* To add an image, replace unset with url(https://www.YOUR-URL-HERE.com) */
--background-position: center; /* Positions the background image */
--background-size: cover; /* Scales the background image */
--background-blur: 5px; /* Blurs the image which helps with readability of text infront of it */
--background-brightness: 100%; /* Changes the background images brightness */
}

0 comments on commit 5e500d4

Please sign in to comment.