jekyll-theme-collider 0.1.4 → 0.1.6

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: 2550936b3fc6679fce2ecc7ad8c4e8087bed07b8d2c1566a4a635010b71348ba
4
- data.tar.gz: ad2f77730bcb4bcbc9e8c3d641e53c93563eeba6b100bb266d4bef751da4b8fa
3
+ metadata.gz: df4a3a0d6df20bd92a455551912c4fc44019a246af0ca837d430374437d3a00c
4
+ data.tar.gz: 9c0aed9ea24d522995946c31dfd3b3ff527f6849051176bf01a4be0cd8c736bd
5
5
  SHA512:
6
- metadata.gz: c18e523a9b7cdcfd120ca308ae528d2996ac3118fedf8173d5443c4ddaa25f7ec810c7cc0018f8893cbe16aa345858ae0a298317ef73ebb9c02188a3b753b8d0
7
- data.tar.gz: 4fc724699298e500dcf63fd1d5d13b92d635e8acba35ab15b815b52863cb1723a4fa1d72fa8123de14d130875479ca73becd800fb9b68c7a24eebbaf7fbcd752
6
+ metadata.gz: a8ae73af83422c7e9453ef68b11eee5c4b8b8b9df1934dc317595cd5721dd725048ea67ddc1c54417f8790913b60760b06d67efd14b07d8f6875dc05af9b6569
7
+ data.tar.gz: 3f444f7f5c080418a47a2be83f3ec4b630f69b79dbb3d84394a82655ea78c78caf14e61db787d286ed8f760bc74704bcafe42ee5b5599c80bd4c3536f0e6387e
@@ -93,3 +93,19 @@ a.bg--orange:hover {
93
93
  a.bg--bittersweet:hover {
94
94
  background: darken($bittersweet, $darken--button);
95
95
  }
96
+
97
+ .react-blue {
98
+ color: $react-blue;
99
+ &.icon {
100
+ fill: $react-blue;
101
+ }
102
+ }
103
+
104
+ .bg--react-blue {
105
+ background: $react-blue;
106
+ color: $white;
107
+ }
108
+
109
+ a.bg--react-blue:hover {
110
+ background: darken($react-blue, $darken--button);
111
+ }
@@ -2,80 +2,218 @@
2
2
  * Syntax highlighting styles
3
3
  */
4
4
 
5
- pre {
6
- white-space: pre-wrap;
5
+ .highlight {
6
+ display: flex;
7
+ margin-left: 0;
8
+ margin-right: 0;
7
9
  }
8
10
 
9
- .highlight {
10
- background: whitesmoke;
11
- padding: 8px 12px;
12
- margin: 20px 0 0 0;
11
+ .highlight pre {
12
+ background-color: #272822;
13
+ padding: 1em;
14
+ white-space: pre-wrap;
15
+ }
16
+ .highlight .hll {
17
+ background-color: #272822;
18
+ }
19
+ .highlight .c {
20
+ color: #75715e;
21
+ } /* Comment */
22
+ .highlight .err {
23
+ color: #960050;
24
+ background-color: #1e0010;
25
+ } /* Error */
26
+ .highlight .k {
27
+ color: #66d9ef;
28
+ } /* Keyword */
29
+ .highlight .l {
30
+ color: #ae81ff;
31
+ } /* Literal */
32
+ .highlight .n {
33
+ color: #f8f8f2;
34
+ } /* Name */
35
+ .highlight .o {
36
+ color: #f92672;
37
+ } /* Operator */
38
+ .highlight .p {
39
+ color: #f8f8f2;
40
+ } /* Punctuation */
41
+ .highlight .cm {
42
+ color: #75715e;
43
+ } /* Comment.Multiline */
44
+ .highlight .cp {
45
+ color: #75715e;
46
+ } /* Comment.Preproc */
47
+ .highlight .c1 {
48
+ color: #75715e;
49
+ } /* Comment.Single */
50
+ .highlight .cs {
51
+ color: #75715e;
52
+ } /* Comment.Special */
53
+ .highlight .ge {
54
+ font-style: italic;
55
+ } /* Generic.Emph */
56
+ .highlight .gs {
57
+ font-weight: bold;
58
+ } /* Generic.Strong */
59
+ .highlight .kc {
60
+ color: #66d9ef;
61
+ } /* Keyword.Constant */
62
+ .highlight .kd {
63
+ color: #66d9ef;
64
+ } /* Keyword.Declaration */
65
+ .highlight .kn {
66
+ color: #f92672;
67
+ } /* Keyword.Namespace */
68
+ .highlight .kp {
69
+ color: #66d9ef;
70
+ } /* Keyword.Pseudo */
71
+ .highlight .kr {
72
+ color: #66d9ef;
73
+ } /* Keyword.Reserved */
74
+ .highlight .kt {
75
+ color: #66d9ef;
76
+ } /* Keyword.Type */
77
+ .highlight .ld {
78
+ color: #e6db74;
79
+ } /* Literal.Date */
80
+ .highlight .m {
81
+ color: #ae81ff;
82
+ } /* Literal.Number */
83
+ .highlight .s {
84
+ color: #e6db74;
85
+ } /* Literal.String */
86
+ .highlight .na {
87
+ color: #a6e22e;
88
+ } /* Name.Attribute */
89
+ .highlight .nb {
90
+ color: #f8f8f2;
91
+ } /* Name.Builtin */
92
+ .highlight .nc {
93
+ color: #a6e22e;
94
+ } /* Name.Class */
95
+ .highlight .no {
96
+ color: #66d9ef;
97
+ } /* Name.Constant */
98
+ .highlight .nd {
99
+ color: #a6e22e;
100
+ } /* Name.Decorator */
101
+ .highlight .ni {
102
+ color: #f8f8f2;
103
+ } /* Name.Entity */
104
+ .highlight .ne {
105
+ color: #a6e22e;
106
+ } /* Name.Exception */
107
+ .highlight .nf {
108
+ color: #a6e22e;
109
+ } /* Name.Function */
110
+ .highlight .nl {
111
+ color: #f8f8f2;
112
+ } /* Name.Label */
113
+ .highlight .nn {
114
+ color: #f8f8f2;
115
+ } /* Name.Namespace */
116
+ .highlight .nx {
117
+ color: #a6e22e;
118
+ } /* Name.Other */
119
+ .highlight .py {
120
+ color: #f8f8f2;
121
+ } /* Name.Property */
122
+ .highlight .nt {
123
+ color: #f92672;
124
+ } /* Name.Tag */
125
+ .highlight .nv {
126
+ color: #f8f8f2;
127
+ } /* Name.Variable */
128
+ .highlight .ow {
129
+ color: #f92672;
130
+ } /* Operator.Word */
131
+ .highlight .w {
132
+ color: #f8f8f2;
133
+ } /* Text.Whitespace */
134
+ .highlight .mf {
135
+ color: #ae81ff;
136
+ } /* Literal.Number.Float */
137
+ .highlight .mh {
138
+ color: #ae81ff;
139
+ } /* Literal.Number.Hex */
140
+ .highlight .mi {
141
+ color: #ae81ff;
142
+ }
143
+ /* Literal.Number.Integer */
144
+ .highlight .mo {
145
+ color: #ae81ff;
146
+ } /* Literal.Number.Oct */
147
+ .highlight .sb {
148
+ color: #e6db74;
149
+ } /* Literal.String.Backtick */
150
+ .highlight .sc {
151
+ color: #e6db74;
152
+ } /* Literal.String.Char */
153
+ .highlight .sd {
154
+ color: #e6db74;
155
+ } /* Literal.String.Doc */
156
+ .highlight .s2 {
157
+ color: #e6db74;
158
+ } /* Literal.String.Double */
159
+ .highlight .se {
160
+ color: #ae81ff;
161
+ } /* Literal.String.Escape */
162
+ .highlight .sh {
163
+ color: #e6db74;
164
+ } /* Literal.String.Heredoc */
165
+ .highlight .si {
166
+ color: #e6db74;
167
+ } /* Literal.String.Interpol */
168
+ .highlight .sx {
169
+ color: #e6db74;
170
+ } /* Literal.String.Other */
171
+ .highlight .sr {
172
+ color: #e6db74;
173
+ } /* Literal.String.Regex */
174
+ .highlight .s1 {
175
+ color: #e6db74;
176
+ } /* Literal.String.Single */
177
+ .highlight .ss {
178
+ color: #e6db74;
179
+ } /* Literal.String.Symbol */
180
+ .highlight .bp {
181
+ color: #f8f8f2;
182
+ } /* Name.Builtin.Pseudo */
183
+ .highlight .vc {
184
+ color: #f8f8f2;
185
+ } /* Name.Variable.Class */
186
+ .highlight .vg {
187
+ color: #f8f8f2;
188
+ } /* Name.Variable.Global */
189
+ .highlight .vi {
190
+ color: #f8f8f2;
191
+ } /* Name.Variable.Instance */
192
+ .highlight .il {
193
+ color: #ae81ff;
194
+ } /* Literal.Number.Integer.Long */
13
195
 
14
- .highlighter-rouge & {
15
- background: #eef;
16
- }
196
+ .highlight .gh {
197
+ } /* Generic Heading & Diff Header */
198
+ .highlight .gu {
199
+ color: #75715e;
200
+ } /* Generic.Subheading & Diff Unified/Comment? */
201
+ .highlight .gd {
202
+ color: #f92672;
203
+ } /* Generic.Deleted & Diff Deleted */
204
+ .highlight .gi {
205
+ color: #a6e22e;
206
+ } /* Generic.Inserted & Diff Inserted */
17
207
 
18
- .c { color: #998; font-style: italic } // Comment
19
- .err { color: #a61717; background-color: #e3d2d2 } // Error
20
- .k { font-weight: bold } // Keyword
21
- .o { font-weight: bold } // Operator
22
- .cm { color: #998; font-style: italic } // Comment.Multiline
23
- .cp { color: #999; font-weight: bold } // Comment.Preproc
24
- .c1 { color: #998; font-style: italic } // Comment.Single
25
- .cs { color: #999; font-weight: bold; font-style: italic } // Comment.Special
26
- .gd { color: #000; background-color: #fdd } // Generic.Deleted
27
- .gd .x { color: #000; background-color: #faa } // Generic.Deleted.Specific
28
- .ge { font-style: italic } // Generic.Emph
29
- .gr { color: #a00 } // Generic.Error
30
- .gh { color: #999 } // Generic.Heading
31
- .gi { color: #000; background-color: #dfd } // Generic.Inserted
32
- .gi .x { color: #000; background-color: #afa } // Generic.Inserted.Specific
33
- .go { color: #888 } // Generic.Output
34
- .gp { color: #555 } // Generic.Prompt
35
- .gs { font-weight: bold } // Generic.Strong
36
- .gu { color: #aaa } // Generic.Subheading
37
- .gt { color: #a00 } // Generic.Traceback
38
- .kc { font-weight: bold } // Keyword.Constant
39
- .kd { font-weight: bold } // Keyword.Declaration
40
- .kp { font-weight: bold } // Keyword.Pseudo
41
- .kr { font-weight: bold } // Keyword.Reserved
42
- .kt { color: #458; font-weight: bold } // Keyword.Type
43
- .m { color: #099 } // Literal.Number
44
- .s { color: #d14 } // Literal.String
45
- .na { color: #008080 } // Name.Attribute
46
- .nb { color: #0086B3 } // Name.Builtin
47
- .nc { color: #458; font-weight: bold } // Name.Class
48
- .no { color: #008080 } // Name.Constant
49
- .ni { color: #800080 } // Name.Entity
50
- .ne { color: #900; font-weight: bold } // Name.Exception
51
- .nf { color: #900; font-weight: bold } // Name.Function
52
- .nn { color: #555 } // Name.Namespace
53
- .nt { color: #000080 } // Name.Tag
54
- .nv { color: #008080 } // Name.Variable
55
- .ow { font-weight: bold } // Operator.Word
56
- .w { color: #bbb } // Text.Whitespace
57
- .mf { color: #099 } // Literal.Number.Float
58
- .mh { color: #099 } // Literal.Number.Hex
59
- .mi { color: #099 } // Literal.Number.Integer
60
- .mo { color: #099 } // Literal.Number.Oct
61
- .sb { color: #d14 } // Literal.String.Backtick
62
- .sc { color: #d14 } // Literal.String.Char
63
- .sd { color: #d14 } // Literal.String.Doc
64
- .s2 { color: #d14 } // Literal.String.Double
65
- .se { color: #d14 } // Literal.String.Escape
66
- .sh { color: #d14 } // Literal.String.Heredoc
67
- .si { color: #d14 } // Literal.String.Interpol
68
- .sx { color: #d14 } // Literal.String.Other
69
- .sr { color: #009926 } // Literal.String.Regex
70
- .s1 { color: #d14 } // Literal.String.Single
71
- .ss { color: #990073 } // Literal.String.Symbol
72
- .bp { color: #999 } // Name.Builtin.Pseudo
73
- .vc { color: #008080 } // Name.Variable.Class
74
- .vg { color: #008080 } // Name.Variable.Global
75
- .vi { color: #008080 } // Name.Variable.Instance
76
- .il { color: #099 } // Literal.Number.Integer.Long
208
+ .highlight span.dl {
209
+ color: #e6db74;
77
210
  }
211
+ /* Colon */
212
+ .highlight .pi {
213
+ color: #a6e22e;
214
+ }
78
215
 
79
- .highlighter-rouge {
80
- background-color: whitesmoke;
81
- }
216
+ .language-html {
217
+ color: #a6e22e;
218
+ display: flex;
219
+ }
@@ -2,14 +2,15 @@
2
2
  /// Colors
3
3
  ////
4
4
 
5
- $white: #FFF;
6
- $jumbo-gray: #807F89;
7
- $outer-space: #343A40;
5
+ $white: #fff;
6
+ $jumbo-gray: #807f89;
7
+ $outer-space: #343a40;
8
8
  $dark-sea-green: darkseagreen;
9
- $sea-pink: #ECA4A6;
10
- $purple-rain: #513C61;
11
- $channel-orange: #DE763F;
9
+ $sea-pink: #eca4a6;
10
+ $purple-rain: #513c61;
11
+ $channel-orange: #de763f;
12
12
  $mine-shaft: #333;
13
- $bittersweet: #FF6B6B;
13
+ $bittersweet: #ff6b6b;
14
14
  $darken--button: 5%;
15
15
  $lighten--button: 25%;
16
+ $react-blue: #61dafb;
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-collider
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Brown
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-11-01 00:00:00.000000000 Z
11
+ date: 2022-11-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll