Skip to content

Commit c3b7294

Browse files
committed
Add root global colors to CSS template
1 parent 018850a commit c3b7294

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

resources/css/theme.css

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,32 @@
1+
/************************* Global colors **************************/
2+
:root {
3+
--transparent: transparent;
4+
--black: #22292f;
5+
--white: white;
6+
--white-50: rgba(255, 255, 255, 0.5);
7+
--danger: #e74444;
8+
--success: #21b978;
9+
--warning: #ffeb3b;
10+
--info: #03a9f4;
11+
--primary: #4099de;
12+
--primary-dark: #297ec0;
13+
--primary-70: rgba(64, 153, 222, 0.7);
14+
--primary-50: rgba(64, 153, 222, 0.5);
15+
--primary-30: rgba(64, 153, 222, 0.3);
16+
--primary-10: rgba(64, 153, 222, 0.1);
17+
--logo: #252d37;
18+
--sidebar-icon: #b3c1d1;
19+
--20: #f6fbff;
20+
--30: #f4f7fa;
21+
--40: #eef1f4;
22+
--50: #e3e7eb;
23+
--60: #bacad6;
24+
--70: #b3b9bf;
25+
--80: #7c858e;
26+
--90: #252d37;
27+
--90-half: rgba(40, 54, 61, 0.5);
28+
}
29+
130
/************************* Header **************************/
231
.page-header {
332
}

0 commit comments

Comments
 (0)