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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 95da7c3762d63458477b9436893795c067667e6910fb5142a19e43e60db9c7ea
4
- data.tar.gz: d23db655d05d7afe40903d0ee95a3973f38af15252ddab39cca350399533c234
3
+ metadata.gz: 4b0c3cfc8831b6000b0b4bc16cd6263a47a75a69315fc89fa490e58cecf2f9b4
4
+ data.tar.gz: 681160cdb1edf72c0228ded6f201a6b2e9c6432b7f17965f0ea580174dc52957
5
5
  SHA512:
6
- metadata.gz: 7c4474dff0c3481cf84913f1f8bcac97e58f344711332c5157c4efd771dfd5bd0f204fb3c7f611c4bac45786312edf7a2ba990d492bdbe0697de9de1243f2a72
7
- data.tar.gz: a1ff90b114a17660f5fda55e4dd2e1006453e2f5b751b704e60e83cafb95eaf8a31937b4ab1b983c515bb99647fc85fcb5e0de83b00953e00ae3ebeaf4597e51
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 "darkBlog"
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: darkBlog
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: your awesome 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: yourusername
30
+ github_username: jekyll
31
31
 
32
32
  # Build settings
33
33
  plugins:
@@ -551,9 +551,9 @@ blockquote {
551
551
  pre,
552
552
  code {
553
553
  @include relative-font-size(0.9375);
554
- border: 1px solid $grey-color-light;
554
+ border: 1px solid var(--md-sys-color-outline);
555
555
  border-radius: 3px;
556
- background-color: #eef;
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: #fff;
2
+ background: #2d2d2d;
6
3
  @extend %vertical-rhythm;
7
4
 
8
5
  .highlighter-rouge & {
9
- background: #eef;
6
+ background: #3d3d3d;
10
7
  }
11
8
 
12
- .c { color: #998; font-style: italic } // Comment
13
- .err { color: #a61717; background-color: #e3d2d2 } // Error
14
- .k { font-weight: bold } // Keyword
15
- .o { font-weight: bold } // Operator
16
- .cm { color: #998; font-style: italic } // Comment.Multiline
17
- .cp { color: #999; font-weight: bold } // Comment.Preproc
18
- .c1 { color: #998; font-style: italic } // Comment.Single
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: #000; background-color: #fdd } // Generic.Deleted
21
- .gd .x { color: #000; background-color: #faa } // Generic.Deleted.Specific
22
- .ge { font-style: italic } // Generic.Emph
23
- .gr { color: #a00 } // Generic.Error
24
- .gh { color: #999 } // Generic.Heading
25
- .gi { color: #000; background-color: #dfd } // Generic.Inserted
26
- .gi .x { color: #000; background-color: #afa } // Generic.Inserted.Specific
27
- .go { color: #888 } // Generic.Output
28
- .gp { color: #555 } // Generic.Prompt
29
- .gs { font-weight: bold } // Generic.Strong
30
- .gu { color: #aaa } // Generic.Subheading
31
- .gt { color: #a00 } // Generic.Traceback
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: #458; font-weight: bold } // Keyword.Type
37
- .m { color: #099 } // Literal.Number
38
- .s { color: #d14 } // Literal.String
39
- .na { color: #008080 } // Name.Attribute
40
- .nb { color: #0086B3 } // Name.Builtin
41
- .nc { color: #458; font-weight: bold } // Name.Class
42
- .no { color: #008080 } // Name.Constant
43
- .ni { color: #800080 } // Name.Entity
44
- .ne { color: #900; font-weight: bold } // Name.Exception
45
- .nf { color: #900; font-weight: bold } // Name.Function
46
- .nn { color: #555 } // Name.Namespace
47
- .nt { color: #000080 } // Name.Tag
48
- .nv { color: #008080 } // Name.Variable
49
- .ow { font-weight: bold } // Operator.Word
50
- .w { color: #bbb } // Text.Whitespace
51
- .mf { color: #099 } // Literal.Number.Float
52
- .mh { color: #099 } // Literal.Number.Hex
53
- .mi { color: #099 } // Literal.Number.Integer
54
- .mo { color: #099 } // Literal.Number.Oct
55
- .sb { color: #d14 } // Literal.String.Backtick
56
- .sc { color: #d14 } // Literal.String.Char
57
- .sd { color: #d14 } // Literal.String.Doc
58
- .s2 { color: #d14 } // Literal.String.Double
59
- .se { color: #d14 } // Literal.String.Escape
60
- .sh { color: #d14 } // Literal.String.Heredoc
61
- .si { color: #d14 } // Literal.String.Interpol
62
- .sx { color: #d14 } // Literal.String.Other
63
- .sr { color: #009926 } // Literal.String.Regex
64
- .s1 { color: #d14 } // Literal.String.Single
65
- .ss { color: #990073 } // Literal.String.Symbol
66
- .bp { color: #999 } // Name.Builtin.Pseudo
67
- .vc { color: #008080 } // Name.Variable.Class
68
- .vg { color: #008080 } // Name.Variable.Global
69
- .vi { color: #008080 } // Name.Variable.Instance
70
- .il { color: #099 } // Literal.Number.Integer.Long
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.3
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