Skip to content

Commit

Permalink
Improved contrast for constant syntax highlighting
Browse files Browse the repository at this point in the history
  • Loading branch information
squidfunk committed Aug 16, 2020
1 parent 8bc46a2 commit 20aa7de
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions material/assets/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"assets/javascripts/vendor.js.map": "assets/javascripts/vendor.d1f5a259.min.js.map",
"assets/javascripts/worker/search.js": "assets/javascripts/worker/search.fae956e7.min.js",
"assets/javascripts/worker/search.js.map": "assets/javascripts/worker/search.fae956e7.min.js.map",
"assets/stylesheets/main.css": "assets/stylesheets/main.3264c897.min.css",
"assets/stylesheets/main.css.map": "assets/stylesheets/main.3264c897.min.css.map",
"assets/stylesheets/main.css": "assets/stylesheets/main.89c4ab75.min.css",
"assets/stylesheets/main.css.map": "assets/stylesheets/main.89c4ab75.min.css.map",
"assets/stylesheets/overrides.css": "assets/stylesheets/overrides.011ebae6.min.css",
"assets/stylesheets/overrides.css.map": "assets/stylesheets/overrides.011ebae6.min.css.map",
"assets/stylesheets/palette.css": "assets/stylesheets/palette.2c2767bb.min.css",
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion material/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
{% endif %}
{% endblock %}
{% block styles %}
<link rel="stylesheet" href="{{ 'assets/stylesheets/main.3264c897.min.css' | url }}">
<link rel="stylesheet" href="{{ 'assets/stylesheets/main.89c4ab75.min.css' | url }}">
{% if palette.scheme or palette.primary or palette.accent %}
<link rel="stylesheet" href="{{ 'assets/stylesheets/palette.2c2767bb.min.css' | url }}">
{% endif %}
Expand Down
2 changes: 1 addition & 1 deletion src/assets/stylesheets/main/_colors.scss
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
--md-code-hl-number-color: hsla(0, 67%, 51%, 1);
--md-code-hl-special-color: hsla(340, 83%, 47%, 1);
--md-code-hl-function-color: hsla(291, 45%, 50%, 1);
--md-code-hl-constant-color: hsla(250, 63%, 61%, 1);
--md-code-hl-constant-color: hsla(250, 63%, 60%, 1);
--md-code-hl-keyword-color: hsla(219, 54%, 51%, 1);
--md-code-hl-string-color: hsla(150, 63%, 30%, 1);
--md-code-hl-name-color: var(--md-code-fg-color);
Expand Down

0 comments on commit 20aa7de

Please sign in to comment.