Add light theme and secondary color

This commit is contained in:
Jon Staab
2025-05-12 08:47:44 -07:00
parent 317ab57ed2
commit 12fcdfcd4f
7 changed files with 36 additions and 3 deletions
+9
View File
@@ -30,6 +30,15 @@ export default {
...themes["dark"],
primary: process.env.VITE_PLATFORM_ACCENT,
"primary-content": "#EAE7FF",
secondary: process.env.VITE_PLATFORM_SECONDARY,
"secondary-content": "#EAE7FF",
},
light: {
...themes["winter"],
primary: process.env.VITE_PLATFORM_ACCENT,
"primary-content": "#EAE7FF",
secondary: process.env.VITE_PLATFORM_SECONDARY,
"secondary-content": "#EAE7FF",
},
},
],