jekyll-whiteglass 1.8.2 → 1.9.0

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: e71aa21fc58f71f85e1ee1769d50e7237a3f89214f7e832ac6cb893311584e23
4
- data.tar.gz: 38849adeb10447114c0289f1fdf94ec219ba4d6389bb10fdf85159ffacd9300d
3
+ metadata.gz: 5e4ee08949030f7fc3978090165a7b1111d696da8d029b8546a770fdcb8c132e
4
+ data.tar.gz: ed59077cb5f579c46cf385b056f6cc34daae1c26bcccbca7bec7b447699071da
5
5
  SHA512:
6
- metadata.gz: 035b3dd4da5154e7147b5fc08e9f96f049ea30240e282db5a1b5b0a81e1bb4e7465c80766dc4e824fdeb975d3939e2f5e378d39f574bb35530251ceda69eb80a
7
- data.tar.gz: 227848bd8f535e8eba23d572e261beae9e140483c2e112b40872fc2ed2792644db51ac4ce1f64e483d796cf9c1ddb3ce353fe72a834c68c574848d4abd3e799b
6
+ metadata.gz: 581b1e1c1a32722dcf00647121672ef6a241ed124fb2d970bbad56fbad7180457e90d6866abf98a8192dc6ef5a1306c71187fff91286d9d64db3664a1082d395
7
+ data.tar.gz: d8ad0f133bc9b82125b7b04a85e76d5d9df7b30869ab9a378518acc222b054ab275721efc98f56d022d6a01cc2f05bc06f19e536b53b48e1ce0a9f8f4d208e22
@@ -1,5 +1,13 @@
1
1
  # ChangeLog
2
2
 
