forked from LibraryCarpentry/librarycarpentry.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_01_settings_colors.scss
155 lines (115 loc) · 3.75 KB
/
_01_settings_colors.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
/* TOC – Color Variables
- Basics
- Corporate Identity Colorpalette
- Foundation Color Variables
- Grey Scale
- Topbar-Navigation
- Footer
- Code
*/
/* Basics
------------------------------------------------------------------- */
$text-color: #111;
$body-font-color: $text-color;
$body-bg: #ffffff;
/* Corporate Identity Colorpalette
https://color.adobe.com/de/Flat-Design-Colors-v2-color-theme-4341903/
------------------------------------------------------------------- */
$ci-1: #334D5C; // dark turquoise
$ci-2: #45B29D; // turquoise
$ci-3: #EFC94C; // yellow
$ci-4: #E27A3F; // orange
$ci-5: #DF4949; // red
$ci-6: #A1D044; // green
/* Software Carpentry colors
---------------------------------------- */
$swc-blue: #990000; // Going for red
$swc-blue-light: #e60000; // Lighter red
$swc-blue-med: #ff6666; // Lighter lighter red
/* Foundation Color Variables
------------------------------------------------------------------- */
$primary-color: $swc-blue;
$secondary-color: $swc-blue-light;
$alert-color: $ci-5;
$success-color: $ci-6;
$warning-color: $ci-4;
$info-color: $ci-1;
/* Grey Scale
------------------------------------------------------------------- */
$grey-1: #E4E4E4;
$grey-2: #D7D7D7;
$grey-3: #CBCBCB;
$grey-4: #BEBEBE;
$grey-5: #A4A4A4;
$grey-6: #979797;
$grey-7: #8B8B8B;
$grey-8: #7E7E7E;
$grey-9: #646464;
$grey-10: #575757;
$grey-11: #4B4B4B;
$grey-12: #3E3E3E;
$grey-13: #313131;
$grey-14: #242424;
$grey-15: #171717;
$grey-16: #0B0B0B;
/* Topbar-Navigation
------------------------------------------------------------------- */
$topbar-bg-color: #fff;
$topbar-dropdown-toggle-color: $swc-blue;
$topbar-link-color: #000;
$topbar-link-color-hover: #000;
$topbar-link-color-active: #000;
$topbar-link-color-active-hover: #000;
$topbar-dropdown-label-color: $swc-blue-light;
$topbar-dropdown-link-bg-hover: $swc-blue-med;
$topbar-link-bg-active: $swc-blue-med; // Active Navigation Link
$topbar-link-bg-hover: $swc-blue-med;
$topbar-link-bg-active-hover: $swc-blue-light;
$topbar-dropdown-bg: $swc-blue-med; // Background Mobile Navigation
$topbar-dropdown-link-color: #000;
$topbar-dropdown-link-bg: $swc-blue-light;
$topbar-menu-link-color-toggled: $swc-blue;
$topbar-menu-icon-color-toggled: $swc-blue;
$topbar-menu-link-color: #000;
$topbar-menu-icon-color: #000;
$topbar-menu-link-color-toggled: $swc-blue-med;
$topbar-menu-icon-color-toggled: $swc-blue-med;
/* Footer
------------------------------------------------------------------- */
$footer-bg: $swc-blue;
$footer-color: $body-bg;
$footer-link-color: $body-bg;
$subfooter-bg: $swc-blue;
$subfooter-color: $body-bg;
$subfooter-link-color: $body-bg;
/* Code
------------------------------------------------------------------- */
$code-background-color: scale-color($secondary-color, $lightness: 70%);
$highlight-background: #ffffff;
$highlight-comment: #999988;
$highlight-error: #a61717;
$highlight-comment-special: #999999;
$highlight-deleted: #000000;
$highlight-error-2: #aa0000;
$highlight-literal-string: #d14;
$highlight-literal-number: #009999;
$highlight-name-attribut: #008080;
$highlight-error-background: #e3d2d2;
$highlight-generic-deleted: #ffdddd;
$highlight-generic-deleted-specific: #ffaaaa;
$highlight-generic-inserted: #ddffdd;
$highlight-generic-inserted-specific: #aaffaa;
$highlight-generic-output: #888888;
$highlight-generic-prompt: #555555;
$highlight-subheading: #aaaaaa;
$highlight-keyword-type: #445588;
$highlight-name-builtin: #0086B3;
$highlight-name-class: #445588;
$highlight-name-entity: #800080;
$highlight-name-exception: #990000;
$highlight-name-function: #990000;
$highlight-name-namespace: #555555;
$highlight-name-tag: #000080;
$highlight-text-whitespace: #bbbbbb;
$highlight-literal-string-regex: #009926;
$highlight-literal-string-symbol: #990073;