From 81ffe48a30dd85f3414d326d3e16bf0ff27b3064 Mon Sep 17 00:00:00 2001 From: James Lawton Date: Tue, 5 Mar 2024 10:59:43 +0000 Subject: [PATCH] commented out colors --- vocs.config.tsx | 30 ++++++++++++++---------------- 1 file changed, 14 insertions(+), 16 deletions(-) diff --git a/vocs.config.tsx b/vocs.config.tsx index 64f9926208..7cd3986238 100644 --- a/vocs.config.tsx +++ b/vocs.config.tsx @@ -39,33 +39,31 @@ export default defineConfig({ // ], theme: { - accentColor: { - light: '#442CA8', - dark: '#99ADED', - }, + // accentColor: { + // light: '#442CA8', + // dark: '#99ADED', + // }, variables: { fontFamily: { default: 'Inter', // mono: 'Roboto Mono' - }, - color: { - background: { - light: '#eeeeee', - dark: '#111111', - }, + } + // color: { + // background: { + // light: '#eeeeee', + // dark: '#111111', + // }, // background5: { // light: '#dddddd', // dark: '#111111', // } - backgroundDark: { - light: '#dddddd', - dark: '#151515' - } + // backgroundDark: { + // light: '#dddddd', + // dark: '#151515' + // } } } - } - })