jekyll-theme-console 0.3.5 → 0.3.10

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d92b1facfa402ca80aaf679a7eb9196ad7f356ccf90042d1677284bf25079360
4
- data.tar.gz: 51b068024f8ef102c21c26db38e9a75f303e5a968179a44f3fa24eb96ccc19f1
3
+ metadata.gz: 337f4119898daea23dce61d78435590a178f0b4decaffc02718a35eca79f5d9e
4
+ data.tar.gz: b1632a0d1c75eeea2848e89b0eead751a19af474965af8981ab6c9a81e77903e
5
5
  SHA512:
6
- metadata.gz: fff3ef0b6903503ce586fa477e78342a904ff451defb18725fee18a28ae040c5f9c03116ad8c70a7264645312f9fae8a438b09d8acf17f6fe5c801edd4831662
7
- data.tar.gz: de8a94c0cdebaabaf5c3b352cde280c58300cd3d0d5fdfdf1c917c31c2fc0214dd03628c72db79a27feb3a01274c75339baa2344ecfd846d11dae0c95f7e662e
6
+ metadata.gz: ae39442919ceb128d0b8b96eff88d2da5aa82fa626477fec11687ed37cffc4c0d4583840761a0770c94adb1df35b29608f8800f6222157106abffba68bd7ec6f
7
+ data.tar.gz: eb8513e19eae885a1aecb0ba1cdb06a42350e525725e95fd7846b33ec9f63ab2610ff84563487354604752a0dbe4f03716f4fef12f0ff8eeaa01e50f41b94844
data/README.md CHANGED
@@ -6,54 +6,102 @@ A jekyll theme with inspiration from linux consoles for hackers, developers and
6
6
 
7
7
  ## Demo
8
8
 
