aboutsummaryrefslogtreecommitdiffstats
path: root/src/styles/colors.scss
diff options
context:
space:
mode:
Diffstat (limited to 'src/styles/colors.scss')
-rw-r--r--src/styles/colors.scss50
1 files changed, 34 insertions, 16 deletions
diff --git a/src/styles/colors.scss b/src/styles/colors.scss
index 5d8302c28..80c2fb633 100644
--- a/src/styles/colors.scss
+++ b/src/styles/colors.scss
@@ -1,22 +1,40 @@
1$theme-brand-primary: #3498db; 1@import "./type-helper";
2$theme-brand-success: #5cb85c;
3$theme-brand-info: #5bc0de;
4$theme-brand-warning: #FF9F00;
5$theme-brand-danger: #d9534f;
6 2
7$theme-gray-dark: #373a3c; 3$theme-brand-primary: convert-rgb-string-to-color($raw-theme-brand-primary);
8$theme-gray: #55595c; 4$theme-brand-success: convert-rgb-string-to-color($raw-theme-brand-success);
9$theme-gray-light: #818a91; 5$theme-brand-info: convert-rgb-string-to-color($raw-theme-brand-info);
10$theme-gray-lighter: #eceeef; 6$theme-brand-warning: convert-rgb-string-to-color($raw-theme-brand-warning);
11$theme-gray-lightest: #f7f7f9; 7$theme-brand-danger: convert-rgb-string-to-color($raw-theme-brand-danger);
12 8
13$theme-border-radius: 6px; 9$theme-gray-dark: convert-rgb-string-to-color($raw-theme-gray-dark);
14$theme-border-radius-small: 3px; 10$theme-gray: convert-rgb-string-to-color($raw-theme-gray);
11$theme-gray-light: convert-rgb-string-to-color($raw-theme-gray-light);
12$theme-gray-lighter: convert-rgb-string-to-color($raw-theme-gray-lighter);
13$theme-gray-lightest: convert-rgb-string-to-color($raw-theme-gray-lightest);
15 14
16$theme-sidebar-width: 68px; 15$theme-border-radius: to-number($raw-theme-border-radius);
16$theme-border-radius-small: to-number($raw-theme-border-radius-small);
17 17
18$theme-text-color: $theme-gray-dark; 18$theme-sidebar-width: to-number($raw-theme-sidebar-width);
19 19
20$theme-transition-time: 0.5s; 20$theme-text-color: convert-rgb-string-to-color($raw-theme-gray-dark);
21 21
22$theme-inset-shadow: inset 0 2px 5px rgba(0,0,0,0.03); 22$theme-transition-time: .5s;
23
24$theme-inset-shadow: inset 0 2px 5px rgba(0, 0, 0, .03);
25
26// Dark Theme
27$dark-theme-black: convert-rgb-string-to-color($raw-dark-theme-black);
28
29$dark-theme-gray-darkest: convert-rgb-string-to-color($raw-dark-theme-gray-darkest);
30$dark-theme-gray-darker: convert-rgb-string-to-color($raw-dark-theme-gray-darker);
31$dark-theme-gray-dark: convert-rgb-string-to-color($raw-dark-theme-gray-dark);
32
33$dark-theme-gray: convert-rgb-string-to-color($raw-dark-theme-gray);
34
35$dark-theme-gray-light: convert-rgb-string-to-color($raw-dark-theme-gray-light);
36$dark-theme-gray-lighter: convert-rgb-string-to-color($raw-dark-theme-gray-lighter);
37$dark-theme-gray-lightest: convert-rgb-string-to-color($raw-dark-theme-gray-lightest);
38
39$dark-theme-gray-smoke: convert-rgb-string-to-color($raw-dark-theme-gray-smoke);
40$dark-theme-text-color: convert-rgb-string-to-color($raw-dark-theme-text-color);