jekyll-theme-console 0.3.6 → 0.3.11
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +66 -18
- data/_includes/head.html +8 -2
- data/_sass/_dark.scss +19 -2
- data/_sass/_hacker.scss +32 -0
- data/_sass/_light.scss +19 -3
- data/_sass/base.scss +60 -66
- data/assets/main-hacker.scss +6 -0
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f3a4f0566780e92d092aafce671ef65e55eed99a4745b0ccd570b59020cbbd31
|
4
|
+
data.tar.gz: a0db65d1c4b54a4a20cb7bbe21a62cd978298ded1e222da13927247b41d28b0e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ad114a848f8681f8c22ee53f2659e3c07cc87127afad849f53e8a4c51085b80139d56d0d3649c81c6c0e7d1b916eb330c03619509a3bdc5aaa8b1b2392f1d35d
|
7
|
+
data.tar.gz: 4b565d8f4630880061d5f71ad93c64faaf28a69dac3f9e8345a31d705ed004314f312250916766c1ca3c2dfbea97c7a05944ca7dd9c8b32a18b1f30279561b3a
|
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://
|
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
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
30
|
+
### Remote theme method for GitHub Pages
|
23
31
|
|
24
|
-
|
25
|
-
|
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
|
-
|
40
|
+
### Gem-based method
|
29
41
|
|
30
|
-
|
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
|
-
|
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
|
-
|
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
|
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
|
50
|
-
listen_for_clients_preferred_style: true #
|
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
|
|
data/_includes/head.html
CHANGED
@@ -5,12 +5,18 @@
|
|
5
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
|
-
|
13
|
-
|
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 -%}
|
data/_sass/_dark.scss
CHANGED
@@ -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
|
+
}
|
data/_sass/_hacker.scss
ADDED
@@ -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
|
+
}
|
data/_sass/_light.scss
CHANGED
@@ -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
|
+
}
|
data/_sass/base.scss
CHANGED
@@ -19,20 +19,13 @@ 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
|
33
26
|
*/
|
34
27
|
.container { width: $container-width; max-width: $container-max-width; margin-right: auto; margin-left: auto; }
|
35
|
-
p { word-wrap: break-word; word-break: break-word; white-space: pre-wrap; }
|
28
|
+
p { word-wrap: break-word; word-break: break-word; white-space: pre-wrap; marin-bottom: 15px; }
|
36
29
|
footer { color: var(--text-color); border-top: var(--border); margin: 20px auto 15px; padding-top: 10px; text-align: right; }
|
37
30
|
header { margin-top: 25px; margin-bottom: 10px; }
|
38
31
|
header p { text-align: left; margin: 0; }
|
@@ -77,63 +70,64 @@ textarea { vertical-align: top; }
|
|
77
70
|
/**
|
78
71
|
* Code and syntax highlighting
|
79
72
|
*/
|
80
|
-
|
81
|
-
.highlight
|
82
|
-
|
83
|
-
.highlight .
|
84
|
-
.highlight .
|
85
|
-
.highlight .
|
86
|
-
.highlight .
|
87
|
-
.highlight .
|
88
|
-
.highlight .
|
89
|
-
.highlight .
|
90
|
-
.highlight .
|
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:
|
93
|
-
.highlight .gh { color:
|
94
|
-
.highlight .gi { color:
|
95
|
-
.highlight .
|
96
|
-
.highlight .
|
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:
|
100
|
-
.highlight .gt { color:
|
101
|
-
.highlight .kc {
|
102
|
-
.highlight .kd {
|
103
|
-
.highlight .
|
104
|
-
.highlight .
|
105
|
-
.highlight .
|
106
|
-
.highlight .
|
107
|
-
.highlight .
|
108
|
-
.highlight .
|
109
|
-
.highlight .
|
110
|
-
.highlight .
|
111
|
-
.highlight .
|
112
|
-
.highlight .
|
113
|
-
.highlight .
|
114
|
-
.highlight .
|
115
|
-
.highlight .
|
116
|
-
.highlight .
|
117
|
-
.highlight .
|
118
|
-
.highlight .
|
119
|
-
.highlight .
|
120
|
-
.highlight .
|
121
|
-
.highlight .
|
122
|
-
.highlight .
|
123
|
-
.highlight .
|
124
|
-
.highlight .
|
125
|
-
.highlight .
|
126
|
-
.highlight .
|
127
|
-
.highlight .
|
128
|
-
.highlight .
|
129
|
-
.highlight .
|
130
|
-
.highlight .
|
131
|
-
.highlight .
|
132
|
-
.highlight .
|
133
|
-
.highlight .
|
134
|
-
.highlight .
|
135
|
-
.highlight .
|
136
|
-
.highlight .
|
137
|
-
.highlight .
|
138
|
-
.highlight .
|
139
|
-
.highlight .
|
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 */
|
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.
|
4
|
+
version: 0.3.11
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- b2a3e8
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-11-17 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
|