3
+ ## 1.9.0 (2019-08-26)
4
+
5
+ - Adjust $grey-color to conform to WCAG 2.0 AA (#26)
6
+ - Support Jekyll 4.0
7
+ - Fix insufficient contrast in syntax highlighting (#26)
8
+ - Validate HTML, CSS, SVG files with html5validator
9
+ - Test accessibility of site with pa11y-ci
10
+
3
11
  ## 1.8.2 (2019-05-25)
4
12
 
5
13
  - Use font-display: swap for Google Fonts
@@ -12,9 +12,9 @@ $text-color: #111 !default;
12
12
  $background-color: #fdfdfd !default;
13
13
  $brand-color: #2568ba !default;
14
14
 
15
- $grey-color: #828282 !default;
16
- $grey-color-light: lighten($grey-color, 40%) !default;
17
- $grey-color-dark: darken($grey-color, 25%) !default;
15
+ $grey-color: #757575 !default;
16
+ $grey-color-light: lighten($grey-color, 45%) !default;
17
+ $grey-color-dark: darken($grey-color, 20%) !default;
18
18
 
19
19
  // Width of the content area
20
20
  $content-width: 800px !default;
@@ -154,7 +154,7 @@ code {
154
154
  font-size: 13px;
155
155
  border: 1px solid $grey-color-light;
156
156
  border-radius: 0;
157
- background-color: lighten($grey-color-light, 5%);
157
+ background-color: #f8f8f8;
158
158
  }
159
159
 
160
160
  code {
@@ -9,21 +9,21 @@
9
9
  background-color: #f8f8f8;
10
10
  }
11
11
 
12
- .cm { color: #998; font-style: italic } // Comment.Multiline
13
- .cp { color: #999; font-weight: bold } // Comment.Preproc
14
- .c1 { color: #998; font-style: italic } // Comment.Single
15
- .cs { color: #999; font-weight: bold; font-style: italic } // Comment.Special
16
- .c, .cd { color: #998; font-style: italic } // Comment, Comment.Doc
12
+ .cm { color: #727262; font-style: italic } // Comment.Multiline
13
+ .cp { color: #727272; font-weight: bold } // Comment.Preproc
14
+ .c1 { color: #727262; font-style: italic } // Comment.Single
15
+ .cs { color: #727272; font-weight: bold; font-style: italic } // Comment.Special
16
+ .c, .cd { color: #727262; font-style: italic } // Comment, Comment.Doc
17
17
  .err { color: #a61717; background-color: #e3d2d2 } // Error
18
18
  .gd { color: #000; background-color: #fdd } // Generic.Deleted
19
19
  .ge { color: #000; font-style: italic } // Generic.Emph
20
20
  .gr { color: #a00 } // Generic.Error
21
- .gh { color: #999 } // Generic.Heading
21
+ .gh { color: #727272 } // Generic.Heading
22
22
  .gi { color: #000; background-color: #dfd } // Generic.Inserted
23
- .go { color: #888 } // Generic.Output
23
+ .go { color: #727272 } // Generic.Output
24
24
  .gp { color: #555 } // Generic.Prompt
25
25
  .gs { font-weight: bold } // Generic.Strong
26
- .gu { color: #aaa } // Generic.Subheading
26
+ .gu { color: #727272 } // Generic.Subheading
27
27
  .gt { color: #a00 } // Generic.Traceback
28
28
  .kc { color: #000; font-weight: bold } // Keyword.Constant
29
29
  .kd { color: #000; font-weight: bold } // Keyword.Declaration
@@ -32,12 +32,12 @@
32
32
  .kr { color: #000; font-weight: bold } // Keyword.Reserved
33
33
  .kt { color: #458; font-weight: bold } // Keyword.Type
34
34
  .k, .kv { color: #000; font-weight: bold } // Keyword, Keyword.Variable
35
- .mf { color: #099 } // Literal.Number.Float
36
- .mh { color: #099 } // Literal.Number.Hex
37
- .il { color: #099 } // Literal.Number.Integer.Long
38
- .mi { color: #099 } // Literal.Number.Integer
39
- .mo { color: #099 } // Literal.Number.Oct
40
- .m, .mb, .mx { color: #099 } // Literal.Number, Literal.Number.Bin, Literal.Number.Other
35
+ .mf { color: #007f7f } // Literal.Number.Float
36
+ .mh { color: #007f7f } // Literal.Number.Hex
37
+ .il { color: #007f7f } // Literal.Number.Integer.Long
38
+ .mi { color: #007f7f } // Literal.Number.Integer
39
+ .mo { color: #007f7f } // Literal.Number.Oct
40
+ .m, .mb, .mx { color: #007f7f } // Literal.Number, Literal.Number.Bin, Literal.Number.Other
41
41
  .sb { color: #d14 } // Literal.String.Backtick
42
42
  .sc { color: #d14 } // Literal.String.Char
43
43
  .sd { color: #d14 } // Literal.String.Doc
@@ -46,15 +46,15 @@
46
46
  .sh { color: #d14 } // Literal.String.Heredoc
47
47
  .si { color: #d14 } // Literal.String.Interpol
48
48
  .sx { color: #d14 } // Literal.String.Other
49
- .sr { color: #009926 } // Literal.String.Regex
49
+ .sr { color: #008522 } // Literal.String.Regex
50
50
  .s1 { color: #d14 } // Literal.String.Single
51
51
  .ss { color: #990073 } // Literal.String.Symbol
52
52
  .s { color: #d14 } // Literal.String
53
- .na { color: #008080 } // Name.Attribute
54
- .bp { color: #999 } // Name.Builtin.Pseudo
55
- .nb { color: #0086B3 } // Name.Builtin
53
+ .na { color: #007f7f } // Name.Attribute
54
+ .bp { color: #727272 } // Name.Builtin.Pseudo
55
+ .nb { color: #007aa3 } // Name.Builtin
56
56
  .nc { color: #458; font-weight: bold } // Name.Class
57
- .no { color: #008080 } // Name.Constant
57
+ .no { color: #007f7f } // Name.Constant
58
58
  .nd { color: #3c5d5d; font-weight: bold } // Name.Decorator
59
59
  .ni { color: #800080 } // Name.Entity
60
60
  .ne { color: #900; font-weight: bold } // Name.Exception
@@ -62,11 +62,11 @@
62
62
  .nl { color: #900; font-weight: bold } // Name.Label
63
63
  .nn { color: #555 } // Name.Namespace
64
64
  .nt { color: #000080 } // Name.Tag
65
- .vc { color: #008080 } // Name.Variable.Class
66
- .vg { color: #008080 } // Name.Variable.Global
67
- .vi { color: #008080 } // Name.Variable.Instance
68
- .nv { color: #008080 } // Name.Variable
65
+ .vc { color: #007f7f } // Name.Variable.Class
66
+ .vg { color: #007f7f } // Name.Variable.Global
67
+ .vi { color: #007f7f } // Name.Variable.Instance
68
+ .nv { color: #007f7f } // Name.Variable
69
69
  .ow { color: #000; font-weight: bold } // Operator.Word
70
70
  .o { color: #000; font-weight: bold } // Operator
71
- .w { color: #bbb } // Text.Whitespace
71
+ .w { color: #727272 } // Text.Whitespace
72
72
  }
@@ -17,9 +17,9 @@ $text-color: #111;
17
17
  $background-color: #fdfdfd;
18
18
  $brand-color: #2568ba;
19
19
 
20
- $grey-color: #828282;
21
- $grey-color-light: lighten($grey-color, 40%);
22
- $grey-color-dark: darken($grey-color, 25%);
20
+ $grey-color: #757575;
21
+ $grey-color-light: lighten($grey-color, 45%);
22
+ $grey-color-dark: darken($grey-color, 20%);
23
23
 
24
24
  // Width of the content area
25
25
  $content-width: 800px;
metadata CHANGED
@@ -1,27 +1,27 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-whiteglass
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.8.2
4
+ version: 1.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chayoung You
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-05-25 00:00:00.000000000 Z
11
+ date: 2019-08-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: '3.3'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - "~>"
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: '3.3'
27
27
  - !ruby/object:Gem::Dependency