-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9f3a112
commit 9ac89ad
Showing
2 changed files
with
68 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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 */ | ||
} |