Skip to content

Commit 2c5693b

Browse files
authored
Merge pull request #28 from BinaryStudioAcademy/27-feat-add-common-color-variables
feat: add common color variables gf-27
2 parents 4bbfcd6 + 560b138 commit 2c5693b

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed
+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
@import url("./scaffolding.css");
22
@import url("./media.css");
3+
@import url("./variables.css");
+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
:root {
2+
/* Background Colors */
3+
--color-background-primary: #121415;
4+
--color-background-secondary: #1d1e21;
5+
--color-background-hover: #ffffff0f;
6+
--color-border-secondary: #303030;
7+
--color-border-primary: #3e424d;
8+
--color-overlay: #000000cc;
9+
10+
/* Typography Colors */
11+
--color-text-primary: #ffffff;
12+
--color-text-secondary: #7e8082;
13+
14+
/* Brand Colors */
15+
--color-brand-primary: #8860fa;
16+
--color-brand-primary-hover: #7747ff;
17+
18+
/* State Colors */
19+
--color-success: #0d9c00;
20+
--color-warning: #d3bf06;
21+
--color-danger: #ca4925;
22+
23+
/* Shadow */
24+
--box-shadow: 0px 0px 25px 0px #00000080;
25+
}

0 commit comments

Comments
 (0)