-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathuser.css
32 lines (27 loc) · 1.48 KB
/
user.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*
Colors can be formatted as either Hex values or HSL values or RGBA values,
#408080FF;
hsla(180, 85%, 37%, 1);
rgba(64, 128, 128, 1);
Will all give the same result, however conversions between Hex/HSLA/RGBA wont be 100% accurate
*/
/* If anything here is wrong, dm "chloe !#0489" on Discord about it */
#app.theme-default {
/* Main background, Icons */
--mainColor-darker: #140812; /* Room hover borders */
--mainColor-dark: #260f23;
--mainColor: #351b30;
--mainColor-light: #5e3550; /* Icons, Dividers, Room info panels */
--mainColor-lighter: #854b71; /* Icon hover glow, Accept/Decline text */
--mainColor-lightest: #d8bace; /* Lobby info text, # of players icon */
/* Accent colors */
--accentColor: #33f1e5; /* FIGHTCADE text, Selected icon glow, Challange text */
--accentColor2: #ff007a; /* Links, @'s in chat, Replays/Rankings/Events/Profile text */
/* Text */
--mainColor-lightest-trans-hi: rgba(216,186,206,.7); /* Text, Lobby name */
--mainColor-lightest-trans-md: rgba(216,186,206,.5); /* Message times, Test Game text, Clear Filters text, Next/Previous Page text*/
/* Glows, dividers */
--mainColor-dark-trans-lo: rgba(38,15,35,.3); /* Panel dividing glow, Main glow on room join hover*/
--mainColor-darker-trans-hi: rgba(20,8,18,.7); /* Secondary glow on room join hover*/
--mainColor-darker-trans-lo: rgba(20,8,18,.3); /* Join room glow, Lobby chat box glow, Challange message box */
}