better-minima 0.1.1 → 0.1.2
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 +4 -4
- data/LICENSE.txt +21 -21
- data/README.md +167 -34
- data/_includes/custom-head.html +6 -6
- data/_includes/disqus_comments.html +20 -20
- data/_includes/footer.html +28 -28
- data/_includes/google-analytics.html +9 -9
- data/_includes/head.html +14 -14
- data/_includes/header.html +31 -31
- data/_includes/landing-hero.html +12 -12
- data/_includes/landing.html +4 -4
- data/_includes/social.html +21 -21
- data/_layouts/default.html +10 -10
- data/_layouts/home.html +76 -76
- data/_layouts/html_scaffold.html +13 -13
- data/_layouts/page.html +14 -14
- data/_layouts/post.html +38 -38
- data/_sass/minima/_base.scss +291 -291
- data/_sass/minima/_layout.scss +382 -381
- data/_sass/minima/custom-styles.scss +2 -2
- data/_sass/minima/custom-variables.scss +1 -1
- data/_sass/minima/initialize.scss +50 -50
- data/_sass/minima/skins/classic.scss +91 -91
- data/_sass/minima/skins/dark.scss +95 -95
- data/_sass/minima/skins/solarized-dark.scss +4 -4
- data/_sass/minima/skins/solarized.scss +140 -140
- data/assets/better-minima-social-icons.svg +51 -51
- data/assets/css/style.scss +7 -7
- data/assets/img/posts/dirtycow.jpg +0 -0
- data/assets/img/posts/shellshock.jpg +0 -0
- metadata +3 -3
@@ -1,2 +1,2 @@
|
|
1
|
-
// Placeholder to allow defining custom styles that override everything else.
|
2
|
-
// (Use `_sass/minima/custom-variables.scss` to override variable defaults)
|
1
|
+
// Placeholder to allow defining custom styles that override everything else.
|
2
|
+
// (Use `_sass/minima/custom-variables.scss` to override variable defaults)
|
@@ -1 +1 @@
|
|
1
|
-
// Placeholder to allow overriding predefined variables smoothly.
|
1
|
+
// Placeholder to allow overriding predefined variables smoothly.
|
@@ -1,50 +1,50 @@
|
|
1
|
-
@charset "utf-8";
|
2
|
-
|
3
|
-
// Define defaults for each variable.
|
4
|
-
|
5
|
-
$base-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Segoe UI Symbol", "Segoe UI Emoji", "Apple Color Emoji", Roboto, Helvetica, Arial, sans-serif !default;
|
6
|
-
$code-font-family: "Menlo", "Inconsolata", "Consolas", "Roboto Mono", "Ubuntu Mono", "Liberation Mono", "Courier New", monospace;
|
7
|
-
$base-font-size: 17px !default;
|
8
|
-
$base-font-weight: 400 !default;
|
9
|
-
$small-font-size: $base-font-size * 0.875 !default;
|
10
|
-
$base-line-height: 1.5 !default;
|
11
|
-
|
12
|
-
$spacing-unit: 30px !default;
|
13
|
-
|
14
|
-
$table-text-align: left !default;
|
15
|
-
|
16
|
-
// Width of the content area
|
17
|
-
$content-width: 800px !default;
|
18
|
-
|
19
|
-
$on-palm: 600px !default;
|
20
|
-
$on-laptop: 800px !default;
|
21
|
-
|
22
|
-
$on-medium: $on-palm !default;
|
23
|
-
$on-large: $on-laptop !default;
|
24
|
-
|
25
|
-
// Use media queries like this:
|
26
|
-
// @include media-query($on-palm) {
|
27
|
-
// .wrapper {
|
28
|
-
// padding-right: $spacing-unit / 2;
|
29
|
-
// padding-left: $spacing-unit / 2;
|
30
|
-
// }
|
31
|
-
// }
|
32
|
-
// Notice the following mixin uses max-width, in a deprecated, desktop-first
|
33
|
-
// approach, whereas media queries used elsewhere now use min-width.
|
34
|
-
@mixin media-query($device) {
|
35
|
-
@media screen and (max-width: $device) {
|
36
|
-
@content;
|
37
|
-
}
|
38
|
-
}
|
39
|
-
|
40
|
-
@mixin relative-font-size($ratio) {
|
41
|
-
font-size: #{$ratio}rem;
|
42
|
-
}
|
43
|
-
|
44
|
-
// Import pre-styling-overrides hook and style-partials.
|
45
|
-
@import
|
46
|
-
"minima/custom-variables", // Hook to override predefined variables.
|
47
|
-
"minima/base", // Defines element resets.
|
48
|
-
"minima/layout", // Defines structure and style based on CSS selectors.
|
49
|
-
"minima/custom-styles" // Hook to override existing styles.
|
50
|
-
;
|
1
|
+
@charset "utf-8";
|
2
|
+
|
3
|
+
// Define defaults for each variable.
|
4
|
+
|
5
|
+
$base-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Segoe UI Symbol", "Segoe UI Emoji", "Apple Color Emoji", Roboto, Helvetica, Arial, sans-serif !default;
|
6
|
+
$code-font-family: "Menlo", "Inconsolata", "Consolas", "Roboto Mono", "Ubuntu Mono", "Liberation Mono", "Courier New", monospace;
|
7
|
+
$base-font-size: 17px !default;
|
8
|
+
$base-font-weight: 400 !default;
|
9
|
+
$small-font-size: $base-font-size * 0.875 !default;
|
10
|
+
$base-line-height: 1.5 !default;
|
11
|
+
|
12
|
+
$spacing-unit: 30px !default;
|
13
|
+
|
14
|
+
$table-text-align: left !default;
|
15
|
+
|
16
|
+
// Width of the content area
|
17
|
+
$content-width: 800px !default;
|
18
|
+
|
19
|
+
$on-palm: 600px !default;
|
20
|
+
$on-laptop: 800px !default;
|
21
|
+
|
22
|
+
$on-medium: $on-palm !default;
|
23
|
+
$on-large: $on-laptop !default;
|
24
|
+
|
25
|
+
// Use media queries like this:
|
26
|
+
// @include media-query($on-palm) {
|
27
|
+
// .wrapper {
|
28
|
+
// padding-right: $spacing-unit / 2;
|
29
|
+
// padding-left: $spacing-unit / 2;
|
30
|
+
// }
|
31
|
+
// }
|
32
|
+
// Notice the following mixin uses max-width, in a deprecated, desktop-first
|
33
|
+
// approach, whereas media queries used elsewhere now use min-width.
|
34
|
+
@mixin media-query($device) {
|
35
|
+
@media screen and (max-width: $device) {
|
36
|
+
@content;
|
37
|
+
}
|
38
|
+
}
|
39
|
+
|
40
|
+
@mixin relative-font-size($ratio) {
|
41
|
+
font-size: #{$ratio}rem;
|
42
|
+
}
|
43
|
+
|
44
|
+
// Import pre-styling-overrides hook and style-partials.
|
45
|
+
@import
|
46
|
+
"minima/custom-variables", // Hook to override predefined variables.
|
47
|
+
"minima/base", // Defines element resets.
|
48
|
+
"minima/layout", // Defines structure and style based on CSS selectors.
|
49
|
+
"minima/custom-styles" // Hook to override existing styles.
|
50
|
+
;
|
@@ -1,91 +1,91 @@
|
|
1
|
-
@charset "utf-8";
|
2
|
-
|
3
|
-
$brand-color: #828282 !default;
|
4
|
-
$brand-color-light: lighten($brand-color, 40%) !default;
|
5
|
-
$brand-color-dark: darken($brand-color, 25%) !default;
|
6
|
-
|
7
|
-
$site-title-color: $brand-color-dark !default;
|
8
|
-
|
9
|
-
$text-color: #111111 !default;
|
10
|
-
$background-color: #fdfdfd !default;
|
11
|
-
$code-background-color: #eeeeff !default;
|
12
|
-
|
13
|
-
$link-base-color: #2a7ae2 !default;
|
14
|
-
$link-visited-color: darken($link-base-color, 15%) !default;
|
15
|
-
$link-hover-color: $text-color !default;
|
16
|
-
|
17
|
-
$border-color-01: $brand-color-light !default;
|
18
|
-
$border-color-02: lighten($brand-color, 35%) !default;
|
19
|
-
$border-color-03: $brand-color-dark !default;
|
20
|
-
|
21
|
-
$table-text-color: lighten($text-color, 18%) !default;
|
22
|
-
$table-zebra-color: lighten($brand-color, 46%) !default;
|
23
|
-
$table-header-bg-color: lighten($brand-color, 43%) !default;
|
24
|
-
$table-header-border: lighten($brand-color, 37%) !default;
|
25
|
-
$table-border-color: $border-color-01 !default;
|
26
|
-
|
27
|
-
|
28
|
-
// Syntax highlighting styles should be adjusted appropriately for every "skin"
|
29
|
-
// ----------------------------------------------------------------------------
|
30
|
-
|
31
|
-
.highlight {
|
32
|
-
.c { color: #998; font-style: italic } // Comment
|
33
|
-
.err { color: #a61717; background-color: #e3d2d2 } // Error
|
34
|
-
.k { font-weight: bold } // Keyword
|
35
|
-
.o { font-weight: bold } // Operator
|
36
|
-
.cm { color: #998; font-style: italic } // Comment.Multiline
|
37
|
-
.cp { color: #999; font-weight: bold } // Comment.Preproc
|
38
|
-
.c1 { color: #998; font-style: italic } // Comment.Single
|
39
|
-
.cs { color: #999; font-weight: bold; font-style: italic } // Comment.Special
|
40
|
-
.gd { color: #000; background-color: #fdd } // Generic.Deleted
|
41
|
-
.gd .x { color: #000; background-color: #faa } // Generic.Deleted.Specific
|
42
|
-
.ge { font-style: italic } // Generic.Emph
|
43
|
-
.gr { color: #a00 } // Generic.Error
|
44
|
-
.gh { color: #999 } // Generic.Heading
|
45
|
-
.gi { color: #000; background-color: #dfd } // Generic.Inserted
|
46
|
-
.gi .x { color: #000; background-color: #afa } // Generic.Inserted.Specific
|
47
|
-
.go { color: #888 } // Generic.Output
|
48
|
-
.gp { color: #555 } // Generic.Prompt
|
49
|
-
.gs { font-weight: bold } // Generic.Strong
|
50
|
-
.gu { color: #aaa } // Generic.Subheading
|
51
|
-
.gt { color: #a00 } // Generic.Traceback
|
52
|
-
.kc { font-weight: bold } // Keyword.Constant
|
53
|
-
.kd { font-weight: bold } // Keyword.Declaration
|
54
|
-
.kp { font-weight: bold } // Keyword.Pseudo
|
55
|
-
.kr { font-weight: bold } // Keyword.Reserved
|
56
|
-
.kt { color: #458; font-weight: bold } // Keyword.Type
|
57
|
-
.m { color: #099 } // Literal.Number
|
58
|
-
.s { color: #d14 } // Literal.String
|
59
|
-
.na { color: #008080 } // Name.Attribute
|
60
|
-
.nb { color: #0086B3 } // Name.Builtin
|
61
|
-
.nc { color: #458; font-weight: bold } // Name.Class
|
62
|
-
.no { color: #008080 } // Name.Constant
|
63
|
-
.ni { color: #800080 } // Name.Entity
|
64
|
-
.ne { color: #900; font-weight: bold } // Name.Exception
|
65
|
-
.nf { color: #900; font-weight: bold } // Name.Function
|
66
|
-
.nn { color: #555 } // Name.Namespace
|
67
|
-
.nt { color: #000080 } // Name.Tag
|
68
|
-
.nv { color: #008080 } // Name.Variable
|
69
|
-
.ow { font-weight: bold } // Operator.Word
|
70
|
-
.w { color: #bbb } // Text.Whitespace
|
71
|
-
.mf { color: #099 } // Literal.Number.Float
|
72
|
-
.mh { color: #099 } // Literal.Number.Hex
|
73
|
-
.mi { color: #099 } // Literal.Number.Integer
|
74
|
-
.mo { color: #099 } // Literal.Number.Oct
|
75
|
-
.sb { color: #d14 } // Literal.String.Backtick
|
76
|
-
.sc { color: #d14 } // Literal.String.Char
|
77
|
-
.sd { color: #d14 } // Literal.String.Doc
|
78
|
-
.s2 { color: #d14 } // Literal.String.Double
|
79
|
-
.se { color: #d14 } // Literal.String.Escape
|
80
|
-
.sh { color: #d14 } // Literal.String.Heredoc
|
81
|
-
.si { color: #d14 } // Literal.String.Interpol
|
82
|
-
.sx { color: #d14 } // Literal.String.Other
|
83
|
-
.sr { color: #009926 } // Literal.String.Regex
|
84
|
-
.s1 { color: #d14 } // Literal.String.Single
|
85
|
-
.ss { color: #990073 } // Literal.String.Symbol
|
86
|
-
.bp { color: #999 } // Name.Builtin.Pseudo
|
87
|
-
.vc { color: #008080 } // Name.Variable.Class
|
88
|
-
.vg { color: #008080 } // Name.Variable.Global
|
89
|
-
.vi { color: #008080 } // Name.Variable.Instance
|
90
|
-
.il { color: #099 } // Literal.Number.Integer.Long
|
91
|
-
}
|
1
|
+
@charset "utf-8";
|
2
|
+
|
3
|
+
$brand-color: #828282 !default;
|
4
|
+
$brand-color-light: lighten($brand-color, 40%) !default;
|
5
|
+
$brand-color-dark: darken($brand-color, 25%) !default;
|
6
|
+
|
7
|
+
$site-title-color: $brand-color-dark !default;
|
8
|
+
|
9
|
+
$text-color: #111111 !default;
|
10
|
+
$background-color: #fdfdfd !default;
|
11
|
+
$code-background-color: #eeeeff !default;
|
12
|
+
|
13
|
+
$link-base-color: #2a7ae2 !default;
|
14
|
+
$link-visited-color: darken($link-base-color, 15%) !default;
|
15
|
+
$link-hover-color: $text-color !default;
|
16
|
+
|
17
|
+
$border-color-01: $brand-color-light !default;
|
18
|
+
$border-color-02: lighten($brand-color, 35%) !default;
|
19
|
+
$border-color-03: $brand-color-dark !default;
|
20
|
+
|
21
|
+
$table-text-color: lighten($text-color, 18%) !default;
|
22
|
+
$table-zebra-color: lighten($brand-color, 46%) !default;
|
23
|
+
$table-header-bg-color: lighten($brand-color, 43%) !default;
|
24
|
+
$table-header-border: lighten($brand-color, 37%) !default;
|
25
|
+
$table-border-color: $border-color-01 !default;
|
26
|
+
|
27
|
+
|
28
|
+
// Syntax highlighting styles should be adjusted appropriately for every "skin"
|
29
|
+
// ----------------------------------------------------------------------------
|
30
|
+
|
31
|
+
.highlight {
|
32
|
+
.c { color: #998; font-style: italic } // Comment
|
33
|
+
.err { color: #a61717; background-color: #e3d2d2 } // Error
|
34
|
+
.k { font-weight: bold } // Keyword
|
35
|
+
.o { font-weight: bold } // Operator
|
36
|
+
.cm { color: #998; font-style: italic } // Comment.Multiline
|
37
|
+
.cp { color: #999; font-weight: bold } // Comment.Preproc
|
38
|
+
.c1 { color: #998; font-style: italic } // Comment.Single
|
39
|
+
.cs { color: #999; font-weight: bold; font-style: italic } // Comment.Special
|
40
|
+
.gd { color: #000; background-color: #fdd } // Generic.Deleted
|
41
|
+
.gd .x { color: #000; background-color: #faa } // Generic.Deleted.Specific
|
42
|
+
.ge { font-style: italic } // Generic.Emph
|
43
|
+
.gr { color: #a00 } // Generic.Error
|
44
|
+
.gh { color: #999 } // Generic.Heading
|
45
|
+
.gi { color: #000; background-color: #dfd } // Generic.Inserted
|
46
|
+
.gi .x { color: #000; background-color: #afa } // Generic.Inserted.Specific
|
47
|
+
.go { color: #888 } // Generic.Output
|
48
|
+
.gp { color: #555 } // Generic.Prompt
|
49
|
+
.gs { font-weight: bold } // Generic.Strong
|
50
|
+
.gu { color: #aaa } // Generic.Subheading
|
51
|
+
.gt { color: #a00 } // Generic.Traceback
|
52
|
+
.kc { font-weight: bold } // Keyword.Constant
|
53
|
+
.kd { font-weight: bold } // Keyword.Declaration
|
54
|
+
.kp { font-weight: bold } // Keyword.Pseudo
|
55
|
+
.kr { font-weight: bold } // Keyword.Reserved
|
56
|
+
.kt { color: #458; font-weight: bold } // Keyword.Type
|
57
|
+
.m { color: #099 } // Literal.Number
|
58
|
+
.s { color: #d14 } // Literal.String
|
59
|
+
.na { color: #008080 } // Name.Attribute
|
60
|
+
.nb { color: #0086B3 } // Name.Builtin
|
61
|
+
.nc { color: #458; font-weight: bold } // Name.Class
|
62
|
+
.no { color: #008080 } // Name.Constant
|
63
|
+
.ni { color: #800080 } // Name.Entity
|
64
|
+
.ne { color: #900; font-weight: bold } // Name.Exception
|
65
|
+
.nf { color: #900; font-weight: bold } // Name.Function
|
66
|
+
.nn { color: #555 } // Name.Namespace
|
67
|
+
.nt { color: #000080 } // Name.Tag
|
68
|
+
.nv { color: #008080 } // Name.Variable
|
69
|
+
.ow { font-weight: bold } // Operator.Word
|
70
|
+
.w { color: #bbb } // Text.Whitespace
|
71
|
+
.mf { color: #099 } // Literal.Number.Float
|
72
|
+
.mh { color: #099 } // Literal.Number.Hex
|
73
|
+
.mi { color: #099 } // Literal.Number.Integer
|
74
|
+
.mo { color: #099 } // Literal.Number.Oct
|
75
|
+
.sb { color: #d14 } // Literal.String.Backtick
|
76
|
+
.sc { color: #d14 } // Literal.String.Char
|
77
|
+
.sd { color: #d14 } // Literal.String.Doc
|
78
|
+
.s2 { color: #d14 } // Literal.String.Double
|
79
|
+
.se { color: #d14 } // Literal.String.Escape
|
80
|
+
.sh { color: #d14 } // Literal.String.Heredoc
|
81
|
+
.si { color: #d14 } // Literal.String.Interpol
|
82
|
+
.sx { color: #d14 } // Literal.String.Other
|
83
|
+
.sr { color: #009926 } // Literal.String.Regex
|
84
|
+
.s1 { color: #d14 } // Literal.String.Single
|
85
|
+
.ss { color: #990073 } // Literal.String.Symbol
|
86
|
+
.bp { color: #999 } // Name.Builtin.Pseudo
|
87
|
+
.vc { color: #008080 } // Name.Variable.Class
|
88
|
+
.vg { color: #008080 } // Name.Variable.Global
|
89
|
+
.vi { color: #008080 } // Name.Variable.Instance
|
90
|
+
.il { color: #099 } // Literal.Number.Integer.Long
|
91
|
+
}
|
@@ -1,95 +1,95 @@
|
|
1
|
-
@charset "utf-8";
|
2
|
-
|
3
|
-
$brand-color: #999999 !default;
|
4
|
-
$brand-color-light: lighten($brand-color, 5%) !default;
|
5
|
-
$brand-color-dark: darken($brand-color, 35%) !default;
|
6
|
-
|
7
|
-
$site-title-color: $brand-color-light !default;
|
8
|
-
|
9
|
-
$text-color: #bbbbbb !default;
|
10
|
-
$background-color: #181818 !default;
|
11
|
-
$code-background-color: #212121 !default;
|
12
|
-
|
13
|
-
$link-base-color: #79b8ff !default;
|
14
|
-
$link-visited-color: $link-base-color !default;
|
15
|
-
$link-hover-color: $text-color !default;
|
16
|
-
|
17
|
-
$border-color-01: $brand-color-dark !default;
|
18
|
-
$border-color-02: $brand-color-light !default;
|
19
|
-
$border-color-03: $brand-color !default;
|
20
|
-
|
21
|
-
$table-text-color: $text-color !default;
|
22
|
-
$table-zebra-color: lighten($background-color, 4%) !default;
|
23
|
-
$table-header-bg-color: lighten($background-color, 10%) !default;
|
24
|
-
$table-header-border: lighten($background-color, 21%) !default;
|
25
|
-
$table-border-color: $border-color-01 !default;
|
26
|
-
|
27
|
-
|
28
|
-
// Syntax highlighting styles should be adjusted appropriately for every "skin"
|
29
|
-
// List of tokens: https://github.com/rouge-ruby/rouge/wiki/List-of-tokens
|
30
|
-
// Some colors come from Material Theme Darker:
|
31
|
-
// https://github.com/material-theme/vsc-material-theme/blob/master/scripts/generator/settings/specific/darker-hc.ts
|
32
|
-
// https://github.com/material-theme/vsc-material-theme/blob/master/scripts/generator/color-set.ts
|
33
|
-
// ----------------------------------------------------------------------------
|
34
|
-
|
35
|
-
.highlight {
|
36
|
-
.c { color: #545454; font-style: italic } // Comment
|
37
|
-
.err { color: #f07178; background-color: #e3d2d2 } // Error
|
38
|
-
.k { color: #89DDFF; font-weight: bold } // Keyword
|
39
|
-
.o { font-weight: bold } // Operator
|
40
|
-
.cm { color: #545454; font-style: italic } // Comment.Multiline
|
41
|
-
.cp { color: #545454; font-weight: bold } // Comment.Preproc
|
42
|
-
.c1 { color: #545454; font-style: italic } // Comment.Single
|
43
|
-
.cs { color: #545454; font-weight: bold; font-style: italic } // Comment.Special
|
44
|
-
.gd { color: #000; background-color: #fdd } // Generic.Deleted
|
45
|
-
.gd .x { color: #000; background-color: #faa } // Generic.Deleted.Specific
|
46
|
-
.ge { font-style: italic } // Generic.Emph
|
47
|
-
.gr { color: #f07178 } // Generic.Error
|
48
|
-
.gh { color: #999 } // Generic.Heading
|
49
|
-
.gi { color: #000; background-color: #dfd } // Generic.Inserted
|
50
|
-
.gi .x { color: #000; background-color: #afa } // Generic.Inserted.Specific
|
51
|
-
.go { color: #888 } // Generic.Output
|
52
|
-
.gp { color: #555 } // Generic.Prompt
|
53
|
-
.gs { font-weight: bold } // Generic.Strong
|
54
|
-
.gu { color: #aaa } // Generic.Subheading
|
55
|
-
.gt { color: #f07178 } // Generic.Traceback
|
56
|
-
.kc { font-weight: bold } // Keyword.Constant
|
57
|
-
.kd { font-weight: bold } // Keyword.Declaration
|
58
|
-
.kp { font-weight: bold } // Keyword.Pseudo
|
59
|
-
.kr { font-weight: bold } // Keyword.Reserved
|
60
|
-
.kt { color: #FFCB6B; font-weight: bold } // Keyword.Type
|
61
|
-
.m { color: #F78C6C } // Literal.Number
|
62
|
-
.s { color: #C3E88D } // Literal.String
|
63
|
-
.na { color: #008080 } // Name.Attribute
|
64
|
-
.nb { color: #EEFFFF } // Name.Builtin
|
65
|
-
.nc { color: #FFCB6B; font-weight: bold } // Name.Class
|
66
|
-
.no { color: #008080 } // Name.Constant
|
67
|
-
.ni { color: #800080 } // Name.Entity
|
68
|
-
.ne { color: #900; font-weight: bold } // Name.Exception
|
69
|
-
.nf { color: #82AAFF; font-weight: bold } // Name.Function
|
70
|
-
.nn { color: #555 } // Name.Namespace
|
71
|
-
.nt { color: #FFCB6B } // Name.Tag
|
72
|
-
.nv { color: #EEFFFF } // Name.Variable
|
73
|
-
.ow { font-weight: bold } // Operator.Word
|
74
|
-
.w { color: #EEFFFF } // Text.Whitespace
|
75
|
-
.mf { color: #F78C6C } // Literal.Number.Float
|
76
|
-
.mh { color: #F78C6C } // Literal.Number.Hex
|
77
|
-
.mi { color: #F78C6C } // Literal.Number.Integer
|
78
|
-
.mo { color: #F78C6C } // Literal.Number.Oct
|
79
|
-
.sb { color: #C3E88D } // Literal.String.Backtick
|
80
|
-
.sc { color: #C3E88D } // Literal.String.Char
|
81
|
-
.sd { color: #C3E88D } // Literal.String.Doc
|
82
|
-
.s2 { color: #C3E88D } // Literal.String.Double
|
83
|
-
.se { color: #EEFFFF } // Literal.String.Escape
|
84
|
-
.sh { color: #C3E88D } // Literal.String.Heredoc
|
85
|
-
.si { color: #C3E88D } // Literal.String.Interpol
|
86
|
-
.sx { color: #C3E88D } // Literal.String.Other
|
87
|
-
.sr { color: #C3E88D } // Literal.String.Regex
|
88
|
-
.s1 { color: #C3E88D } // Literal.String.Single
|
89
|
-
.ss { color: #C3E88D } // Literal.String.Symbol
|
90
|
-
.bp { color: #999 } // Name.Builtin.Pseudo
|
91
|
-
.vc { color: #FFCB6B } // Name.Variable.Class
|
92
|
-
.vg { color: #EEFFFF } // Name.Variable.Global
|
93
|
-
.vi { color: #EEFFFF } // Name.Variable.Instance
|
94
|
-
.il { color: #F78C6C } // Literal.Number.Integer.Long
|
95
|
-
}
|
1
|
+
@charset "utf-8";
|
2
|
+
|
3
|
+
$brand-color: #999999 !default;
|
4
|
+
$brand-color-light: lighten($brand-color, 5%) !default;
|
5
|
+
$brand-color-dark: darken($brand-color, 35%) !default;
|
6
|
+
|
7
|
+
$site-title-color: $brand-color-light !default;
|
8
|
+
|
9
|
+
$text-color: #bbbbbb !default;
|
10
|
+
$background-color: #181818 !default;
|
11
|
+
$code-background-color: #212121 !default;
|
12
|
+
|
13
|
+
$link-base-color: #79b8ff !default;
|
14
|
+
$link-visited-color: $link-base-color !default;
|
15
|
+
$link-hover-color: $text-color !default;
|
16
|
+
|
17
|
+
$border-color-01: $brand-color-dark !default;
|
18
|
+
$border-color-02: $brand-color-light !default;
|
19
|
+
$border-color-03: $brand-color !default;
|
20
|
+
|
21
|
+
$table-text-color: $text-color !default;
|
22
|
+
$table-zebra-color: lighten($background-color, 4%) !default;
|
23
|
+
$table-header-bg-color: lighten($background-color, 10%) !default;
|
24
|
+
$table-header-border: lighten($background-color, 21%) !default;
|
25
|
+
$table-border-color: $border-color-01 !default;
|
26
|
+
|
27
|
+
|
28
|
+
// Syntax highlighting styles should be adjusted appropriately for every "skin"
|
29
|
+
// List of tokens: https://github.com/rouge-ruby/rouge/wiki/List-of-tokens
|
30
|
+
// Some colors come from Material Theme Darker:
|
31
|
+
// https://github.com/material-theme/vsc-material-theme/blob/master/scripts/generator/settings/specific/darker-hc.ts
|
32
|
+
// https://github.com/material-theme/vsc-material-theme/blob/master/scripts/generator/color-set.ts
|
33
|
+
// ----------------------------------------------------------------------------
|
34
|
+
|
35
|
+
.highlight {
|
36
|
+
.c { color: #545454; font-style: italic } // Comment
|
37
|
+
.err { color: #f07178; background-color: #e3d2d2 } // Error
|
38
|
+
.k { color: #89DDFF; font-weight: bold } // Keyword
|
39
|
+
.o { font-weight: bold } // Operator
|
40
|
+
.cm { color: #545454; font-style: italic } // Comment.Multiline
|
41
|
+
.cp { color: #545454; font-weight: bold } // Comment.Preproc
|
42
|
+
.c1 { color: #545454; font-style: italic } // Comment.Single
|
43
|
+
.cs { color: #545454; font-weight: bold; font-style: italic } // Comment.Special
|
44
|
+
.gd { color: #000; background-color: #fdd } // Generic.Deleted
|
45
|
+
.gd .x { color: #000; background-color: #faa } // Generic.Deleted.Specific
|
46
|
+
.ge { font-style: italic } // Generic.Emph
|
47
|
+
.gr { color: #f07178 } // Generic.Error
|
48
|
+
.gh { color: #999 } // Generic.Heading
|
49
|
+
.gi { color: #000; background-color: #dfd } // Generic.Inserted
|
50
|
+
.gi .x { color: #000; background-color: #afa } // Generic.Inserted.Specific
|
51
|
+
.go { color: #888 } // Generic.Output
|
52
|
+
.gp { color: #555 } // Generic.Prompt
|
53
|
+
.gs { font-weight: bold } // Generic.Strong
|
54
|
+
.gu { color: #aaa } // Generic.Subheading
|
55
|
+
.gt { color: #f07178 } // Generic.Traceback
|
56
|
+
.kc { font-weight: bold } // Keyword.Constant
|
57
|
+
.kd { font-weight: bold } // Keyword.Declaration
|
58
|
+
.kp { font-weight: bold } // Keyword.Pseudo
|
59
|
+
.kr { font-weight: bold } // Keyword.Reserved
|
60
|
+
.kt { color: #FFCB6B; font-weight: bold } // Keyword.Type
|
61
|
+
.m { color: #F78C6C } // Literal.Number
|
62
|
+
.s { color: #C3E88D } // Literal.String
|
63
|
+
.na { color: #008080 } // Name.Attribute
|
64
|
+
.nb { color: #EEFFFF } // Name.Builtin
|
65
|
+
.nc { color: #FFCB6B; font-weight: bold } // Name.Class
|
66
|
+
.no { color: #008080 } // Name.Constant
|
67
|
+
.ni { color: #800080 } // Name.Entity
|
68
|
+
.ne { color: #900; font-weight: bold } // Name.Exception
|
69
|
+
.nf { color: #82AAFF; font-weight: bold } // Name.Function
|
70
|
+
.nn { color: #555 } // Name.Namespace
|
71
|
+
.nt { color: #FFCB6B } // Name.Tag
|
72
|
+
.nv { color: #EEFFFF } // Name.Variable
|
73
|
+
.ow { font-weight: bold } // Operator.Word
|
74
|
+
.w { color: #EEFFFF } // Text.Whitespace
|
75
|
+
.mf { color: #F78C6C } // Literal.Number.Float
|
76
|
+
.mh { color: #F78C6C } // Literal.Number.Hex
|
77
|
+
.mi { color: #F78C6C } // Literal.Number.Integer
|
78
|
+
.mo { color: #F78C6C } // Literal.Number.Oct
|
79
|
+
.sb { color: #C3E88D } // Literal.String.Backtick
|
80
|
+
.sc { color: #C3E88D } // Literal.String.Char
|
81
|
+
.sd { color: #C3E88D } // Literal.String.Doc
|
82
|
+
.s2 { color: #C3E88D } // Literal.String.Double
|
83
|
+
.se { color: #EEFFFF } // Literal.String.Escape
|
84
|
+
.sh { color: #C3E88D } // Literal.String.Heredoc
|
85
|
+
.si { color: #C3E88D } // Literal.String.Interpol
|
86
|
+
.sx { color: #C3E88D } // Literal.String.Other
|
87
|
+
.sr { color: #C3E88D } // Literal.String.Regex
|
88
|
+
.s1 { color: #C3E88D } // Literal.String.Single
|
89
|
+
.ss { color: #C3E88D } // Literal.String.Symbol
|
90
|
+
.bp { color: #999 } // Name.Builtin.Pseudo
|
91
|
+
.vc { color: #FFCB6B } // Name.Variable.Class
|
92
|
+
.vg { color: #EEFFFF } // Name.Variable.Global
|
93
|
+
.vi { color: #EEFFFF } // Name.Variable.Instance
|
94
|
+
.il { color: #F78C6C } // Literal.Number.Integer.Long
|
95
|
+
}
|
@@ -1,4 +1,4 @@
|
|
1
|
-
@charset "utf-8";
|
2
|
-
|
3
|
-
$sol-is-dark: true;
|
4
|
-
@import "minima/skins/solarized";
|
1
|
+
@charset "utf-8";
|
2
|
+
|
3
|
+
$sol-is-dark: true;
|
4
|
+
@import "minima/skins/solarized";
|