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.
Files changed (49) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +674 -0
  3. data/README.md +5 -0
  4. data/_includes/akademos.scss +38 -0
  5. data/_includes/footer.html +7 -0
  6. data/_includes/head.html +13 -0
  7. data/_includes/header.html +21 -0
  8. data/_includes/navigation.html +9 -0
  9. data/_includes/nextprev.html +12 -0
  10. data/_layouts/default.html +19 -0
  11. data/_layouts/index.html +28 -0
  12. data/_layouts/page.html +22 -0
  13. data/_layouts/post.html +30 -0
  14. data/_sass/_accessibility.scss +38 -0
  15. data/_sass/_base.scss +152 -0
  16. data/_sass/_container.scss +24 -0
  17. data/_sass/_footer.scss +32 -0
  18. data/_sass/_footnotes.scss +9 -0
  19. data/_sass/_header.scss +84 -0
  20. data/_sass/_index.scss +55 -0
  21. data/_sass/_links.scss +48 -0
  22. data/_sass/_nextprev.scss +48 -0
  23. data/_sass/_normalize.scss +461 -0
  24. data/_sass/_post.scss +22 -0
  25. data/_sass/_syntax.scss +71 -0
  26. data/_sass/_typography.scss +39 -0
  27. data/_sass/_variables.scss +206 -0
  28. data/_sass/themes/_alto.scss +58 -0
  29. data/_sass/themes/_archaic.scss +56 -0
  30. data/_sass/themes/_bionis.scss +58 -0
  31. data/_sass/themes/_blau.scss +58 -0
  32. data/_sass/themes/_caprice.scss +56 -0
  33. data/_sass/themes/_cyprium.scss +58 -0
  34. data/_sass/themes/_ficus.scss +58 -0
  35. data/_sass/themes/_flowerbed.scss +58 -0
  36. data/_sass/themes/_magus.scss +58 -0
  37. data/_sass/themes/_nefelio.scss +58 -0
  38. data/_sass/themes/_neptune.scss +58 -0
  39. data/_sass/themes/_ocarina.scss +58 -0
  40. data/_sass/themes/_oliveira.scss +58 -0
  41. data/_sass/themes/_orionis.scss +58 -0
  42. data/_sass/themes/_overgrowth.scss +58 -0
  43. data/_sass/themes/_playa.scss +58 -0
  44. data/_sass/themes/_sonho.scss +99 -0
  45. data/_sass/themes/_symbiosis.scss +58 -0
  46. data/_sass/themes/_vin.scss +58 -0
  47. data/assets/_data/akademos.yml +2 -0
  48. data/assets/_data/themes.yml +40 -0
  49. metadata +133 -0
