Improved contrast for inline code blocks

This commit is contained in:
squidfunk 2020-08-16 10:35:50 +02:00
parent 31bbd76cd3
commit 4a96f62e9a
5 changed files with 7 additions and 7 deletions

View File

@ -9,6 +9,6 @@
"assets/stylesheets/main.css.map": "assets/stylesheets/main.228d2bc1.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.05036cbf.min.css",
"assets/stylesheets/palette.css.map": "assets/stylesheets/palette.05036cbf.min.css.map"
"assets/stylesheets/palette.css": "assets/stylesheets/palette.2c2767bb.min.css",
"assets/stylesheets/palette.css.map": "assets/stylesheets/palette.2c2767bb.min.css.map"
}

View File

@ -43,7 +43,7 @@
{% block styles %}
<link rel="stylesheet" href="{{ 'assets/stylesheets/main.228d2bc1.min.css' | url }}">
{% if palette.scheme or palette.primary or palette.accent %}
<link rel="stylesheet" href="{{ 'assets/stylesheets/palette.05036cbf.min.css' | url }}">
<link rel="stylesheet" href="{{ 'assets/stylesheets/palette.2c2767bb.min.css' | url }}">
{% endif %}
{% if palette.primary %}
{% import "partials/palette.html" as map %}

View File

@ -44,7 +44,7 @@
// Code color shades
--md-code-fg-color: hsla(var(--md-hue), 18%, 86%, 1);
--md-code-bg-color: hsla(var(--md-hue), 15%, 18%, 1);
--md-code-bg-color: hsla(var(--md-hue), 15%, 15%, 1);
// Code highlighting color shades
--md-code-hl-color: hsla(#{hex2hsl($clr-blue-a200)}, 0.15);