From 3775bbc4c50e8e90a3b7da8df3e00edf2e669504 Mon Sep 17 00:00:00 2001 From: sageTheDM Date: Fri, 20 Sep 2024 11:12:28 +0200 Subject: [PATCH] Last commit before tailwind testing --- tailwind.config.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tailwind.config.ts b/tailwind.config.ts index d43da91..a883ff7 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -9,11 +9,13 @@ const config: Config = { theme: { extend: { colors: { - background: "var(--background)", - foreground: "var(--foreground)", + 'history-background': 'var(--history-background-color)', + 'text-color': 'var(--text-color)', + 'input-button-hover-color': 'var(--input-button-hover-color)', }, }, }, plugins: [], }; + export default config;