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;