solar-flair 0.1.10 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,81 +1,89 @@
1
+ a.quote{
2
+ color: $color-one;
3
+ &:hover{
4
+ color: darken($color-one, 25%);
5
+ text-decoration: underline;
6
+ }
7
+ }
1
8
 
2
- // Sitewide Links
3
9
 
4
- .blue * > a{
5
- color: $blue-color;
10
+ .one * > a{
11
+ color: $color-one;
6
12
  &:hover{
7
- color: darken($blue-color, 15%);
13
+ color: darken($color-one, 15%);
8
14
  text-decoration: none;
9
15
  }
10
16
  }
11
- .green * > a{
12
- color: $green-color;
17
+ .two * > a{
18
+ color: $color-two;
13
19
  &:hover{
14
- color: darken($green-color, 15%);
20
+ color: darken($color-two, 15%);
15
21
  text-decoration: none;
16
22
  }
17
23
  }
18
- .orange * > a{
19
- color: $orange-color;
24
+ .three * > a{
25
+ color: $color-three;
20
26
  &:hover{
21
- color: darken($orange-color, 15%);
27
+ color: darken($color-three, 15%);
22
28
  text-decoration: none;
23
29
  }
24
30
  }
25
- .purple * > a{
26
- color: $purple-color;
31
+ .four * > a{
32
+ color: $color-four;
27
33
  &:hover{
28
- color: darken($purple-color, 15%);
34
+ color: darken($color-four, 15%);
29
35
  text-decoration: none;
30
36
  }
31
37
  }
32
38
  .grey * > a{
33
- color: darken($grey-color, 10%);
39
+ color: darken($color-grey, 10%);
34
40
  &:hover{
35
- color: darken($grey-color, 25%);
41
+ color: darken($color-grey, 25%);
36
42
  text-decoration: none;
37
43
  }
38
44
  }
39
45
 
40
46
  // Explicit Links
41
- a.blue{
42
- color: $blue-color;
47
+
48
+
49
+ a.one{
50
+ color: $color-one;
43
51
  &:hover{
44
- color: darken($blue-color, 15%);
52
+ color: darken($color-one, 15%);
45
53
  text-decoration: none;
46
54
  }
47
55
  }
48
- a.green{
49
- color: $green-color;
56
+ a.two{
57
+ color: $color-two;
50
58
  &:hover{
51
- color: darken($green-color, 15%);
59
+ color: darken($color-two, 15%);
52
60
  text-decoration: none;
53
61
  }
54
62
  }
55
- a.orange{
56
- color: $orange-color;
63
+ a.three{
64
+ color: $color-three;
57
65
  &:hover{
58
- color: darken($orange-color, 15%);
66
+ color: darken($color-three, 15%);
59
67
  text-decoration: none;
60
68
  }
61
69
  }
62
- a.purple{
63
- color: $purple-color;
70
+ a.four{
71
+ color: $color-four;
64
72
  &:hover{
65
- color: darken($purple-color, 15%);
73
+ color: darken($color-four, 15%);
66
74
  text-decoration: none;
67
75
  }
68
76
  }
69
77
  a.grey{
70
- color: $grey-color;
78
+ color: $color-grey;
71
79
  &:hover{
72
- color: darken($grey-color, 15%);
80
+ color: darken($color-grey, 15%);
73
81
  text-decoration: none;
74
82
  }
75
83
  }
76
84
 
77
85
 
78
-
86
+ // Button Modifiers
79
87
  .btn-primary{
80
88
  background:$blue-color;
81
89
  background:
@@ -1,115 +1,241 @@
1
1
  span.grey{
2
- color:$grey-color;
2
+ color:$color-grey;
3
3
  }
4
4
 
5
- .text-blue{
6
- color: $blue-color;
7
- }
8
- .text-green{
9
- color: $green-color;
10
- }
11
- .text-orange{
12
- color: $orange-color;
13
- }
14
- .text-purple{
15
- color: $purple-color;
5
+
6
+
7
+ .text-one{
8
+ color: $color-one;
9
+ code.output:before{
10
+ content: "#{$color-one}";
11
+ }
12
+ }
13
+ .text-two{
14
+ color: $color-two;
15
+ code.output:before{
16
+ content: "#{$color-two}";
17
+ }
18
+ }
19
+ .text-three{
20
+ color: $color-three;
21
+ code.output:before{
22
+ content: "#{$color-three}";
23
+ }
24
+ }
25
+ .text-four{
26
+ color: $color-four;
27
+ code.output:before{
28
+ content: "#{$color-four}";
29
+ }
16
30
  }
17
31
  .text-grey{
18
- color: $grey-color;
32
+ color: $color-grey;
33
+ code.output:before{
34
+ content: "#{$color-grey}";
35
+ }
19
36
  }
20
37
 
21
- .text-d10-blue{
22
- color: darken($blue-color, 10%);
23
- }
24
- .text-d10-green{
25
- color: darken($green-color, 10%);
26
- }
27
- .text-d10-orange{
28
- color: darken($orange-color, 10%);
29
- }
30
- .text-d10-purple{
31
- color: darken($purple-color, 10%);
38
+ .text-d10-one{
39
+ color: darken($color-one, 10%);
40
+ code.output:before{
41
+ content: "#{darken($color-one, 10%) }";
42
+ }
43
+ }
44
+ .text-d10-two{
45
+ color: darken($color-two, 10%);
46
+ code.output:before{
47
+ content: "#{darken($color-two, 10%) }";
48
+ }
49
+ }
50
+ .text-d10-three{
51
+ color: darken($color-three, 10%);
52
+ code.output:before{
53
+ content: "#{darken($color-three, 10%) }";
54
+ }
55
+ }
56
+ .text-d10-four{
57
+ color: darken($color-four, 10%);
58
+ code.output:before{
59
+ content: "#{darken($color-four, 10%) }";
60
+ }
32
61
  }
33
62
  .text-d10-grey{
34
- color: darken($grey-color, 10%);
63
+ color: darken($color-grey, 10%);
64
+ code.output:before{
65
+ content: "#{darken($color-grey, 10%) }";
66
+ }
35
67
  }
36
68
 
37
- .text-d20-blue{
38
- color: darken($blue-color, 20%);
39
- }
40
- .text-d20-green{
41
- color: darken($green-color, 20%);
42
- }
43
- .text-d20-orange{
44
- color: darken($orange-color, 20%);
45
- }
46
- .text-d20-purple{
47
- color: darken($purple-color, 20%);
69
+
70
+
71
+
72
+
73
+ .text-d20-one{
74
+ color: darken($color-one, 20%);
75
+ code.output:before{
76
+ content: "#{darken($color-one, 20%) }";
77
+ }
78
+ }
79
+ .text-d20-two{
80
+ color: darken($color-two, 20%);
81
+ code.output:before{
82
+ content: "#{darken($color-two, 20%) }";
83
+ }
84
+ }
85
+ .text-d20-three{
86
+ color: darken($color-three, 20%);
87
+ code.output:before{
88
+ content: "#{darken($color-three, 20%) }";
89
+ }
90
+ }
91
+ .text-d20-four{
92
+ color: darken($color-four, 20%);
93
+ code.output:before{
94
+ content: "#{darken($color-four, 20%) }";
95
+ }
48
96
  }
49
97
  .text-d20-grey{
50
- color: darken($grey-color, 20%);
98
+ color: darken($color-grey, 20%);
99
+ code.output:before{
100
+ content: "#{darken($color-grey, 20%) }";
101
+ }
51
102
  }
52
103
 
53
- .text-d30-blue{
54
- color: darken($blue-color, 30%);
55
- }
56
- .text-d30-green{
57
- color: darken($green-color, 30%);
58
- }
59
- .text-d30-orange{
60
- color: darken($orange-color, 30%);
61
- }
62
- .text-d30-purple{
63
- color: darken($purple-color, 30%);
104
+
105
+
106
+
107
+ .text-d30-one{
108
+ color: darken($color-one, 30%);
109
+ code.output:before{
110
+ content: "#{darken($color-one, 30%) }";
111
+ }
112
+ }
113
+ .text-d30-two{
114
+ color: darken($color-two, 30%);
115
+ code.output:before{
116
+ content: "#{darken($color-two, 30%) }";
117
+ }
118
+ }
119
+ .text-d30-three{
120
+ color: darken($color-three, 30%);
121
+ code.output:before{
122
+ content: "#{darken($color-three, 30%) }";
123
+ }
124
+ }
125
+ .text-d30-four{
126
+ color: darken($color-four, 30%);
127
+ code.output:before{
128
+ content: "#{darken($color-four, 30%) }";
129
+ }
64
130
  }
65
131
  .text-d30-grey{
66
- color: darken($grey-color, 30%);
132
+ color: darken($color-grey, 30%);
133
+ code.output:before{
134
+ content: "#{darken($color-grey, 30%) }";
135
+ }
67
136
  }
68
137
 
69
- .text-l10-blue{
70
- color: lighten($blue-color, 10%);
71
- }
72
- .text-l10-green{
73
- color: lighten($green-color, 10%);
74
- }
75
- .text-l10-orange{
76
- color: lighten($orange-color, 10%);
77
- }
78
- .text-l10-purple{
79
- color: lighten($purple-color, 10%);
138
+
139
+
140
+
141
+
142
+ .text-l10-one{
143
+ color: lighten($color-one, 10%);
144
+ code.output:before{
145
+ content: "#{lighten($color-one, 10%) }";
146
+ }
147
+ }
148
+ .text-l10-two{
149
+ color: lighten($color-two, 10%);
150
+ code.output:before{
151
+ content: "#{lighten($color-two, 10%) }";
152
+ }
153
+ }
154
+ .text-l10-three{
155
+ color: lighten($color-three, 10%);
156
+ code.output:before{
157
+ content: "#{lighten($color-three, 10%) }";
158
+ }
159
+ }
160
+ .text-l10-four{
161
+ color: lighten($color-four, 10%);
162
+ code.output:before{
163
+ content: "#{lighten($color-four, 10%) }";
164
+ }
80
165
  }
81
166
  .text-l10-grey{
82
- color: lighten($grey-color, 10%);
167
+ color: lighten($color-grey, 10%);
168
+ code.output:before{
169
+ content: "#{lighten($color-grey, 10%) }";
170
+ }
83
171
  }
84
172
 
85
- .text-l20-blue{
86
- color: lighten($blue-color, 20%);
87
- }
88
- .text-l20-green{
89
- color: lighten($green-color, 20%);
90
- }
91
- .text-l20-orange{
92
- color: lighten($orange-color, 20%);
93
- }
94
- .text-l20-purple{
95
- color: lighten($purple-color, 20%);
173
+
174
+
175
+
176
+
177
+ .text-l20-one{
178
+ color: lighten($color-one, 20%);
179
+ code.output:before{
180
+ content: "#{lighten($color-one, 20%) }";
181
+ }
182
+ }
183
+ .text-l20-two{
184
+ color: lighten($color-two, 20%);
185
+ code.output:before{
186
+ content: "#{lighten($color-two, 20%) }";
187
+ }
188
+ }
189
+ .text-l20-three{
190
+ color: lighten($color-three, 20%);
191
+ code.output:before{
192
+ content: "#{lighten($color-three, 20%) }";
193
+ }
194
+ }
195
+ .text-l20-four{
196
+ color: lighten($color-four, 20%);
197
+ code.output:before{
198
+ content: "#{lighten($color-four, 20%) }";
199
+ }
96
200
  }
97
201
  .text-l20-grey{
98
- color: lighten($grey-color, 20%);
202
+ color: lighten($color-grey, 20%);
203
+ code.output:before{
204
+ content: "#{lighten($color-grey, 20%) }";
205
+ }
99
206
  }
100
207
 
101
- .text-l30-blue{
102
- color: lighten($blue-color, 30%);
103
- }
104
- .text-l30-green{
105
- color: lighten($green-color, 30%);
106
- }
107
- .text-l30-orange{
108
- color: lighten($orange-color, 30%);
109
- }
110
- .text-l30-purple{
111
- color: lighten($purple-color, 30%);
208
+
209
+
210
+
211
+ .text-l30-one{
212
+ color: lighten($color-one, 30%);
213
+ code.output:before{
214
+ content: "#{lighten($color-one, 30%) }";
215
+ }
216
+ }
217
+ .text-l30-two{
218
+ color: lighten($color-two, 30%);
219
+ code.output:before{
220
+ content: "#{lighten($color-two, 30%) }";
221
+ }
222
+ }
223
+ .text-l30-three{
224
+ color: lighten($color-three, 30%);
225
+ code.output:before{
226
+ content: "#{lighten($color-three, 30%) }";
227
+ }
228
+ }
229
+ .text-l30-four{
230
+ color: lighten($color-four, 30%);
231
+ code.output:before{
232
+ content: "#{lighten($color-four, 30%) }";
233
+ }
112
234
  }
113
235
  .text-l30-grey{
114
- color: lighten($grey-color, 30%);
236
+ color: lighten($color-grey, 30%);
237
+ code.output:before{
238
+ content: "#{lighten($color-grey, 30%) }";
239
+ }
115
240
  }
241
+
data/assets/main.scss CHANGED
@@ -2,5 +2,35 @@
2
2
 
3
3
  ---
4
4
 
5
+ // Solar Innovations' Colors
6
+ // $color-one: #000 !default;
7
+ // $color-two: #F47B28 !default;
8
+ // $color-three: #14A1AF !default;
9
+ // $color-four: #9E1D58 !default;
10
+ // $color-grey: #828282 !default;
11
+
12
+
13
+ {% if site.data.theme['one'] %}
14
+ $color-one: {{ site.data.theme['one'].color }};
15
+ {% endif %}
16
+
17
+ {% if site.data.theme['two'] %}
18
+ $color-two: {{ site.data.theme['two'].color }};
19
+ {% endif %}
20
+
21
+ {% if site.data.theme['three'] %}
22
+ $color-three: {{ site.data.theme['three'].color }};
23
+ {% endif %}
24
+
25
+ {% if site.data.theme['four'] %}
26
+ $color-four: {{ site.data.theme['four'].color }};
27
+ {% endif %}
28
+
29
+ {% if site.data.theme['grey'] %}
30
+ $color-grey: {{ site.data.theme['grey'].color }};
31
+ {% endif %}
32
+
33
+
5
34
  @import 'solar-flair';
6
35
 
36
+