jekyll-akademos 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE.txt +674 -0
- data/README.md +5 -0
- data/_includes/akademos.scss +38 -0
- data/_includes/footer.html +7 -0
- data/_includes/head.html +13 -0
- data/_includes/header.html +21 -0
- data/_includes/navigation.html +9 -0
- data/_includes/nextprev.html +12 -0
- data/_layouts/default.html +19 -0
- data/_layouts/index.html +28 -0
- data/_layouts/page.html +22 -0
- data/_layouts/post.html +30 -0
- data/_sass/_accessibility.scss +38 -0
- data/_sass/_base.scss +152 -0
- data/_sass/_container.scss +24 -0
- data/_sass/_footer.scss +32 -0
- data/_sass/_footnotes.scss +9 -0
- data/_sass/_header.scss +84 -0
- data/_sass/_index.scss +55 -0
- data/_sass/_links.scss +48 -0
- data/_sass/_nextprev.scss +48 -0
- data/_sass/_normalize.scss +461 -0
- data/_sass/_post.scss +22 -0
- data/_sass/_syntax.scss +71 -0
- data/_sass/_typography.scss +39 -0
- data/_sass/_variables.scss +206 -0
- data/_sass/themes/_alto.scss +58 -0
- data/_sass/themes/_archaic.scss +56 -0
- data/_sass/themes/_bionis.scss +58 -0
- data/_sass/themes/_blau.scss +58 -0
- data/_sass/themes/_caprice.scss +56 -0
- data/_sass/themes/_cyprium.scss +58 -0
- data/_sass/themes/_ficus.scss +58 -0
- data/_sass/themes/_flowerbed.scss +58 -0
- data/_sass/themes/_magus.scss +58 -0
- data/_sass/themes/_nefelio.scss +58 -0
- data/_sass/themes/_neptune.scss +58 -0
- data/_sass/themes/_ocarina.scss +58 -0
- data/_sass/themes/_oliveira.scss +58 -0
- data/_sass/themes/_orionis.scss +58 -0
- data/_sass/themes/_overgrowth.scss +58 -0
- data/_sass/themes/_playa.scss +58 -0
- data/_sass/themes/_sonho.scss +99 -0
- data/_sass/themes/_symbiosis.scss +58 -0
- data/_sass/themes/_vin.scss +58 -0
- data/assets/_data/akademos.yml +2 -0
- data/assets/_data/themes.yml +40 -0
- metadata +133 -0
|
@@ -0,0 +1,206 @@
|
|
|
1
|
+
// Typography -----------------------------
|
|
2
|
+
|
|
3
|
+
// Font stacks
|
|
4
|
+
|
|
5
|
+
$serif: Georgia, "Bitstream Charter", "Nimbus Roman No9 L", "Liberation Serif", serif;
|
|
6
|
+
$sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, "Nimbus Sans L", "Liberation Sans", sans-serif;
|
|
7
|
+
$mono: Menlo, "Lucida Sans Typewriter", "Lucida Console", "DejaVu Sans Mono", "Liberation Mono", Courier, monospace;
|
|
8
|
+
|
|
9
|
+
// Applied fonts
|
|
10
|
+
|
|
11
|
+
$font1: $sans; // Body
|
|
12
|
+
$font2: $serif; // Headings
|
|
13
|
+
$font3: $mono; // Code
|
|
14
|
+
$fontui: $sans; // All UI
|
|
15
|
+
|
|
16
|
+
// Scale ----------------------------------
|
|
17
|
+
|
|
18
|
+
$base-font-size: 18px;
|
|
19
|
+
$line-height: 1.44;
|
|
20
|
+
$heading-line-height: 1.2;
|
|
21
|
+
$vrythm: 1.44rem;
|
|
22
|
+
|
|
23
|
+
$msize: 1rem;
|
|
24
|
+
|
|
25
|
+
// Minor third
|
|
26
|
+
|
|
27
|
+
$xxlsize: 2.488rem;
|
|
28
|
+
$xlsize: 1.728rem;
|
|
29
|
+
$lsize: 1.2rem;
|
|
30
|
+
|
|
31
|
+
// Major second
|
|
32
|
+
|
|
33
|
+
$ssize: .889rem;
|
|
34
|
+
$xssize: .79rem;
|
|
35
|
+
$xxssize: .702rem;
|
|
36
|
+
|
|
37
|
+
// Space ---------------------------------
|
|
38
|
+
|
|
39
|
+
$sone: 1rem;
|
|
40
|
+
$measure: 46rem;
|
|
41
|
+
$measure-xl: $measure + 14;
|
|
42
|
+
|
|
43
|
+
// Dividers
|
|
44
|
+
|
|
45
|
+
$dark1: rgba(#000, .05) !default;
|
|
46
|
+
$dark2: rgba(#000, .1) !default;
|
|
47
|
+
|
|
48
|
+
$penumbra: 0 1px 3px $dark2 !default;
|
|
49
|
+
|
|
50
|
+
// Viewports
|
|
51
|
+
|
|
52
|
+
$tablet: 44.375em;
|
|
53
|
+
$desktop: 75em;
|
|
54
|
+
|
|
55
|
+
// Colours -------------------------------
|
|
56
|
+
|
|
57
|
+
/*
|
|
58
|
+
Name: Gaia
|
|
59
|
+
Author: Protesilaos Stavrou (https://protesilaos.com)
|
|
60
|
+
Theme URL: https://protesilaos.com/gaia
|
|
61
|
+
*/
|
|
62
|
+
|
|
63
|
+
$dbg: #2D2E2F !default; // Dark background
|
|
64
|
+
$dhl: #3D3E3F !default; // Dark highlight
|
|
65
|
+
$dt2: #7D7E7F !default; // Dark bg text secondary
|
|
66
|
+
$dt1: #ADAEAF !default; // Dark bg text primary
|
|
67
|
+
|
|
68
|
+
$lbg: #EBEDDF !default; // Light background
|
|
69
|
+
$lhl: #DBDDCF !default; // Light highlight
|
|
70
|
+
$lt2: #9B9D8F !default; // Light bg text secondary
|
|
71
|
+
$lt1: #6B6D5F !default; // Light bg text primary
|
|
72
|
+
|
|
73
|
+
$red: #9D6936 !default; // Red
|
|
74
|
+
$ora: #B38121 !default; // Orange
|
|
75
|
+
$gre: #8B9C3A !default; // Green
|
|
76
|
+
$blu: #6C9CBA !default; // Blue
|
|
77
|
+
|
|
78
|
+
$mag: #BD9198 !default; // Magenta
|
|
79
|
+
$yel: #BDAA4A !default; // Yellow
|
|
80
|
+
$cya: #85AF85 !default; // Cyan
|
|
81
|
+
$vio: #8A8DB7 !default; // Violet
|
|
82
|
+
|
|
83
|
+
// Colour order
|
|
84
|
+
|
|
85
|
+
$primary1: $red !default;
|
|
86
|
+
$primary2: $gre !default;
|
|
87
|
+
$primary3: $ora !default;
|
|
88
|
+
|
|
89
|
+
$secondary1: $cya !default;
|
|
90
|
+
$secondary2: $yel !default;
|
|
91
|
+
|
|
92
|
+
$tertiary1: $blu !default;
|
|
93
|
+
$tertiary2: $vio !default;
|
|
94
|
+
$tertiary3: $mag !default;
|
|
95
|
+
|
|
96
|
+
// Base defaults
|
|
97
|
+
|
|
98
|
+
$bg: $lbg !default; // Background
|
|
99
|
+
$text1: $lt1 !default; // Main text
|
|
100
|
+
$text2: $lt2 !default; // Secondary text
|
|
101
|
+
|
|
102
|
+
$subheading: $red !default; // H2
|
|
103
|
+
$section-heading: $ora !default; // H3 and below
|
|
104
|
+
|
|
105
|
+
$link: $blu !default;
|
|
106
|
+
$link-alt: $cya !default;
|
|
107
|
+
|
|
108
|
+
$inline-code: $gre !default;
|
|
109
|
+
|
|
110
|
+
// Syntax defaults
|
|
111
|
+
// Code blocks appear in the dark variant
|
|
112
|
+
|
|
113
|
+
$t1: $dt1 !default;
|
|
114
|
+
$t2: $dt2 !default;
|
|
115
|
+
$background: $dbg !default;
|
|
116
|
+
$highlight: $dhl !default;
|
|
117
|
+
|
|
118
|
+
// Mixins ---------------------------------
|
|
119
|
+
|
|
120
|
+
@mixin shadow {
|
|
121
|
+
-webkit-box-shadow: $penumbra;
|
|
122
|
+
-moz-box-shadow: $penumbra;
|
|
123
|
+
-ms-box-shadow: $penumbra;
|
|
124
|
+
box-shadow: $penumbra;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
@mixin font-smoothing {
|
|
128
|
+
-webkit-font-smoothing: antialiased;
|
|
129
|
+
-moz-osx-font-smoothing: grayscale;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
@mixin radius($degree) {
|
|
133
|
+
-webkit-border-radius: $degree;
|
|
134
|
+
-moz-border-radius: $degree;
|
|
135
|
+
-ms-border-radius: $degree;
|
|
136
|
+
border-radius: $degree;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
@mixin transition {
|
|
140
|
+
-webkit-transition: all ease-in-out 300ms;
|
|
141
|
+
-moz-transition: all ease-in-out 300ms;
|
|
142
|
+
-o-transition: all ease-in-out 300ms;
|
|
143
|
+
transition: all ease-in-out 300ms;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
@mixin notification($bg-colour, $border-colour) {
|
|
147
|
+
background: transparentize($bg-colour, 0.9);
|
|
148
|
+
border-left: thick solid $border-colour;
|
|
149
|
+
margin: $vrythm 0;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
@mixin calendar-legend($calbg) {
|
|
153
|
+
content: "";
|
|
154
|
+
display: inline-block;
|
|
155
|
+
background: #{$calbg};
|
|
156
|
+
width: 1em;
|
|
157
|
+
height: 1em;
|
|
158
|
+
margin-right: $sone / 2;
|
|
159
|
+
vertical-align: middle;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
@mixin bigblock {
|
|
163
|
+
padding-left: #{($measure-xl - $measure) / 2};
|
|
164
|
+
padding-right: #{($measure-xl - $measure) / 2};
|
|
165
|
+
margin-left: -#{($measure-xl - $measure) / 2};
|
|
166
|
+
margin-right: -#{($measure-xl - $measure) / 2};
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
@mixin tablet {
|
|
170
|
+
@media screen and (min-width: #{$tablet}) {
|
|
171
|
+
@content;
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
@mixin desktop {
|
|
176
|
+
@media screen and (min-width: #{$desktop}) {
|
|
177
|
+
@content;
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
// Placeholders ---------------------------
|
|
182
|
+
|
|
183
|
+
%clearfix {
|
|
184
|
+
&::before {
|
|
185
|
+
content: '';
|
|
186
|
+
display: table;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
&::after {
|
|
190
|
+
@extend %clearfix::before;
|
|
191
|
+
clear: both;
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
%pseudomark {
|
|
196
|
+
display: inline;
|
|
197
|
+
color: $text2;
|
|
198
|
+
font-weight: 400;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
%colourblock {
|
|
202
|
+
display: block;
|
|
203
|
+
float: left;
|
|
204
|
+
padding: 0;
|
|
205
|
+
margin: 0;
|
|
206
|
+
}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Name: Alto
|
|
3
|
+
Author: Protesilaos Stavrou (https://protesilaos.com)
|
|
4
|
+
Theme URL: https://protesilaos.com/alto
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
// Colour scheme
|
|
8
|
+
|
|
9
|
+
$dbg: #182D2A; // Dark background
|
|
10
|
+
$dhl: #283D3A; // Dark highlight
|
|
11
|
+
$dt2: #687D7A; // Dark bg text secondary
|
|
12
|
+
$dt1: #98ADAA; // Dark bg text primary
|
|
13
|
+
|
|
14
|
+
$lbg: #FAFAEC; // Light background
|
|
15
|
+
$lhl: #EAEADC; // Light highlight
|
|
16
|
+
$lt2: #8A8A7C; // Light bg text secondary
|
|
17
|
+
$lt1: #5A5A4C; // Light bg text primary
|
|
18
|
+
|
|
19
|
+
$red: #C6414D; // Red
|
|
20
|
+
$ora: #C9753D; // Orange
|
|
21
|
+
$yel: #C6A13D; // Yellow
|
|
22
|
+
$gre: #679945; // Green
|
|
23
|
+
|
|
24
|
+
$cya: #57AB8B; // Cyan
|
|
25
|
+
$blu: #378BBD; // Blue
|
|
26
|
+
$vio: #9A7BC8; // Violet
|
|
27
|
+
$mag: #C97885; // Magenta
|
|
28
|
+
|
|
29
|
+
// Colour order
|
|
30
|
+
|
|
31
|
+
$primary1: $blu;
|
|
32
|
+
$primary2: $mag;
|
|
33
|
+
$primary3: $gre;
|
|
34
|
+
|
|
35
|
+
$secondary1: $cya;
|
|
36
|
+
$secondary2: $vio;
|
|
37
|
+
|
|
38
|
+
$tertiary1: $ora;
|
|
39
|
+
$tertiary2: $yel;
|
|
40
|
+
$tertiary3: $red;
|
|
41
|
+
|
|
42
|
+
// Base defaults
|
|
43
|
+
|
|
44
|
+
$bg: $lbg;
|
|
45
|
+
$text1: $lt1;
|
|
46
|
+
$text2: $lt2;
|
|
47
|
+
$subheading: $mag;
|
|
48
|
+
$section-heading: $vio;
|
|
49
|
+
$link: $blu;
|
|
50
|
+
$link-alt: $cya;
|
|
51
|
+
$inline-code: $gre;
|
|
52
|
+
|
|
53
|
+
// Syntax defaults
|
|
54
|
+
|
|
55
|
+
$t1: $dt1;
|
|
56
|
+
$t2: $dt2;
|
|
57
|
+
$background: $dbg;
|
|
58
|
+
$highlight: $dhl;
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Name: Archaic
|
|
3
|
+
Author: Protesilaos Stavrou (https://protesilaos.com)
|
|
4
|
+
Theme URL: https://protesilaos.com/archaic
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
$dbg: #2E2926; // Dark background
|
|
8
|
+
$dhl: #3E3936; // Dark highlight
|
|
9
|
+
$dt2: #7E7976; // Dark bg text secondary
|
|
10
|
+
$dt1: #AEA9A6; // Dark bg text primary
|
|
11
|
+
|
|
12
|
+
$lbg: #FEF1D8; // Light background
|
|
13
|
+
$lhl: #EEE1C8; // Light highlight
|
|
14
|
+
$lt2: #9E9178; // Light bg text secondary
|
|
15
|
+
$lt1: #5E5138; // Light bg text primary
|
|
16
|
+
|
|
17
|
+
$red: #AB5637; // Red
|
|
18
|
+
$ora: #C76D26; // Orange
|
|
19
|
+
$yel: #A97906; // Yellow
|
|
20
|
+
$gre: #688A38; // Green
|
|
21
|
+
|
|
22
|
+
$cya: #368876; // Cyan
|
|
23
|
+
$blu: #4884AD; // Blue
|
|
24
|
+
$vio: #8A6BB5; // Violet
|
|
25
|
+
$mag: #A25763; // Magenta
|
|
26
|
+
|
|
27
|
+
// Colour order
|
|
28
|
+
|
|
29
|
+
$primary1: $red;
|
|
30
|
+
$primary2: $yel;
|
|
31
|
+
$primary3: $ora;
|
|
32
|
+
|
|
33
|
+
$secondary1: $gre;
|
|
34
|
+
$secondary2: $mag;
|
|
35
|
+
|
|
36
|
+
$tertiary1: $vio;
|
|
37
|
+
$tertiary2: $cya;
|
|
38
|
+
$tertiary3: $blu;
|
|
39
|
+
|
|
40
|
+
// Base defaults
|
|
41
|
+
|
|
42
|
+
$bg: $lbg;
|
|
43
|
+
$text1: $lt1;
|
|
44
|
+
$text2: $lt2;
|
|
45
|
+
$subheading: $gre;
|
|
46
|
+
$section-heading: $cya;
|
|
47
|
+
$link: $ora;
|
|
48
|
+
$link-alt: $red;
|
|
49
|
+
$inline-code: $vio;
|
|
50
|
+
|
|
51
|
+
// Syntax defaults
|
|
52
|
+
|
|
53
|
+
$t1: $dt1;
|
|
54
|
+
$t2: $dt2;
|
|
55
|
+
$background: $dbg;
|
|
56
|
+
$highlight: $dhl;
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Name: Bionis
|
|
3
|
+
Author: Protesilaos Stavrou (https://protesilaos.com)
|
|
4
|
+
Theme URL: https://protesilaos.com/bionis
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
// Colour scheme
|
|
8
|
+
|
|
9
|
+
$dbg: #251A27; // Dark background
|
|
10
|
+
$dhl: #352A37; // Dark highlight
|
|
11
|
+
$dt2: #857A87; // Dark bg text secondary
|
|
12
|
+
$dt1: #B5AAB7; // Dark bg text primary
|
|
13
|
+
|
|
14
|
+
$lbg: #FBF8FD; // Light background
|
|
15
|
+
$lhl: #EBE8ED; // Light highlight
|
|
16
|
+
$lt2: #8B888D; // Light bg text secondary
|
|
17
|
+
$lt1: #3B383D; // Light bg text primary
|
|
18
|
+
|
|
19
|
+
$red: #C25A5B; // Red
|
|
20
|
+
$ora: #CB6832; // Orange
|
|
21
|
+
$yel: #BA8A00; // Yellow
|
|
22
|
+
$gre: #4DA35C; // Green
|
|
23
|
+
|
|
24
|
+
$cya: #439B9B; // Cyan
|
|
25
|
+
$blu: #5A7ACD; // Blue
|
|
26
|
+
$vio: #AA6BC5; // Violet
|
|
27
|
+
$mag: #C25783; // Magenta
|
|
28
|
+
|
|
29
|
+
// Colour order
|
|
30
|
+
|
|
31
|
+
$primary1: $blu;
|
|
32
|
+
$primary2: $vio;
|
|
33
|
+
$primary3: $gre;
|
|
34
|
+
|
|
35
|
+
$secondary1: $cya;
|
|
36
|
+
$secondary2: $red;
|
|
37
|
+
|
|
38
|
+
$tertiary1: $ora;
|
|
39
|
+
$tertiary2: $mag;
|
|
40
|
+
$tertiary3: $yel;
|
|
41
|
+
|
|
42
|
+
// Base defaults
|
|
43
|
+
|
|
44
|
+
$bg: $lbg;
|
|
45
|
+
$text1: $lt1;
|
|
46
|
+
$text2: $lt2;
|
|
47
|
+
$subheading: $red;
|
|
48
|
+
$section-heading: $mag;
|
|
49
|
+
$link: $blu;
|
|
50
|
+
$link-alt: $vio;
|
|
51
|
+
$inline-code: $gre;
|
|
52
|
+
|
|
53
|
+
// Syntax defaults
|
|
54
|
+
|
|
55
|
+
$t1: $dt1;
|
|
56
|
+
$t2: $dt2;
|
|
57
|
+
$background: $dbg;
|
|
58
|
+
$highlight: $dhl;
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Name: Blau
|
|
3
|
+
Author: Protesilaos Stavrou (https://protesilaos.com)
|
|
4
|
+
Theme URL: https://protesilaos.com/blau
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
// Variables ----------------------------
|
|
8
|
+
|
|
9
|
+
$dbg: #28282F; // Dark background
|
|
10
|
+
$dhl: #38383F; // Dark highlight
|
|
11
|
+
$dt2: #68686F; // Dark bg text secondary
|
|
12
|
+
$dt1: #98989F; // Dark bg text primary
|
|
13
|
+
|
|
14
|
+
$lbg: #DFDCDE; // Light background
|
|
15
|
+
$lhl: #CFCCCE; // Light highlight
|
|
16
|
+
$lt2: #7F7C7E; // Light bg text secondary
|
|
17
|
+
$lt1: #4F4C4E; // Light bg text primary
|
|
18
|
+
|
|
19
|
+
$red: #A43D56; // Red
|
|
20
|
+
$ora: #BB651B; // Orange
|
|
21
|
+
$yel: #BB8B11; // Yellow
|
|
22
|
+
$gre: #3BA67A; // Green
|
|
23
|
+
|
|
24
|
+
$cya: #2F95A5; // Cyan
|
|
25
|
+
$blu: #2F7CB1; // Blue
|
|
26
|
+
$vio: #5E6FB5; // Violet
|
|
27
|
+
$mag: #A5657A; // Magenta
|
|
28
|
+
|
|
29
|
+
// Colour order
|
|
30
|
+
|
|
31
|
+
$primary1: $red;
|
|
32
|
+
$primary2: $vio;
|
|
33
|
+
$primary3: $blu;
|
|
34
|
+
|
|
35
|
+
$secondary1: $cya;
|
|
36
|
+
$secondary2: $mag;
|
|
37
|
+
|
|
38
|
+
$tertiary1: $yel;
|
|
39
|
+
$tertiary2: $gre;
|
|
40
|
+
$tertiary3: $ora;
|
|
41
|
+
|
|
42
|
+
// Base defaults
|
|
43
|
+
|
|
44
|
+
$bg: $lbg;
|
|
45
|
+
$text1: $lt1;
|
|
46
|
+
$text2: $lt2;
|
|
47
|
+
$subheading: $ora;
|
|
48
|
+
$section-heading: $yel;
|
|
49
|
+
$link: $blu;
|
|
50
|
+
$link-alt: $red;
|
|
51
|
+
$inline-code: $gre;
|
|
52
|
+
|
|
53
|
+
// Syntax defaults
|
|
54
|
+
|
|
55
|
+
$t1: $dt1;
|
|
56
|
+
$t2: $dt2;
|
|
57
|
+
$background: $dbg;
|
|
58
|
+
$highlight: $dhl;
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Name: Caprice
|
|
3
|
+
Author: Protesilaos Stavrou (https://protesilaos.com)
|
|
4
|
+
Theme URL: https://protesilaos.com/caprice
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
$dbg: #211B29; // Dark background
|
|
8
|
+
$dhl: #312B39; // Dark highlight
|
|
9
|
+
$dt2: #716B79; // Dark bg text secondary
|
|
10
|
+
$dt1: #A19BA9; // Dark bg text primary
|
|
11
|
+
|
|
12
|
+
$lbg: #FEFBFC; // Light background
|
|
13
|
+
$lhl: #EEEBEC; // Light highlight
|
|
14
|
+
$lt2: #7E7B7C; // Light bg text secondary
|
|
15
|
+
$lt1: #2E2B2C; // Light bg text primary
|
|
16
|
+
|
|
17
|
+
$red: #983D4F; // Red
|
|
18
|
+
$ora: #9A5D38; // Orange
|
|
19
|
+
$yel: #A58A30; // Yellow
|
|
20
|
+
$gre: #278975; // Green
|
|
21
|
+
|
|
22
|
+
$cya: #587EBC; // Cyan
|
|
23
|
+
$blu: #585EBC; // Blue
|
|
24
|
+
$vio: #8955A2; // Violet
|
|
25
|
+
$mag: #AC4D7A; // Magenta
|
|
26
|
+
|
|
27
|
+
// Colour order
|
|
28
|
+
|
|
29
|
+
$primary1: $vio;
|
|
30
|
+
$primary2: $gre;
|
|
31
|
+
$primary3: $blu;
|
|
32
|
+
|
|
33
|
+
$secondary1: $cya;
|
|
34
|
+
$secondary2: $ora;
|
|
35
|
+
|
|
36
|
+
$tertiary1: $red;
|
|
37
|
+
$tertiary2: $mag;
|
|
38
|
+
$tertiary3: $yel;
|
|
39
|
+
|
|
40
|
+
// Base defaults
|
|
41
|
+
|
|
42
|
+
$bg: $lbg;
|
|
43
|
+
$text1: $lt1;
|
|
44
|
+
$text2: $lt2;
|
|
45
|
+
$subheading: $red;
|
|
46
|
+
$section-heading: $ora;
|
|
47
|
+
$link: $vio;
|
|
48
|
+
$link-alt: $blu;
|
|
49
|
+
$inline-code: $gre;
|
|
50
|
+
|
|
51
|
+
// Syntax defaults
|
|
52
|
+
|
|
53
|
+
$t1: $dt1;
|
|
54
|
+
$t2: $dt2;
|
|
55
|
+
$background: $dbg;
|
|
56
|
+
$highlight: $dhl;
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Name: Cyprium
|
|
3
|
+
Author: Protesilaos Stavrou (https://protesilaos.com)
|
|
4
|
+
Theme URL: https://protesilaos.com/cyprium
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
// Colour scheme
|
|
8
|
+
|
|
9
|
+
$dbg: #374934; // Dark background
|
|
10
|
+
$dhl: #475944; // Dark highlight
|
|
11
|
+
$dt2: #879984; // Dark bg text secondary
|
|
12
|
+
$dt1: #A7B9A4; // Dark bg text primary
|
|
13
|
+
|
|
14
|
+
$lbg: #EBE9DA; // Light background
|
|
15
|
+
$lhl: #DBD9CA; // Light highlight
|
|
16
|
+
$lt2: #9B998A; // Light bg text secondary
|
|
17
|
+
$lt1: #6B695A; // Light bg text primary
|
|
18
|
+
|
|
19
|
+
$red: #C36A5F; // Red
|
|
20
|
+
$ora: #B37521; // Orange
|
|
21
|
+
$gre: #6B8C4A; // Green
|
|
22
|
+
$blu: #3C959A; // Blue
|
|
23
|
+
|
|
24
|
+
$mag: #BB6384; // Magenta
|
|
25
|
+
$yel: #A38E10; // Yellow
|
|
26
|
+
$cya: #5C9B85; // Cyan
|
|
27
|
+
$vio: #8B85BA; // Violet
|
|
28
|
+
|
|
29
|
+
// Colour order
|
|
30
|
+
|
|
31
|
+
$primary1: $yel;
|
|
32
|
+
$primary2: $ora;
|
|
33
|
+
$primary3: $gre;
|
|
34
|
+
|
|
35
|
+
$secondary1: $cya;
|
|
36
|
+
$secondary2: $blu;
|
|
37
|
+
|
|
38
|
+
$tertiary1: $red;
|
|
39
|
+
$tertiary2: $vio;
|
|
40
|
+
$tertiary3: $mag;
|
|
41
|
+
|
|
42
|
+
// Base defaults
|
|
43
|
+
|
|
44
|
+
$bg: $lbg;
|
|
45
|
+
$text1: $lt1;
|
|
46
|
+
$text2: $lt2;
|
|
47
|
+
$subheading: $gre;
|
|
48
|
+
$section-heading: $cya;
|
|
49
|
+
$link: $ora;
|
|
50
|
+
$link-alt: $yel;
|
|
51
|
+
$inline-code: $red;
|
|
52
|
+
|
|
53
|
+
// Syntax defaults
|
|
54
|
+
|
|
55
|
+
$t1: $dt1;
|
|
56
|
+
$t2: $dt2;
|
|
57
|
+
$background: $dbg;
|
|
58
|
+
$highlight: $dhl;
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Name: Ficus
|
|
3
|
+
Author: Protesilaos Stavrou (https://protesilaos.com)
|
|
4
|
+
Theme URL: https://protesilaos.com/ficus
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
// Colour scheme
|
|
8
|
+
|
|
9
|
+
$dbg: #27152C; // Dark background
|
|
10
|
+
$dhl: #37253C; // Dark highlight
|
|
11
|
+
$dt2: #67556C; // Dark bg text secondary
|
|
12
|
+
$dt1: #97859C; // Dark bg text primary
|
|
13
|
+
|
|
14
|
+
$lbg: #EDF1E5; // Light background
|
|
15
|
+
$lhl: #DDE1D5; // Light highlight
|
|
16
|
+
$lt2: #8D9185; // Light bg text secondary
|
|
17
|
+
$lt1: #5D6155; // Light bg text primary
|
|
18
|
+
|
|
19
|
+
$red: #AA3A5A; // Red
|
|
20
|
+
$ora: #AC6E00; // Orange
|
|
21
|
+
$yel: #ACA60A; // Yellow
|
|
22
|
+
$gre: #84A33C; // Green
|
|
23
|
+
|
|
24
|
+
$cya: #6CACAB; // Cyan
|
|
25
|
+
$blu: #6D75CD; // Blue
|
|
26
|
+
$vio: #A46ACD; // Violet
|
|
27
|
+
$mag: #CB5E9A; // Magenta
|
|
28
|
+
|
|
29
|
+
// Colour order
|
|
30
|
+
|
|
31
|
+
$primary1: $mag;
|
|
32
|
+
$primary2: $vio;
|
|
33
|
+
$primary3: $gre;
|
|
34
|
+
|
|
35
|
+
$secondary1: $yel;
|
|
36
|
+
$secondary2: $cya;
|
|
37
|
+
|
|
38
|
+
$tertiary1: $blu;
|
|
39
|
+
$tertiary2: $red;
|
|
40
|
+
$tertiary3: $ora;
|
|
41
|
+
|
|
42
|
+
// Base defaults
|
|
43
|
+
|
|
44
|
+
$bg: $lbg;
|
|
45
|
+
$text1: $lt1;
|
|
46
|
+
$text2: $lt2;
|
|
47
|
+
$subheading: $gre;
|
|
48
|
+
$section-heading: $cya;
|
|
49
|
+
$link: $mag;
|
|
50
|
+
$link-alt: $vio;
|
|
51
|
+
$inline-code: $yel;
|
|
52
|
+
|
|
53
|
+
// Syntax defaults
|
|
54
|
+
|
|
55
|
+
$t1: $dt1;
|
|
56
|
+
$t2: $dt2;
|
|
57
|
+
$background: $dbg;
|
|
58
|
+
$highlight: $dhl;
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Name: Flowerbed
|
|
3
|
+
Author: Protesilaos Stavrou (https://protesilaos.com)
|
|
4
|
+
Theme URL: https://protesilaos.com/flowerbed
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
// Colour scheme
|
|
8
|
+
|
|
9
|
+
$dbg: #233949; // Dark background
|
|
10
|
+
$dhl: #334959; // Dark highlight
|
|
11
|
+
$dt2: #738999; // Dark bg text secondary
|
|
12
|
+
$dt1: #A3B9C9; // Dark bg text primary
|
|
13
|
+
|
|
14
|
+
$lbg: #ECF3F2; // Light background
|
|
15
|
+
$lhl: #DCE3E2; // Light highlight
|
|
16
|
+
$lt2: #8C9392; // Light bg text secondary
|
|
17
|
+
$lt1: #5C6362; // Light bg text primary
|
|
18
|
+
|
|
19
|
+
$red: #D86A87; // Red
|
|
20
|
+
$ora: #D89A47; // Orange
|
|
21
|
+
$yel: #CD9A8A; // Yellow
|
|
22
|
+
$gre: #5CBC7D; // Green
|
|
23
|
+
|
|
24
|
+
$cya: #1CABA1; // Cyan
|
|
25
|
+
$blu: #4AA7D2; // Blue
|
|
26
|
+
$vio: #7988CA; // Violet
|
|
27
|
+
$mag: #BC74AF; // Magenta
|
|
28
|
+
|
|
29
|
+
// Colour order
|
|
30
|
+
|
|
31
|
+
$primary1: $cya;
|
|
32
|
+
$primary2: $gre;
|
|
33
|
+
$primary3: $mag;
|
|
34
|
+
|
|
35
|
+
$secondary1: $vio;
|
|
36
|
+
$secondary2: $blu;
|
|
37
|
+
|
|
38
|
+
$tertiary1: $ora;
|
|
39
|
+
$tertiary2: $red;
|
|
40
|
+
$tertiary3: $yel;
|
|
41
|
+
|
|
42
|
+
// Base defaults
|
|
43
|
+
|
|
44
|
+
$bg: $lbg;
|
|
45
|
+
$text1: $lt1;
|
|
46
|
+
$text2: $lt2;
|
|
47
|
+
$subheading: $yel;
|
|
48
|
+
$section-heading: $ora;
|
|
49
|
+
$link: $cya;
|
|
50
|
+
$link-alt: $gre;
|
|
51
|
+
$inline-code: $red;
|
|
52
|
+
|
|
53
|
+
// Syntax defaults
|
|
54
|
+
|
|
55
|
+
$t1: $dt1;
|
|
56
|
+
$t2: $dt2;
|
|
57
|
+
$background: $dbg;
|
|
58
|
+
$highlight: $dhl;
|