-
-
Notifications
You must be signed in to change notification settings - Fork 362
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue-1215 changed the color duplicacy , removed excessive comments
- Loading branch information
1 parent
5e3ca7c
commit 22008f7
Showing
3 changed files
with
17 additions
and
42 deletions.
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
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 |
---|---|---|
@@ -1,38 +1,22 @@ | ||
/* ---------- Background Colors ---------- */ | ||
:root { | ||
--white: #ffffff; | ||
--bg-primary: #0a0a23; | ||
--bg-primary-transparent: #0a0a23f2; | ||
--bg-button: #acd157; | ||
--bg-transparent-hover: #ffffff; | ||
--bg-transparent-hover: var(--white); | ||
--bg-gradient-start: #fecc4c; | ||
--bg-gradient-end: #ffac33; | ||
--bg-answer-selected: #f1be32; | ||
--box-shadow-inset: #0a0a232e; | ||
} | ||
|
||
/* ---------- Text Colors ---------- */ | ||
:root { | ||
--text-primary: #ffffff; | ||
--text-primary: var(--white); | ||
--text-link: #f1be32; | ||
--text-link-hover: #acd157; | ||
--text-deep-blue: #002ead; | ||
} | ||
|
||
/* ---------- Border Colors ---------- */ | ||
:root { | ||
--border-primary: #acd157; | ||
--border-transparent: #ffffff; | ||
--border-transparent: var(--white); | ||
--border-dark-color: #aa8144; | ||
--border-light-color: #f5aa3a; | ||
--border-light-gray: #dee2e6; | ||
} | ||
|
||
/* ---------- Effects ---------- */ | ||
:root { | ||
--effect-shadow: rgba(245, 242, 247, 0.7); | ||
} | ||
|
||
/* ---------- Additional Colors ---------- */ | ||
:root { | ||
--gray-00: #ffffff; | ||
--gray-00: var(--white); | ||
} |