diff --git a/CHANGELOG.md b/CHANGELOG.md index 734b492..48dc0bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +# 1.0.5 + +* Add better theming support + # 1.0.4 * Fix thunk status click handler diff --git a/tailwind.config.js b/tailwind.config.js index b4e9c83..a44a84d 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -29,16 +29,16 @@ export default { dark: { ...themes["dark"], primary: process.env.VITE_PLATFORM_ACCENT, - "primary-content": "#EAE7FF", + "primary-content": process.env.VITE_PLATFORM_ACCENT_CONTENT || "#EAE7FF", secondary: process.env.VITE_PLATFORM_SECONDARY, - "secondary-content": "#EAE7FF", + "secondary-content": process.env.VITE_PLATFORM_SECONDARY_CONTENT || "#EAE7FF", }, light: { ...themes["winter"], primary: process.env.VITE_PLATFORM_ACCENT, - "primary-content": "#EAE7FF", + "primary-content": process.env.VITE_PLATFORM_ACCENT_CONTENT || "#EAE7FF", secondary: process.env.VITE_PLATFORM_SECONDARY, - "secondary-content": "#EAE7FF", + "secondary-content": process.env.VITE_PLATFORM_SECONDARY_CONTENT || "#EAE7FF", }, }, ],