@@ -0,0 +1,58 @@
1
+ /*
2
+ Name: Magus
3
+ Author: Protesilaos Stavrou (https://protesilaos.com)
4
+ Theme URL: https://protesilaos.com/magus
5
+ */
6
+
7
+ // Colour scheme
8
+
9
+ $dbg: #322A29; // Dark background
10
+ $dhl: #423A39; // Dark highlight
11
+ $dt2: #726A69; // Dark bg text secondary
12
+ $dt1: #A29A99; // Dark bg text primary
13
+
14
+ $lbg: #F2EDE6; // Light background
15
+ $lhl: #E2DDD6; // Light highlight
16
+ $lt2: #A29D96; // Light bg text secondary
17
+ $lt1: #625D56; // Light bg text primary
18
+
19
+ $red: #BD5956; // Red
20
+ $ora: #BB7321; // Orange
21
+ $gre: #8B972A; // Green
22
+ $blu: #5C8CAA; // Blue
23
+
24
+ $mag: #B881A8; // Magenta
25
+ $yel: #C1A222; // Yellow
26
+ $cya: #65AB85; // Cyan
27
+ $vio: #7A7DA7; // Violet
28
+
29
+ // Colour order
30
+
31
+ $primary1: $ora;
32
+ $primary2: $red;
33
+ $primary3: $gre;
34
+
35
+ $secondary1: $cya;
36
+ $secondary2: $yel;
37
+
38
+ $tertiary1: $vio;
39
+ $tertiary2: $blu;
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: $red;
51
+ $inline-code: $vio;
52
+
53
+ // Syntax defaults
54
+
55
+ $t1: $dt1;
56
+ $t2: $dt2;
57
+ $background: $dbg;
58
+ $highlight: $dhl;
@@ -0,0 +1,58 @@
1
+ /*
2
+ Name: Nefelio
3
+ Author: Protesilaos Stavrou (https://protesilaos.com)
4
+ Theme URL: https://protesilaos.com/nefelio
5
+ */
6
+
7
+ // Colour scheme
8
+
9
+ $dbg: #282326; // Dark background
10
+ $dhl: #383336; // Dark highlight
11
+ $dt2: #686366; // Dark bg text secondary
12
+ $dt1: #989396; // Dark bg text primary
13
+
14
+ $lbg: #EAEFF2; // Light background
15
+ $lhl: #DADFE2; // Light highlight
16
+ $lt2: #9A9FA2; // Light bg text secondary
17
+ $lt1: #6A6F72; // Light bg text primary
18
+
19
+ $red: #BA3D5A; // Red
20
+ $ora: #CA6F5F; // Orange
21
+ $yel: #CA9E5D; // Yellow
22
+ $gre: #1CB57A; // Green
23
+
24
+ $cya: #34B7BD; // Cyan
25
+ $blu: #3F8EDA; // Blue
26
+ $vio: #956CDA; // Violet
27
+ $mag: #C34D95; // Magenta
28
+
29
+ // Colour order
30
+
31
+ $primary1: $mag;
32
+ $primary2: $gre;
33
+ $primary3: $cya;
34
+
35
+ $secondary1: $blu;
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: $cya;
48
+ $section-heading: $gre;
49
+ $link: $mag;
50
+ $link-alt: $vio;
51
+ $inline-code: $ora;
52
+
53
+ // Syntax defaults
54
+
55
+ $t1: $dt1;
56
+ $t2: $dt2;
57
+ $background: $dbg;
58
+ $highlight: $dhl;
@@ -0,0 +1,58 @@
1
+ /*
2
+ Name: Neptune
3
+ Author: Protesilaos Stavrou (https://protesilaos.com)
4
+ Theme URL: https://protesilaos.com/neptune
5
+ */
6
+
7
+ // Colour scheme
8
+
9
+ $dbg: #282C36; // Dark background
10
+ $dhl: #383C46; // Dark highlight
11
+ $dt2: #686C76; // Dark bg text secondary
12
+ $dt1: #A8ACB6; // Dark bg text primary
13
+
14
+ $lbg: #F0F1F8; // Light background
15
+ $lhl: #E0E1E8; // Light highlight
16
+ $lt2: #909198; // Light bg text secondary
17
+ $lt1: #404148; // Light bg text primary
18
+
19
+ $red: #A97552; // Red
20
+ $ora: #C78956; // Orange
21
+ $gre: #48B788; // Green
22
+ $blu: #3C8CBB; // Blue
23
+
24
+ $mag: #C789A6; // Magenta
25
+ $yel: #B9A552; // Yellow
26
+ $cya: #55AFAF; // Cyan
27
+ $vio: #7A7DCA; // Violet
28
+
29
+ // Colour order
30
+
31
+ $primary1: $blu;
32
+ $primary2: $mag;
33
+ $primary3: $cya;
34
+
35
+ $secondary1: $vio;
36
+ $secondary2: $gre;
37
+
38
+ $tertiary1: $red;
39
+ $tertiary2: $ora;
40
+ $tertiary3: $yel;
41
+
42
+ // Base defaults
43
+
44
+ $bg: $lbg;
45
+ $text1: $lt1;
46
+ $text2: $lt2;
47
+ $subheading: $gre;
48
+ $section-heading: $yel;
49
+ $link: $blu;
50
+ $link-alt: $cya;
51
+ $inline-code: $vio;
52
+
53
+ // Syntax defaults
54
+
55
+ $t1: $dt1;
56
+ $t2: $dt2;
57
+ $background: $dbg;
58
+ $highlight: $dhl;
@@ -0,0 +1,58 @@
1
+ /*
2
+ Name: Ocarina
3
+ Author: Protesilaos Stavrou (https://protesilaos.com)
4
+ Theme URL: https://protesilaos.com/ocarina
5
+ */
6
+
7
+ // Colour scheme
8
+
9
+ $dbg: #212C2D; // Dark background
10
+ $dhl: #313C3D; // Dark highlight
11
+ $dt2: #616C6D; // Dark bg text secondary
12
+ $dt1: #919C9D; // Dark bg text primary
13
+
14
+ $lbg: #EBEBE7; // Light background
15
+ $lhl: #DBDBD7; // Light highlight
16
+ $lt2: #9B9B97; // Light bg text secondary
17
+ $lt1: #6B6B67; // Light bg text primary
18
+
19
+ $red: #BA6F5B; // Red
20
+ $ora: #A2853A; // Orange
21
+ $yel: #93A34A; // Yellow
22
+ $gre: #3D9D54; // Green
23
+
24
+ $cya: #48A99B; // Cyan
25
+ $blu: #2AA2A5; // Blue
26
+ $vio: #7A99BA; // Violet
27
+ $mag: #A77B9B; // Magenta
28
+
29
+ // Colour order
30
+
31
+ $primary1: $gre;
32
+ $primary2: $cya;
33
+ $primary3: $ora;
34
+
35
+ $secondary1: $yel;
36
+ $secondary2: $vio;
37
+
38
+ $tertiary1: $blu;
39
+ $tertiary2: $red;
40
+ $tertiary3: $mag;
41
+
42
+ // Base defaults
43
+
44
+ $bg: $lbg;
45
+ $text1: $lt1;
46
+ $text2: $lt2;
47
+ $subheading: $red;
48
+ $section-heading: $ora;
49
+ $link: $gre;
50
+ $link-alt: $cya;
51
+ $inline-code: $vio;
52
+
53
+ // Syntax defaults
54
+
55
+ $t1: $dt1;
56
+ $t2: $dt2;
57
+ $background: $dbg;
58
+ $highlight: $dhl;
@@ -0,0 +1,58 @@
1
+ /*
2
+ Name: Oliveira
3
+ Author: Protesilaos Stavrou (https://protesilaos.com)
4
+ Theme URL: https://protesilaos.com/oliveira
5
+ */
6
+
7
+ // Variables ----------------------------
8
+
9
+ $dbg: #252922; // Dark background
10
+ $dhl: #353932; // Dark highlight
11
+ $dt2: #757972; // Dark bg text secondary
12
+ $dt1: #959992; // Dark bg text primary
13
+
14
+ $lbg: #F1F3EB; // Light background
15
+ $lhl: #E1E3DB; // Light highlight
16
+ $lt2: #91938B; // Light bg text secondary
17
+ $lt1: #51534B; // Light bg text primary
18
+
19
+ $red: #A64E3C; // Red
20
+ $ora: #A35C35; // Orange
21
+ $gre: #5CA15A; // Green
22
+ $blu: #1A8DAC; // Blue
23
+
24
+ $mag: #A95F85; // Magenta
25
+ $yel: #A59520; // Yellow
26
+ $cya: #5CAA9A; // Cyan
27
+ $vio: #7C85B7; // Violet
28
+
29
+ // Colour order
30
+
31
+ $primary1: $gre;
32
+ $primary2: $vio;
33
+ $primary3: $blu;
34
+
35
+ $secondary1: $cya;
36
+ $secondary2: $mag;
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: $gre;
50
+ $link-alt: $cya;
51
+ $inline-code: $ora;
52
+
53
+ // Syntax defaults
54
+
55
+ $t1: $dt1;
56
+ $t2: $dt2;
57
+ $background: $dbg;
58
+ $highlight: $dhl;
@@ -0,0 +1,58 @@
1
+ /*
2
+ Name: Orionis
3
+ Author: Protesilaos Stavrou (https://protesilaos.com)
4
+ Theme URL: https://protesilaos.com/orionis
5
+ */
6
+
7
+ // Colour scheme
8
+
9
+ $dbg: #1F2A2D; // Dark background
10
+ $dhl: #2F3A3D; // Dark highlight
11
+ $dt2: #5F6A6D; // Dark bg text secondary
12
+ $dt1: #8F9A9D; // Dark bg text primary
13
+
14
+ $lbg: #EFF1F3; // Light background
15
+ $lhl: #DFE1E3; // Light highlight
16
+ $lt2: #8F9193; // Light bg text secondary
17
+ $lt1: #5F6163; // Light bg text primary
18
+
19
+ $red: #974F6C; // Red
20
+ $ora: #9D7427; // Orange
21
+ $gre: #5B935B; // Green
22
+ $blu: #4D8AB3; // Blue
23
+
24
+ $mag: #AD6E8F; // Magenta
25
+ $yel: #9A8F0C; // Yellow
26
+ $cya: #52A6AD; // Cyan
27
+ $vio: #7E7EAD; // Violet
28
+
29
+ // Colour order
30
+
31
+ $primary1: $mag;
32
+ $primary2: $vio;
33
+ $primary3: $blu;
34
+
35
+ $secondary1: $cya;
36
+ $secondary2: $gre;
37
+
38
+ $tertiary1: $red;
39
+ $tertiary2: $ora;
40
+ $tertiary3: $yel;
41
+
42
+ // Base defaults
43
+
44
+ $bg: $lbg;
45
+ $text1: $lt1;
46
+ $text2: $lt2;
47
+ $subheading: $vio;
48
+ $section-heading: $cya;
49
+ $link: $mag;
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,58 @@
1
+ /*
2
+ Name: Overgrowth
3
+ Author: Protesilaos Stavrou (https://protesilaos.com)
4
+ Theme URL: https://protesilaos.com/overgrowth
5
+ */
6
+
7
+ // Colour scheme
8
+
9
+ $dbg: #233F34; // Dark background
10
+ $dhl: #334F44; // Dark highlight
11
+ $dt2: #637F74; // Dark bg text secondary
12
+ $dt1: #93AFA4; // Dark bg text primary
13
+
14
+ $lbg: #E6E5D2; // Light background
15
+ $lhl: #D6D5C2; // Light highlight
16
+ $lt2: #A6A592; // Light bg text secondary
17
+ $lt1: #767562; // Light bg text primary
18
+
19
+ $red: #CA6A4A; // Red
20
+ $ora: #BB7628; // Orange
21
+ $yel: #A8950D; // Yellow
22
+ $gre: #4BA212; // Green
23
+
24
+ $cya: #15B59B; // Cyan
25
+ $blu: #359FCA; // Blue
26
+ $vio: #8A6EBB; // Violet
27
+ $mag: #BB6E8A; // Magenta
28
+
29
+ // Colour order
30
+
31
+ $primary1: $gre;
32
+ $primary2: $ora;
33
+ $primary3: $red;
34
+
35
+ $secondary1: $yel;
36
+ $secondary2: $mag;
37
+
38
+ $tertiary1: $blu;
39
+ $tertiary2: $vio;
40
+ $tertiary3: $cya;
41
+
42
+ // Base defaults
43
+
44
+ $bg: $lbg;
45
+ $text1: $lt1;
46
+ $text2: $lt2;
47
+ $subheading: $ora;
48
+ $section-heading: $yel;
49
+ $link: $gre;
50
+ $link-alt: $cya;
51
+ $inline-code: $vio;
52
+
53
+ // Syntax defaults
54
+
55
+ $t1: $dt1;
56
+ $t2: $dt2;
57
+ $background: $dbg;
58
+ $highlight: $dhl;
@@ -0,0 +1,58 @@
1
+ /*
2
+ Name: Playa
3
+ Author: Protesilaos Stavrou (https://protesilaos.com)
4
+ Theme URL: https://protesilaos.com/playa
5
+ */
6
+
7
+ // Colour scheme
8
+
9
+ $dbg: #234154; // Dark background
10
+ $dhl: #335F64; // Dark highlight
11
+ $dt2: #638F94; // Dark bg text secondary
12
+ $dt1: #93BFC4; // Dark bg text primary
13
+
14
+ $lbg: #FAF1E0; // Light background
15
+ $lhl: #EAE1D0; // Light highlight
16
+ $lt2: #AAA190; // Light bg text secondary
17
+ $lt1: #7A7160; // Light bg text primary
18
+
19
+ $red: #CA6E6A; // Red
20
+ $ora: #CB8D6A; // Orange
21
+ $yel: #DDBA7D; // Yellow
22
+ $gre: #7DB97A; // Green
23
+
24
+ $cya: #35C5BD; // Cyan
25
+ $blu: #65AFCD; // Blue
26
+ $vio: #AA85CB; // Violet
27
+ $mag: #CB7E9A; // Magenta
28
+
29
+ // Colour order
30
+
31
+ $primary1: $blu;
32
+ $primary2: $gre;
33
+ $primary3: $cya;
34
+
35
+ $secondary1: $ora;
36
+ $secondary2: $yel;
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: $blu;
50
+ $link-alt: $ora;
51
+ $inline-code: $vio;
52
+
53
+ // Syntax defaults
54
+
55
+ $t1: $dt1;
56
+ $t2: $dt2;
57
+ $background: $dbg;
58
+ $highlight: $dhl;
@@ -0,0 +1,99 @@
1
+ /*
2
+ Name: Sonho
3
+ Author: Protesilaos Stavrou (https://protesilaos.com)
4
+ Theme URL: https://protesilaos.com/sonho
5
+ */
6
+
7
+ // Colour scheme
8
+
9
+ $dbg: #4A3638; // Dark background
10
+ $dhl: #5A4648; // Dark highlight
11
+ $dt2: #8A7678; // Dark bg text secondary
12
+ $dt1: #BAA6A8; // Dark bg text primary
13
+
14
+ $lbg: #FFF0F2; // Light background
15
+ $lhl: #EFE0E2; // Light highlight
16
+ $lt2: #8F8082; // Light bg text secondary
17
+ $lt1: #5F5052; // Light bg text primary
18
+
19
+ $red: #CD4679; // Red
20
+ $ora: #D9766D; // Orange
21
+ $gre: #11BF8C; // Green
22
+ $blu: #479CB5; // Blue
23
+
24
+ $mag: #DD619F; // Magenta
25
+ $yel: #D9A652; // Yellow
26
+ $cya: #5FB8B4; // Cyan
27
+ $vio: #A77CCF; // Violet
28
+
29
+ // Colour order
30
+
31
+ $primary1: $mag;
32
+ $primary2: $cya;
33
+ $primary3: $yel;
34
+
35
+ $secondary1: $ora;
36
+ $secondary2: $vio;
37
+
38
+ $tertiary1: $blu;
39
+ $tertiary2: $gre;
40
+ $tertiary3: $red;
41
+
42
+ /*
43
+ Name: Sonho
44
+ Author: Protesilaos Stavrou (https://protesilaos.com)
45
+ Theme URL: https://protesilaos.com/sonho
46
+ */
47
+
48
+ // Colour scheme
49
+
50
+ $dbg: #4A3638; // Dark background
51
+ $dhl: #5A4648; // Dark highlight
52
+ $dt2: #8A7678; // Dark bg text secondary
53
+ $dt1: #BAA6A8; // Dark bg text primary
54
+
55
+ $lbg: #FFF0F2; // Light background
56
+ $lhl: #EFE0E2; // Light highlight
57
+ $lt2: #8F8082; // Light bg text secondary
58
+ $lt1: #5F5052; // Light bg text primary
59
+
60
+ $red: #CD4679; // Red
61
+ $ora: #D9766D; // Orange
62
+ $gre: #11BF8C; // Green
63
+ $blu: #479CB5; // Blue
64
+
65
+ $mag: #DD619F; // Magenta
66
+ $yel: #D9A652; // Yellow
67
+ $cya: #5FB8B4; // Cyan
68
+ $vio: #A77CCF; // Violet
69
+
70
+ // Colour order
71
+
72
+ $primary1: $mag;
73
+ $primary2: $cya;
74
+ $primary3: $yel;
75
+
76
+ $secondary1: $ora;
77
+ $secondary2: $vio;
78
+
79
+ $tertiary1: $blu;
80
+ $tertiary2: $gre;
81
+ $tertiary3: $red;
82
+
83
+ // Base defaults
84
+
85
+ $bg: $lbg;
86
+ $text1: $lt1;
87
+ $text2: $lt2;
88
+ $subheading: $mag;
89
+ $section-heading: $vio;
90
+ $link: $ora;
91
+ $link-alt: $yel;
92
+ $inline-code: $blu;
93
+
94
+ // Syntax defaults
95
+
96
+ $t1: $dt1;
97
+ $t2: $dt2;
98
+ $background: $dbg;
99
+ $highlight: $dhl;
@@ -0,0 +1,58 @@
1
+ /*
2
+ Name: Symbiosis
3
+ Author: Protesilaos Stavrou (https://protesilaos.com)
4
+ Theme URL: https://protesilaos.com/symbiosis
5
+ */
6
+
7
+ // Colour scheme
8
+
9
+ $dbg: #111D1C; // Dark background
10
+ $dhl: #212D2C; // Dark highlight
11
+ $dt2: #616D6C; // Dark bg text secondary
12
+ $dt1: #A1ADAC; // Dark bg text primary
13
+
14
+ $lbg: #FCFAF9; // Light background
15
+ $lhl: #ECEAE9; // Light highlight
16
+ $lt2: #8C8A89; // Light bg text secondary
17
+ $lt1: #4C4A49; // Light bg text primary
18
+
19
+ $red: #B95846; // Red
20
+ $ora: #A87226; // Orange
21
+ $yel: #A89641; // Yellow
22
+ $gre: #669824; // Green
23
+
24
+ $cya: #48A597; // Cyan
25
+ $blu: #3D8CAD; // Blue
26
+ $vio: #9166AB; // Violet
27
+ $mag: #BB7EAA; // Magenta
28
+
29
+ // Colour order
30
+
31
+ $primary1: $vio;
32
+ $primary2: $red;
33
+ $primary3: $cya;
34
+
35
+ $secondary1: $blu;
36
+ $secondary2: $ora;
37
+
38
+ $tertiary1: $gre;
39
+ $tertiary2: $yel;
40
+ $tertiary3: $mag;
41
+
42
+ // Base defaults
43
+
44
+ $bg: $lbg;
45
+ $text1: $lt1;
46
+ $text2: $lt2;
47
+ $subheading: $red;
48
+ $section-heading: $ora;
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: Vin
3
+ Author: Protesilaos Stavrou (https://protesilaos.com)
4
+ Theme URL: https://protesilaos.com/vin
5
+ */
6
+
7
+ // Colour scheme
8
+
9
+ $dbg: #101D04; // Dark background
10
+ $dhl: #202D14; // Dark highlight
11
+ $dt2: #606D54; // Dark bg text secondary
12
+ $dt1: #B0BDA4; // Dark bg text primary
13
+
14
+ $lbg: #EFFDD4; // Light background
15
+ $lhl: #DFEDC4; // Light highlight
16
+ $lt2: #7F8D64; // Light bg text secondary
17
+ $lt1: #3F4D24; // Light bg text primary
18
+
19
+ $red: #A3415C; // Red
20
+ $ora: #8D522D; // Orange
21
+ $yel: #7D851D; // Yellow
22
+ $gre: #487D14; // Green
23
+
24
+ $cya: #13865A; // Cyan
25
+ $blu: #5A5DA8; // Blue
26
+ $vio: #8858A5; // Violet
27
+ $mag: #AC587A; // Magenta
28
+
29
+ // Colour order
30
+
31
+ $primary1: $gre;
32
+ $primary2: $vio;
33
+ $primary3: $red;
34
+
35
+ $secondary1: $mag;
36
+ $secondary2: $cya;
37
+
38
+ $tertiary1: $blu;
39
+ $tertiary2: $ora;
40
+ $tertiary3: $yel;
41
+
42
+ // Base defaults
43
+
44
+ $bg: $lbg;
45
+ $text1: $lt1;
46
+ $text2: $lt2;
47
+ $subheading: $gre;
48
+ $section-heading: $cya;
49
+ $link: $vio;
50
+ $link-alt: $mag;
51
+ $inline-code: $ora;
52
+
53
+ // Syntax defaults
54
+
55
+ $t1: $dt1;
56
+ $t2: $dt2;
57
+ $background: $dbg;
58
+ $highlight: $dhl;
@@ -0,0 +1,2 @@
1
+ theme: '' # Defaults to Gaia if left empty or contains errors
2
+ subtitle: 'true' # Must be set to true to display subtitles