foxfire-theme 0.2.0 → 0.2.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a220ec9ea7fb53a240510383edc8443fa848231ac21926ef94397487fc30af85
4
- data.tar.gz: 32d121e4222d13e9f02d3a76c227352e3e9801eaf5db9ea2b55faaffdf624145
3
+ metadata.gz: 364ff346bd7aaee15a63b36046dcd138b622c09cade09d8848263a8c432c2665
4
+ data.tar.gz: 91f2816cd3e92005a2aaaca0778eb13bca796d999b0801b77439e3d647a94375
5
5
  SHA512:
6
- metadata.gz: 07a17d30a618fccb859bbbe1747c50932a1a6879febc06e0591a460197f71fea06a8bc737c3433dc82d28cf026f751959bf4466e3dc9ce69aee016166dffef4e
7
- data.tar.gz: 8b022c16096442d3fb85ff9e5628dd82b729550093d1caad2403f6f174e9a0c7fe48dc45b70f536bce380dd059089fee47709fad55222bbbf4c2ac2de1edbcd5
6
+ metadata.gz: b5b09af910c276a3ef4ec73fc628afed98f6e3705a220a8d493c2dc051778fc72809f98fb31771611e82898f8564a21c3db3b51aff28673d0310179ef7e3f0a0
7
+ data.tar.gz: e3994119fab47b194e893eafaf64f2a5a1b2897272a18417715cad6aa848fd8fc1f51b4d793cc040fa51435bc6e729313f08557ffaa77cfda60f237c7150ebe9
data/_layouts/post.html CHANGED
@@ -14,3 +14,6 @@ layout: default
14
14
  {% if page.tags %}
15
15
  <small>tags: <em>{{ page.tags | join: "</em> - <em>" }}</em></small>
16
16
  {% endif %}
17
+
18
+ <hr>
19
+ <a href="/Foxfire-Blog">Return to Main Page</a>
@@ -1,4 +1,4 @@
1
- @import "rouge-base16-dark";
1
+ @import "monokai-dark";
2
2
  @import "default_colors";
3
3
  @import url('https://fonts.googleapis.com/css?family=Roboto');
4
4
 
@@ -58,7 +58,7 @@ header h1 {
58
58
  line-height: 1.5;
59
59
  margin: 0 0 0 -40px;
60
60
  font-weight: bold;
61
- font-family: 'OpenSansRegular', "Helvetica Neue", Helvetica, Arial, sans-serif;;
61
+ font-family: 'Roboto', sans-serif;;
62
62
  color: $conifer;//$header;
63
63
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1),
64
64
  0 0 5px rgba(181, 232, 83, 0.1),
