dark-blog-theme 0.1.3 → 0.1.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +2 -2
- data/_config.yml +2 -2
- data/_sass/minima/_base.scss +2 -2
- data/_sass/minima/_syntax-highlighting.scss +60 -63
- metadata +16 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4b0c3cfc8831b6000b0b4bc16cd6263a47a75a69315fc89fa490e58cecf2f9b4
|
4
|
+
data.tar.gz: 681160cdb1edf72c0228ded6f201a6b2e9c6432b7f17965f0ea580174dc52957
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7ee0c39d504e752f7e1cf4eb049b63aa75df55380b2054692fd171e78a60929013a346a9078a8199db0a270e3afa5e82216d700530990680b61eaad8cb161537
|
7
|
+
data.tar.gz: e42f350bf4040072a4b7309687d8097144b42fc3c23f085f66075275764f5a2a225d71c6d1620c7d60bdcdb9a0c9d391b717a7ab8c9e1604434c64c46309164f
|
data/README.md
CHANGED
@@ -11,13 +11,13 @@ TODO: Delete this and the text above, and describe your gem
|
|
11
11
|
Add this line to your Jekyll site's `Gemfile`:
|
12
12
|
|
13
13
|
```ruby
|
14
|
-
gem "
|
14
|
+
gem "dark-theme-blog"
|
15
15
|
```
|
16
16
|
|
17
17
|
And add this line to your Jekyll site's `_config.yml`:
|
18
18
|
|
19
19
|
```yaml
|
20
|
-
theme:
|
20
|
+
theme: dark-theme-blog
|
21
21
|
```
|
22
22
|
|
23
23
|
And then execute:
|
data/_config.yml
CHANGED
@@ -18,7 +18,7 @@
|
|
18
18
|
# You can create any custom variable you would like, and they will be accessible
|
19
19
|
# in the templates via {{ site.myvariable }}.
|
20
20
|
|
21
|
-
title:
|
21
|
+
title: Your awesome title
|
22
22
|
email: your-email@example.com
|
23
23
|
description: >- # this means to ignore newlines until "baseurl:"
|
24
24
|
Write an awesome description for your new site here. You can edit this
|
@@ -27,7 +27,7 @@ description: >- # this means to ignore newlines until "baseurl:"
|
|
27
27
|
baseurl: "" # the subpath of your site, e.g. /blog
|
28
28
|
url: "" # the base hostname & protocol for your site, e.g. http://example.com
|
29
29
|
twitter_username: jekyllrb
|
30
|
-
github_username:
|
30
|
+
github_username: jekyll
|
31
31
|
|
32
32
|
# Build settings
|
33
33
|
plugins:
|
data/_sass/minima/_base.scss
CHANGED
@@ -551,9 +551,9 @@ blockquote {
|
|
551
551
|
pre,
|
552
552
|
code {
|
553
553
|
@include relative-font-size(0.9375);
|
554
|
-
border: 1px solid
|
554
|
+
border: 1px solid var(--md-sys-color-outline);
|
555
555
|
border-radius: 3px;
|
556
|
-
background-color:
|
556
|
+
background-color: var(--md-sys-color-surface-container-high);
|
557
557
|
}
|
558
558
|
|
559
559
|
code {
|
@@ -1,71 +1,68 @@
|
|
1
|
-
/**
|
2
|
-
* Syntax highlighting styles
|
3
|
-
*/
|
4
1
|
.highlight {
|
5
|
-
background: #
|
2
|
+
background: #2d2d2d;
|
6
3
|
@extend %vertical-rhythm;
|
7
4
|
|
8
5
|
.highlighter-rouge & {
|
9
|
-
background: #
|
6
|
+
background: #3d3d3d;
|
10
7
|
}
|
11
8
|
|
12
|
-
.c { color: #
|
13
|
-
.err { color: #
|
14
|
-
.k { font-weight: bold } // Keyword
|
15
|
-
.o { font-weight: bold } // Operator
|
16
|
-
.cm { color: #
|
17
|
-
.cp { color: #
|
18
|
-
.c1 { color: #
|
9
|
+
.c { color: #999; font-style: italic } // Comment
|
10
|
+
.err { color: #ff6c6b; background-color: #2c2c2c } // Error
|
11
|
+
.k { font-weight: bold; color: #c5a5c5 } // Keyword
|
12
|
+
.o { font-weight: bold; color: #56b6c2 } // Operator
|
13
|
+
.cm { color: #999; font-style: italic } // Comment.Multiline
|
14
|
+
.cp { color: #e6c07b; font-weight: bold } // Comment.Preproc
|
15
|
+
.c1 { color: #999; font-style: italic } // Comment.Single
|
19
16
|
.cs { color: #999; font-weight: bold; font-style: italic } // Comment.Special
|
20
|
-
.gd { color: #
|
21
|
-
.gd .x { color: #
|
22
|
-
.ge { font-style: italic } // Generic.Emph
|
23
|
-
.gr { color: #
|
24
|
-
.gh { color: #
|
25
|
-
.gi { color: #
|
26
|
-
.gi .x { color: #
|
27
|
-
.go { color: #
|
28
|
-
.gp { color: #
|
29
|
-
.gs { font-weight: bold } // Generic.Strong
|
30
|
-
.gu { color: #
|
31
|
-
.gt { color: #
|
32
|
-
.kc { font-weight: bold } // Keyword.Constant
|
33
|
-
.kd { font-weight: bold } // Keyword.Declaration
|
34
|
-
.kp { font-weight: bold } // Keyword.Pseudo
|
35
|
-
.kr { font-weight: bold } // Keyword.Reserved
|
36
|
-
.kt { color: #
|
37
|
-
.m { color: #
|
38
|
-
.s { color: #
|
39
|
-
.na { color: #
|
40
|
-
.nb { color: #
|
41
|
-
.nc { color: #
|
42
|
-
.no { color: #
|
43
|
-
.ni { color: #
|
44
|
-
.ne { color: #
|
45
|
-
.nf { color: #
|
46
|
-
.nn { color: #
|
47
|
-
.nt { color: #
|
48
|
-
.nv { color: #
|
49
|
-
.ow { font-weight: bold } // Operator.Word
|
50
|
-
.w { color: #
|
51
|
-
.mf { color: #
|
52
|
-
.mh { color: #
|
53
|
-
.mi { color: #
|
54
|
-
.mo { color: #
|
55
|
-
.sb { color: #
|
56
|
-
.sc { color: #
|
57
|
-
.sd { color: #
|
58
|
-
.s2 { color: #
|
59
|
-
.se { color: #
|
60
|
-
.sh { color: #
|
61
|
-
.si { color: #
|
62
|
-
.sx { color: #
|
63
|
-
.sr { color: #
|
64
|
-
.s1 { color: #
|
65
|
-
.ss { color: #
|
66
|
-
.bp { color: #
|
67
|
-
.vc { color: #
|
68
|
-
.vg { color: #
|
69
|
-
.vi { color: #
|
70
|
-
.il { color: #
|
17
|
+
.gd { color: #e06c75; background-color: #3c2a2a } // Generic.Deleted
|
18
|
+
.gd .x { color: #e06c75; background-color: #3c2a2a } // Generic.Deleted.Specific
|
19
|
+
.ge { font-style: italic; color: #abb2bf } // Generic.Emph
|
20
|
+
.gr { color: #e06c75 } // Generic.Error
|
21
|
+
.gh { color: #e6c07b } // Generic.Heading
|
22
|
+
.gi { color: #98c379; background-color: #2a3c2a } // Generic.Inserted
|
23
|
+
.gi .x { color: #98c379; background-color: #2a3c2a } // Generic.Inserted.Specific
|
24
|
+
.go { color: #5c6370 } // Generic.Output
|
25
|
+
.gp { color: #c678dd } // Generic.Prompt
|
26
|
+
.gs { font-weight: bold; color: #e6c07b } // Generic.Strong
|
27
|
+
.gu { color: #56b6c2 } // Generic.Subheading
|
28
|
+
.gt { color: #e06c75 } // Generic.Traceback
|
29
|
+
.kc { font-weight: bold; color: #c5a5c5 } // Keyword.Constant
|
30
|
+
.kd { font-weight: bold; color: #c5a5c5 } // Keyword.Declaration
|
31
|
+
.kp { font-weight: bold; color: #c5a5c5 } // Keyword.Pseudo
|
32
|
+
.kr { font-weight: bold; color: #c5a5c5 } // Keyword.Reserved
|
33
|
+
.kt { color: #c678dd; font-weight: bold } // Keyword.Type
|
34
|
+
.m { color: #d19a66 } // Literal.Number
|
35
|
+
.s { color: #98c379 } // Literal.String
|
36
|
+
.na { color: #56b6c2 } // Name.Attribute
|
37
|
+
.nb { color: #61aeee } // Name.Builtin
|
38
|
+
.nc { color: #c678dd; font-weight: bold } // Name.Class
|
39
|
+
.no { color: #d19a66 } // Name.Constant
|
40
|
+
.ni { color: #56b6c2 } // Name.Entity
|
41
|
+
.ne { color: #e06c75; font-weight: bold } // Name.Exception
|
42
|
+
.nf { color: #61aeee; font-weight: bold } // Name.Function
|
43
|
+
.nn { color: #abb2bf } // Name.Namespace
|
44
|
+
.nt { color: #e06c75 } // Name.Tag
|
45
|
+
.nv { color: #d19a66 } // Name.Variable
|
46
|
+
.ow { font-weight: bold; color: #56b6c2 } // Operator.Word
|
47
|
+
.w { color: #5c6370 } // Text.Whitespace
|
48
|
+
.mf { color: #d19a66 } // Literal.Number.Float
|
49
|
+
.mh { color: #d19a66 } // Literal.Number.Hex
|
50
|
+
.mi { color: #d19a66 } // Literal.Number.Integer
|
51
|
+
.mo { color: #d19a66 } // Literal.Number.Oct
|
52
|
+
.sb { color: #98c379 } // Literal.String.Backtick
|
53
|
+
.sc { color: #98c379 } // Literal.String.Char
|
54
|
+
.sd { color: #98c379 } // Literal.String.Doc
|
55
|
+
.s2 { color: #98c379 } // Literal.String.Double
|
56
|
+
.se { color: #98c379 } // Literal.String.Escape
|
57
|
+
.sh { color: #98c379 } // Literal.String.Heredoc
|
58
|
+
.si { color: #98c379 } // Literal.String.Interpol
|
59
|
+
.sx { color: #98c379 } // Literal.String.Other
|
60
|
+
.sr { color: #56b6c2 } // Literal.String.Regex
|
61
|
+
.s1 { color: #98c379 } // Literal.String.Single
|
62
|
+
.ss { color: #c678dd } // Literal.String.Symbol
|
63
|
+
.bp { color: #e06c75 } // Name.Builtin.Pseudo
|
64
|
+
.vc { color: #d19a66 } // Name.Variable.Class
|
65
|
+
.vg { color: #d19a66 } // Name.Variable.Global
|
66
|
+
.vi { color: #d19a66 } // Name.Variable.Instance
|
67
|
+
.il { color: #d19a66 } // Literal.Number.Integer.Long
|
71
68
|
}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dark-blog-theme
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gul Noor
|
@@ -9,7 +9,21 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
date: 2024-07-25 00:00:00.000000000 Z
|
12
|
-
dependencies:
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: jekyll
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '4.3'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '4.3'
|
13
27
|
description:
|
14
28
|
email:
|
15
29
|
- gulnoor5233@gmail.com
|