From d0f1a909d3696cee76112de5882eb8c1fe5fc0c6 Mon Sep 17 00:00:00 2001 From: mntn <85877297+mntn-xyz@users.noreply.github.com> Date: Tue, 3 Aug 2021 10:36:11 -0400 Subject: [PATCH] Add missing colors to gruvbox-light.css Add orange and gray (plus bright variants) --- static/css/colour/gruvbox-light.css | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/static/css/colour/gruvbox-light.css b/static/css/colour/gruvbox-light.css index 830933a..cff8fa3 100644 --- a/static/css/colour/gruvbox-light.css +++ b/static/css/colour/gruvbox-light.css @@ -2,22 +2,29 @@ * https://github.com/morhetz/gruvbox */ :root { + --dark-black: #282828; --black: #3c3836; + --bright-black: #928374; + + --white: #fbf1c7; + --bright-white: #f9f5d7; + --red: #9d0006; --green: #79740e; --yellow: #b57614; --blue: #076678; --magenta: #8f3f71; --cyan: #427b58; - --white: #fbf1c7; - --dark-black: #282828; + --orange: #af3a03; + --gray: #7c6f64; + --dark-white: #f2e5bc; - --bright-black: #928374; --bright-red: #cc241d; --bright-green: #98971a; --bright-yellow: #d79921; --bright-blue: #458588; --bright-magenta: #b16286; --bright-cyan: #689d6a; - --bright-white: #f9f5d7; + --bright-orange: #d65d0e; + --bright-gray: #928374; }