From e9734cc0d1b2e1ccbbcd572504de8359b8288516 Mon Sep 17 00:00:00 2001 From: John Bowdre Date: Sun, 2 Jan 2022 13:25:07 -0600 Subject: [PATCH] swap inline code colors with those from VMware's Clarity spec to improve contrast --- assets/sass/_override.sass | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/assets/sass/_override.sass b/assets/sass/_override.sass index 29adae2..84a042e 100644 --- a/assets/sass/_override.sass +++ b/assets/sass/_override.sass @@ -1,12 +1,17 @@ html - --theme-dark: #4AAED9 + code + &.noClass + --inlineColor: hsl(198, 100%, 24%) + background: hsl(198, 0%, 91%) + @mixin darkmode &[data-mode="dim"] @include darkmode code &.noClass - background: var(--code-bg) !important + --inlineColor: hsl(194, 57%, 71%) + background: hsl(198, 28%, 18%) .post_content a - color: var(--theme-dark) \ No newline at end of file + color: hsl(198, 65%, 57%) \ No newline at end of file