9
- [https://b2a3e8.github.io/jekyll-theme-console/](https://b2a3e8.github.io/jekyll-theme-console/)
9
+ [dark style](https://b2a3e8.github.io/jekyll-theme-console-demo-dark/) ([source code](https://github.com/b2a3e8/jekyll-theme-console-demo-dark)):
10
10
 
11
- source code: [https://github.com/b2a3e8/jekyll-theme-console/tree/gh-pages](https://github.com/b2a3e8/jekyll-theme-console/tree/gh-pages)
11
+ [<img src="https://raw.githubusercontent.com/b2a3e8/jekyll-theme-console/master/screenshot-dark.png" width="350" title="Screenshot">](https://b2a3e8.github.io/jekyll-theme-console-demo-dark/)
12
+
13
+
14
+ [light style](https://b2a3e8.github.io/jekyll-theme-console-demo-light/) ([source code](https://github.com/b2a3e8/jekyll-theme-console-demo-light)):
15
+
16
+ [<img src="https://raw.githubusercontent.com/b2a3e8/jekyll-theme-console/master/screenshot-light.png" width="350" title="Screenshot">](https://b2a3e8.github.io/jekyll-theme-console-demo-light/)
17
+
18
+
19
+ [hacker style](https://b2a3e8.github.io/jekyll-theme-console-demo-hacker/) ([source code](https://github.com/b2a3e8/jekyll-theme-console-demo-hacker)):
20
+
21
+ [<img src="https://raw.githubusercontent.com/b2a3e8/jekyll-theme-console/master/screenshot-hacker.png" width="350" title="Screenshot">](https://b2a3e8.github.io/jekyll-theme-console-demo-hacker/)
12
22
 
13
23
 
14
24
  ## Installation
15
25
 
16
- Add this line to your Jekyll site's `Gemfile`:
26
+ First, follow the steps in [this Quickstart Guide](https://jekyllrb.com/docs/) if you're starting with Jekyll from scratch. Skip this if you already have an existing jekyll project.
17
27
 
18
- ```ruby
19
- gem "jekyll-theme-console"
20
- ```
28
+ **_You can also use the [demo site's source code](https://b2a3e8.github.io/jekyll-theme-console-demo-dark/) as template for an easy start._**
21
29
 
22
- And add this line to your Jekyll site's `_config.yml`:
30
+ ### Remote theme method for GitHub Pages
23
31
 
24
- ```yaml
25
- theme: jekyll-theme-console
26
- ```
32
+ Use this method for sites hosted with GitHub Pages only. To install:
33
+
34
+ 1. Set `remote_theme` in your project's Jekyll `_config.yml` file:
35
+
36
+ ```yaml
37
+ remote_theme: b2a3e8/jekyll-theme-console
38
+ ```
27
39
 
28
- And then execute:
40
+ ### Gem-based method
29
41
 
30
- $ bundle
42
+ With Gem-based themes, directories such as the `assets`, `_layouts`, `_includes`, and `_sass` are stored in the theme’s gem, hidden from your immediate view. Yet all of the necessary directories will be read and processed during Jekyll’s build process.
31
43
 
32
- Or install it yourself as:
44
+ This allows for easier installation and updating as you don't have to manage any of the theme files. To install:
33
45
 
34
- $ gem install jekyll-theme-console
46
+ 1. Add this line to your Jekyll site's `Gemfile`:
47
+
48
+ ```ruby
49
+ gem "jekyll-theme-console"
50
+ ```
51
+
52
+ 2. Fetch and update bundled gems by running the following [Bundler](http://bundler.io/) command:
53
+
54
+ ```bash
55
+ bundle
56
+ ```
57
+
58
+ 3. Set `theme` in your project's Jekyll `_config.yml` file:
59
+
60
+ ```yaml
61
+ theme: jekyll-theme-console
62
+ ```
63
+
64
+ To update the theme run `bundle update`.
35
65
 
36
66
  ## Usage
37
67
 
68
+ ### _config.yaml
69
+
38
70
  In addition to jekyll's default configuration options, you can provide:
39
71
  - `header_pages` to specify which pages should be displayed in navbar
40
72
  - `footer` string, which will be inserted on the end of the page (doesn't support markup, but html)
41
- - `google_analytics` tracking id (tracking will be enabled only in production environments)
42
- - `listen_for_clients_preferred_style` boolean, used to allow users to choose theme based on their preferences (mostly affected by OS dark or light theme, details see https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-color-scheme)
73
+ - `google_analytics` tracking id (tracking will be enabled only in production environments and only if you set this option, no Google Analytics code will be loaded if you don't set this option)
74
+ - `listen_for_clients_preferred_style` boolean, used to allow users to choose light or dark style based on their preferences (mostly affected by OS dark or light theme, details see https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-color-scheme)
75
+ - `style` to specify which predefined style (colors) should be used
43
76
 
44
77
  ```yaml
45
78
  header_pages:
46
79
  - index.md
47
80
  - about.md
48
81
 
49
- style: dark # dark (default) or light
50
- listen_for_clients_preferred_style: true # true or false (default)
82
+ style: dark # dark (default), light or hacker
83
+ listen_for_clients_preferred_style: true # false (default) or true
51
84
 
52
85
  footer: 'follow us on <a href="https://twitter.com/xxx">twitter</a>'
53
86
 
54
87
  google_analytics: UA-NNNNNNNN-N
55
88
  ```
56
89
 
90
+ ### front matter variables
91
+
92
+ Besides the predefined [front matter](https://jekyllrb.com/docs/front-matter/) variables from jekyll this theme also supports following variables:
93
+ - `title` to set a title for the page
94
+ - `lang` to specify the language, defaults to 'en'
95
+ - `robots` to control the robot meta tag ([details](http://longqian.me/2017/02/12/jekyll-robots-configuration/)) - this may be useful for example to set `NOINDEX` to tag pages
96
+
97
+ ## Customization
98
+
99
+ If you want to customize this theme, follow this steps:
100
+ 1. Fork this repository (you can use the fork as your own theme or directly as your website)
101
+ 2. Create or modify files in `_layouts` directory for html-based changes
102
+ 3. Create or modify files in `_sass` and `assets` for css-based changes
103
+ - You can change things which are used in light and dark theme (like font-size) in `_sass/base.scss`. You'll find style variables at the top.
104
+ - Style-specific definitions are in `_sass/_dark.scss` respectively in `_sass/_light.scss`. You can change things like background-color there.
57
105
 
58
106
  ## Contributing
59
107
 
@@ -2,15 +2,21 @@
2
2
  <meta charset="utf-8">
3
3
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
4
4
  <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
5
- <title>{{ site.title }}{{ page.title }}</title>
5
+ <title>{{ page.title }}</title>
6
6
  {%- seo title=false -%}
7
7
 
8
+ {% if page.robots %}
9
+ <meta name="robots" content="{{page.robots}}" />
10
+ {% endif %}
11
+
8
12
  {%- if site.listen_for_clients_preferred_style -%}
9
13
  <link rel="stylesheet" type="text/css" href="{{ "/assets/main.css" | relative_url }}">
10
14
  {%- else -%}
11
15
  {%- if site.style == 'light' -%}
12
- <link rel="stylesheet" type="text/css" href="{{ "/assets/main-light.css" | relative_url }}">
13
- {%- else -%}
16
+ <link rel="stylesheet" type="text/css" href="{{ "/assets/main-light.css" | relative_url }}">
17
+ {%- elsif site.style == 'hacker' -%}
18
+ <link rel="stylesheet" type="text/css" href="{{ "/assets/main-hacker.css" | relative_url }}">
19
+ {%- else -%}
14
20
  <link rel="stylesheet" type="text/css" href="{{ "/assets/main-dark.css" | relative_url }}">
15
21
  {%- endif -%}
16
22
  {%- endif -%}
@@ -4,7 +4,6 @@
4
4
 
5
5
  :root {
6
6
  --base-color: #DBDBDB;
7
- --primary-color: #A2FC8F;
8
7
  --border: dashed 1px rgba(219, 219, 219, 0.9);
9
8
  --selection-background: rgba(219, 219, 219, 0.99);
10
9
  --selection-text: #000;
@@ -12,4 +11,22 @@
12
11
  --text-color: var(--base-color);
13
12
  --placeholder-color: var(--base-color);
14
13
  --link-color: var(--base-color);
15
- }
14
+ --code-color-1: #aaaaaa;
15
+ --code-color-2: #ffffcc;
16
+ --code-color-3: #F00000;
17
+ --code-color-4: #F0A0A0;
18
+ --code-color-5: #b38aff;
19
+ --code-color-6: #5ba711;
20
+ --code-color-7: #e4e477;
21
+ --code-color-8: #000080;
22
+ --code-color-9: #05ca05;
23
+ --code-color-10: #888888;
24
+ --code-color-11: #555555;
25
+ --code-color-12: #800080;
26
+ --code-color-13: #00d4d4;
27
+ --code-color-14: #00c1c1;
28
+ --code-color-15: #ed9d13;
29
+ --code-color-16: #1e90ff;
30
+ --code-color-17: #800000;
31
+ --code-color-18: #bbbbbb;
32
+ }
@@ -0,0 +1,32 @@
1
+ /**
2
+ * Hacker theme variables
3
+ */
4
+
5
+ :root {
6
+ --base-color: #00ff00;
7
+ --border: dashed 1px rgba(0, 255, 0, 0.9);
8
+ --selection-background: rgba(0, 255, 0, 0.99);
9
+ --selection-text: #000;
10
+ --background-color: #000;
11
+ --text-color: var(--base-color);
12
+ --placeholder-color: var(--base-color);
13
+ --link-color: var(--base-color);
14
+ --code-color-1: #aaaaaa;
15
+ --code-color-2: #ffffcc;
16
+ --code-color-3: #F00000;
17
+ --code-color-4: #F0A0A0;
18
+ --code-color-5: #b38aff;
19
+ --code-color-6: #5ba711;
20
+ --code-color-7: #e4e477;
21
+ --code-color-8: #000080;
22
+ --code-color-9: #05ca05;
23
+ --code-color-10: #888888;
24
+ --code-color-11: #555555;
25
+ --code-color-12: #800080;
26
+ --code-color-13: #00d4d4;
27
+ --code-color-14: #00c1c1;
28
+ --code-color-15: #ed9d13;
29
+ --code-color-16: #1e90ff;
30
+ --code-color-17: #800000;
31
+ --code-color-18: #bbbbbb;
32
+ }
@@ -4,7 +4,6 @@
4
4
 
5
5
  :root {
6
6
  --base-color: #000;
7
- --primary-color: #0000EE;
8
7
  --border: dashed 1px rgba(0, 0, 0, 1);
9
8
  --selection-background: rgba(0, 0, 0, 0.99);
10
9
  --selection-text: #FFF;
@@ -12,5 +11,22 @@
12
11
  --text-color: var(--base-color);
13
12
  --placeholder-color: var(--base-color);
14
13
  --link-color: var(--base-color);
15
-
16
- }
14
+ --code-color-1: #aaaaaa;
15
+ --code-color-2: #ffffcc;
16
+ --code-color-3: #F00000;
17
+ --code-color-4: #F0A0A0;
18
+ --code-color-5: #0000aa;
19
+ --code-color-6: #4c8317;
20
+ --code-color-7: #aa0000;
21
+ --code-color-8: #000080;
22
+ --code-color-9: #00aa00;
23
+ --code-color-10: #888888;
24
+ --code-color-11: #555555;
25
+ --code-color-12: #800080;
26
+ --code-color-13: #00aaaa;
27
+ --code-color-14: #009999;
28
+ --code-color-15: #aa5500;
29
+ --code-color-16: #1e90ff;
30
+ --code-color-17: #800000;
31
+ --code-color-18: #bbbbbb;
32
+ }
@@ -19,14 +19,7 @@ h1, h2, h3, h4, h5, h6 { font-size: $base-font-size; margin: 0px; margin-top:
19
19
  p, ul, ol { margin: 0px; color: var(--text-color); }
20
20
  a { text-decoration: underline; color: var(--link-color); }
21
21
  a:hover { color: var(--background-color); background-color: var(--base-color); }
22
- .primary-text { color: var(--primary-color); }
23
22
  @media only screen and (max-device-width: 500px) { * { font-size: $mobile-font-size !important; } }
24
- /*h1:before { content: "#"; margin-right: 9px; }
25
- h2:before { content: "##"; margin-right: 9px; }
26
- h3:before { content: "###"; margin-right: 9px; }
27
- h4:before { content: "####"; margin-right: 9px; }
28
- h5:before { content: "#####"; margin-right: 9px; }
29
- h6:before { content: "######"; margin-right: 9px; }*/
30
23
 
31
24
  /**
32
25
  * Layout
@@ -77,63 +70,64 @@ textarea { vertical-align: top; }
77
70
  /**
78
71
  * Code and syntax highlighting
79
72
  */
80
- pre { background-color: var(--background-color); border: none; padding: 0px; overflow:auto; font-size: $base-font-size; color: rgba(255,255,255,0.65); line-height: 1.7 !important; }
81
- .highlight .c { color: #999988; font-style: italic } /* Comment */
82
- .highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
83
- .highlight .k { font-weight: bold } /* Keyword */
84
- .highlight .o { font-weight: bold } /* Operator */
85
- .highlight .cm { color: #999988; font-style: italic } /* Comment.Multiline */
86
- .highlight .cp { color: #999999; font-weight: bold } /* Comment.Preproc */
87
- .highlight .c1 { color: #999988; font-style: italic } /* Comment.Single */
88
- .highlight .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */
89
- .highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
90
- .highlight .gd .x { color: #000000; background-color: #ffaaaa } /* Generic.Deleted.Specific */
73
+ .lineno { color: var(--code-color-1); margin-right: 15px; }
74
+ figure.highlight { margin: 5px 0; }
75
+ pre { background-color: var(--background-color); border: none; padding: 0; margin: 0; overflow:auto; font-size: $base-font-size; color: var(--text-color); line-height: 1.7 !important; font-family: $base-font-family !important; }
76
+ .highlight .hll { background-color: var(--code-color-2); }
77
+ .highlight .c { color: var(--code-color-1); font-style: italic } /* Comment */
78
+ .highlight .err { color: var(--code-color-3); background-color: var(--code-color-4); } /* Error */
79
+ .highlight .k { color: var(--code-color-5); } /* Keyword */
80
+ .highlight .cm { color: var(--code-color-1); font-style: italic } /* Comment.Multiline */
81
+ .highlight .cp { color: var(--code-color-6); } /* Comment.Preproc */
82
+ .highlight .c1 { color: var(--code-color-1); font-style: italic } /* Comment.Single */
83
+ .highlight .cs { color: var(--code-color-5); font-style: italic } /* Comment.Special */
84
+ .highlight .gd { color: var(--code-color-7); } /* Generic.Deleted */
91
85
  .highlight .ge { font-style: italic } /* Generic.Emph */
92
- .highlight .gr { color: #aa0000 } /* Generic.Error */
93
- .highlight .gh { color: #999999 } /* Generic.Heading */
94
- .highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
95
- .highlight .gi .x { color: #000000; background-color: #aaffaa } /* Generic.Inserted.Specific */
96
- .highlight .go { color: #888888 } /* Generic.Output */
97
- .highlight .gp { color: #555555 } /* Generic.Prompt */
86
+ .highlight .gr { color: var(--code-color-7); } /* Generic.Error */
87
+ .highlight .gh { color: var(--code-color-8); font-weight: bold } /* Generic.Heading */
88
+ .highlight .gi { color: var(--code-color-9); } /* Generic.Inserted */
89
+ .highlight .go { color: var(--code-color-10); } /* Generic.Output */
90
+ .highlight .gp { color: var(--code-color-11); } /* Generic.Prompt */
98
91
  .highlight .gs { font-weight: bold } /* Generic.Strong */
99
- .highlight .gu { color: #aaaaaa } /* Generic.Subheading */
100
- .highlight .gt { color: #aa0000 } /* Generic.Traceback */
101
- .highlight .kc { font-weight: bold } /* Keyword.Constant */
102
- .highlight .kd { font-weight: bold } /* Keyword.Declaration */
103
- .highlight .kp { font-weight: bold } /* Keyword.Pseudo */
104
- .highlight .kr { font-weight: bold } /* Keyword.Reserved */
105
- .highlight .kt { color: #445588; font-weight: bold } /* Keyword.Type */
106
- .highlight .m { color: #009999 } /* Literal.Number */
107
- .highlight .s { color: #d14 } /* Literal.String */
108
- .highlight .na { color: #008080 } /* Name.Attribute */
109
- .highlight .nb { color: #0086B3 } /* Name.Builtin */
110
- .highlight .nc { color: #445588; font-weight: bold } /* Name.Class */
111
- .highlight .no { color: #008080 } /* Name.Constant */
112
- .highlight .ni { color: #800080 } /* Name.Entity */
113
- .highlight .ne { color: #990000; font-weight: bold } /* Name.Exception */
114
- .highlight .nf { color: #990000; font-weight: bold } /* Name.Function */
115
- .highlight .nn { color: #555555 } /* Name.Namespace */
116
- .highlight .nt { color: #000080 } /* Name.Tag */
117
- .highlight .nv { color: #008080 } /* Name.Variable */
118
- .highlight .ow { font-weight: bold } /* Operator.Word */
119
- .highlight .w { color: #bbbbbb } /* Text.Whitespace */
120
- .highlight .mf { color: #009999 } /* Literal.Number.Float */
121
- .highlight .mh { color: #009999 } /* Literal.Number.Hex */
122
- .highlight .mi { color: #009999 } /* Literal.Number.Integer */
123
- .highlight .mo { color: #009999 } /* Literal.Number.Oct */
124
- .highlight .sb { color: #d14 } /* Literal.String.Backtick */
125
- .highlight .sc { color: #d14 } /* Literal.String.Char */
126
- .highlight .sd { color: #d14 } /* Literal.String.Doc */
127
- .highlight .s2 { color: #d14 } /* Literal.String.Double */
128
- .highlight .se { color: #d14 } /* Literal.String.Escape */
129
- .highlight .sh { color: #d14 } /* Literal.String.Heredoc */
130
- .highlight .si { color: #d14 } /* Literal.String.Interpol */
131
- .highlight .sx { color: #d14 } /* Literal.String.Other */
132
- .highlight .sr { color: #009926 } /* Literal.String.Regex */
133
- .highlight .s1 { color: #d14 } /* Literal.String.Single */
134
- .highlight .ss { color: #990073 } /* Literal.String.Symbol */
135
- .highlight .bp { color: #999999 } /* Name.Builtin.Pseudo */
136
- .highlight .vc { color: #008080 } /* Name.Variable.Class */
137
- .highlight .vg { color: #008080 } /* Name.Variable.Global */
138
- .highlight .vi { color: #008080 } /* Name.Variable.Instance */
139
- .highlight .il { color: #009999 } /* Literal.Number.Integer.Long */
92
+ .highlight .gu { color: var(--code-color-12); font-weight: bold } /* Generic.Subheading */
93
+ .highlight .gt { color: var(--code-color-7); } /* Generic.Traceback */
94
+ .highlight .kc { color: var(--code-color-5); } /* Keyword.Constant */
95
+ .highlight .kd { color: var(--code-color-5); } /* Keyword.Declaration */
96
+ .highlight .kn { color: var(--code-color-5); } /* Keyword.Namespace */
97
+ .highlight .kp { color: var(--code-color-5); } /* Keyword.Pseudo */
98
+ .highlight .kr { color: var(--code-color-5); } /* Keyword.Reserved */
99
+ .highlight .kt { color: var(--code-color-13); } /* Keyword.Type */
100
+ .highlight .m { color: var(--code-color-14); } /* Literal.Number */
101
+ .highlight .s { color: var(--code-color-15); } /* Literal.String */
102
+ .highlight .na { color: var(--code-color-16); } /* Name.Attribute */
103
+ .highlight .nb { color: var(--code-color-13); } /* Name.Builtin */
104
+ .highlight .nc { color: var(--code-color-9); text-decoration: underline } /* Name.Class */
105
+ .highlight .no { color: var(--code-color-7); } /* Name.Constant */
106
+ .highlight .nd { color: var(--code-color-10); } /* Name.Decorator */
107
+ .highlight .ni { color: var(--code-color-17); font-weight: bold } /* Name.Entity */
108
+ .highlight .nf { color: var(--code-color-9); } /* Name.Function */
109
+ .highlight .nn { color: var(--code-color-13); text-decoration: underline } /* Name.Namespace */
110
+ .highlight .nt { color: var(--code-color-16); font-weight: bold } /* Name.Tag */
111
+ .highlight .nv { color: var(--code-color-7); } /* Name.Variable */
112
+ .highlight .ow { color: var(--code-color-5); } /* Operator.Word */
113
+ .highlight .w { color: var(--code-color-18); } /* Text.Whitespace */
114
+ .highlight .mf { color: var(--code-color-14); } /* Literal.Number.Float */
115
+ .highlight .mh { color: var(--code-color-14); } /* Literal.Number.Hex */
116
+ .highlight .mi { color: var(--code-color-14); } /* Literal.Number.Integer */
117
+ .highlight .mo { color: var(--code-color-14); } /* Literal.Number.Oct */
118
+ .highlight .sb { color: var(--code-color-15); } /* Literal.String.Backtick */
119
+ .highlight .sc { color: var(--code-color-15); } /* Literal.String.Char */
120
+ .highlight .sd { color: var(--code-color-15); } /* Literal.String.Doc */
121
+ .highlight .s2 { color: var(--code-color-15); } /* Literal.String.Double */
122
+ .highlight .se { color: var(--code-color-15); } /* Literal.String.Escape */
123
+ .highlight .sh { color: var(--code-color-15); } /* Literal.String.Heredoc */
124
+ .highlight .si { color: var(--code-color-15); } /* Literal.String.Interpol */
125
+ .highlight .sx { color: var(--code-color-15); } /* Literal.String.Other */
126
+ .highlight .sr { color: var(--code-color-14); } /* Literal.String.Regex */
127
+ .highlight .s1 { color: var(--code-color-15); } /* Literal.String.Single */
128
+ .highlight .ss { color: var(--code-color-5); } /* Literal.String.Symbol */
129
+ .highlight .bp { color: var(--code-color-13); } /* Name.Builtin.Pseudo */
130
+ .highlight .vc { color: var(--code-color-7); } /* Name.Variable.Class */
131
+ .highlight .vg { color: var(--code-color-7); } /* Name.Variable.Global */
132
+ .highlight .vi { color: var(--code-color-7); } /* Name.Variable.Instance */
133
+ .highlight .il { color: var(--code-color-14); } /* Literal.Number.Integer.Long */
@@ -0,0 +1,6 @@
1
+ ---
2
+ # Only the main Sass file needs front matter (the dashes are enough)
3
+ ---
4
+
5
+ @import "hacker";
6
+ @import "base";
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-console
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.5
4
+ version: 0.3.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - b2a3e8
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-10-17 00:00:00.000000000 Z
11
+ date: 2020-07-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -84,9 +84,11 @@ files:
84
84
  - _layouts/page.html
85
85
  - _layouts/post.html
86
86
  - _sass/_dark.scss
87
+ - _sass/_hacker.scss
87
88
  - _sass/_light.scss
88
89
  - _sass/base.scss
89
90
  - assets/main-dark.scss
91
+ - assets/main-hacker.scss
90
92
  - assets/main-light.scss
91
93
  - assets/main.scss
92
94
  homepage: https://github.com/b2a3e8/jekyll-theme-console