@@ -97,7 +97,7 @@ section img {
97
97
 
98
98
  h1, h2, h3, h4, h5, h6 {
99
99
  font-weight: normal;
100
- font-family: 'OpenSansRegular', "Helvetica Neue", Helvetica, Arial, sans-serif;;
100
+ font-family: 'Roboto', sans-serif;;
101
101
  color: $header;
102
102
  letter-spacing: -0.03em;
103
103
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1),
@@ -149,7 +149,20 @@ blockquote {
149
149
  border-left: 1px dotted $blockquote-border;
150
150
  }
151
151
 
152
- pre {
152
+ /* Adjusted to give override background and text colour */
153
+ .highlight pre, pre, .highlight .hll {
154
+ background: rgba(0, 0, 0, 0.9);
155
+ border: 1px solid rgba(255, 255, 255, 0.15);
156
+ padding: 10px;
157
+ font-size: 16px;
158
+ color: #b5e853;
159
+ border-radius: 2px;
160
+ word-wrap: normal;
161
+ overflow: auto;
162
+ overflow-y: hidden;
163
+ }
164
+
165
+ .gist pre {
153
166
  background: rgba(0, 0, 0, 0.9);
154
167
  border: 1px solid rgba(255, 255, 255, 0.15);
155
168
  padding: 10px;
@@ -186,10 +199,9 @@ td {
186
199
  }
187
200
 
188
201
  hr {
189
- height: 0;
190
202
  border: 0;
191
- border-bottom: 1px dashed #b5e853;
192
- color: #b5e853;
203
+ height: 1px;
204
+ background-image: linear-gradient(to right, #f0f, #0ff);
193
205
  }
194
206
 
195
207
  /* Buttons
@@ -0,0 +1,87 @@
1
+ @import "default_colors";
2
+
3
+ .highlight {
4
+
5
+ $plaintext: $alto !default;
6
+ $string: $chelsea-cucumber !default;
7
+ $literal: $chelsea-cucumber !default;
8
+ $keyword: $bouquet !default;
9
+ $error-foreground: $cod-grey !default;
10
+ $error-background: $apple-blossom !default;
11
+ $comment: $grey !default;
12
+ $preprocessor: $rajah !default;
13
+ $name-space: $rajah !default;
14
+ $name-attribute: $hippie-blue !default;
15
+ $operator: $rajah !default;
16
+ $keyword-type: $raw-sienna !default;
17
+ $regex: $gulf-stream !default;
18
+ $string-escape: $potters-clay !default;
19
+ $deleted: $apple-blossom !default;
20
+ $header: $hippie-blue !default;
21
+
22
+ color: $plaintext;
23
+
24
+ table td { padding: 5px; }
25
+ table pre { margin: 0; }
26
+
27
+ /* Highlights taken from https://gist.github.com/asaaki/1007420 for Monokai theme */
28
+ .c { color: #75715e } /* Comment */
29
+ .err { color: #960050; background-color: #1e0010 } /* Error */
30
+ .k { color: #66d9ef } /* Keyword */
31
+ .l { color: #ae81ff } /* Literal */
32
+ .n { color: #f8f8f2 } /* Name */
33
+ .o { color: #f92672 } /* Operator */
34
+ .p { color: #f8f8f2 } /* Punctuation */
35
+ .cm { color: #75715e } /* Comment.Multiline */
36
+ .cp { color: #75715e } /* Comment.Preproc */
37
+ .c1 { color: #75715e } /* Comment.Single */
38
+ .cs { color: #75715e } /* Comment.Special */
39
+ .ge { font-style: italic } /* Generic.Emph */
40
+ .gs { font-weight: bold } /* Generic.Strong */
41
+ .kc { color: #66d9ef } /* Keyword.Constant */
42
+ .kd { color: #66d9ef } /* Keyword.Declaration */
43
+ .kn { color: #f92672 } /* Keyword.Namespace */
44
+ .kp { color: #66d9ef } /* Keyword.Pseudo */
45
+ .kr { color: #66d9ef } /* Keyword.Reserved */
46
+ .kt { color: #66d9ef } /* Keyword.Type */
47
+ .ld { color: #e6db74 } /* Literal.Date */
48
+ .m { color: #ae81ff } /* Literal.Number */
49
+ .s { color: #e6db74 } /* Literal.String */
50
+ .na { color: #a6e22e } /* Name.Attribute */
51
+ .nb { color: #f8f8f2 } /* Name.Builtin */
52
+ .nc { color: #a6e22e } /* Name.Class */
53
+ .no { color: #66d9ef } /* Name.Constant */
54
+ .nd { color: #a6e22e } /* Name.Decorator */
55
+ .ni { color: #f8f8f2 } /* Name.Entity */
56
+ .ne { color: #a6e22e } /* Name.Exception */
57
+ .nf { color: #a6e22e } /* Name.Function */
58
+ .nl { color: #f8f8f2 } /* Name.Label */
59
+ .nn { color: #f8f8f2 } /* Name.Namespace */
60
+ .nx { color: #a6e22e } /* Name.Other */
61
+ .py { color: #f8f8f2 } /* Name.Property */
62
+ .nt { color: #f92672 } /* Name.Tag */
63
+ .nv { color: #f8f8f2 } /* Name.Variable */
64
+ .ow { color: #f92672 } /* Operator.Word */
65
+ .w { color: #f8f8f2 } /* Text.Whitespace */
66
+ .mf { color: #ae81ff } /* Literal.Number.Float */
67
+ .mh { color: #ae81ff } /* Literal.Number.Hex */
68
+ .mi { color: #ae81ff } /* Literal.Number.Integer */
69
+ .mo { color: #ae81ff } /* Literal.Number.Oct */
70
+ .sb { color: #e6db74 } /* Literal.String.Backtick */
71
+ .sc { color: #e6db74 } /* Literal.String.Char */
72
+ .sd { color: #e6db74 } /* Literal.String.Doc */
73
+ .s2 { color: #e6db74 } /* Literal.String.Double */
74
+ .se { color: #ae81ff } /* Literal.String.Escape */
75
+ .sh { color: #e6db74 } /* Literal.String.Heredoc */
76
+ .si { color: #e6db74 } /* Literal.String.Interpol */
77
+ .sx { color: #e6db74 } /* Literal.String.Other */
78
+ .sr { color: #e6db74 } /* Literal.String.Regex */
79
+ .s1 { color: #e6db74 } /* Literal.String.Single */
80
+ .ss { color: #e6db74 } /* Literal.String.Symbol */
81
+ .bp { color: #f8f8f2 } /* Name.Builtin.Pseudo */
82
+ .vc { color: #f8f8f2 } /* Name.Variable.Class */
83
+ .vg { color: #f8f8f2 } /* Name.Variable.Global */
84
+ .vi { color: #f8f8f2 } /* Name.Variable.Instance */
85
+ .il { color: #ae81ff } /* Literal.Number.Integer.Long */
86
+
87
+ }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: foxfire-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sasha Elaine Fox
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-08-27 00:00:00.000000000 Z
11
+ date: 2019-08-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -94,6 +94,7 @@ files:
94
94
  - _layouts/post.html
95
95
  - _sass/_default_colors.scss
96
96
  - _sass/jekyll-theme-hacker.scss
97
+ - _sass/monokai-dark.scss
97
98
  - _sass/rouge-base16-dark.scss
98
99
  - assets/MathJax/MathJax.js
99
100
  - assets/css/style.scss