From a81027a4c40cde29309f10badca2b3158f6fe365 Mon Sep 17 00:00:00 2001 From: Aditya Thakral Date: Tue, 24 Aug 2021 11:50:48 -0400 Subject: [PATCH] Add new color: --code-background --- components/Theme.tsx | 2 ++ pages/_app.css | 2 ++ 2 files changed, 4 insertions(+) diff --git a/components/Theme.tsx b/components/Theme.tsx index 0c697b1c..15698e21 100644 --- a/components/Theme.tsx +++ b/components/Theme.tsx @@ -38,6 +38,8 @@ export const PALETTE_NAMES = [ "--input-placeholder-text", "--input-text", + "--code-background", + "--navbar-page-overlay", ] as const; diff --git a/pages/_app.css b/pages/_app.css index 0c63a4f9..b0c6d313 100644 --- a/pages/_app.css +++ b/pages/_app.css @@ -26,6 +26,8 @@ body { --input-placeholder-text: #bbbbbb; --input-text: #6b6b6b; + --code-background: #f0f0f0; + --navbar-page-overlay: #787878b2; background-color: var(--primary-background);