Themes Name changed

This commit is contained in:
JCBSComputer
2026-06-30 11:55:44 +02:00
parent 1d080761fb
commit 4b2ea3db2a
6 changed files with 53 additions and 53 deletions
+1 -1
View File
@@ -34,7 +34,7 @@ const backgroundOptions = [
{ value: "default", label: "None", icon: Shield, color: "bg-gray-400", ring: "ring-gray-400", desc: "No background theme" },
{ value: "spidey", label: "Spidey", icon: Shield, color: "bg-red-600", ring: "ring-red-600", desc: "Dark theme with red accents" },
{ value: "cosmic", label: "Cosmic", icon: Shield, color: "bg-gradient-to-r from-purple-500 to-green-500", ring: "ring-purple-500", desc: "Deep space with purple nebula and cyan accents" },
{ value: "cyber", label: "Cyber", icon: Shield, color: "bg-gradient-to-r from-cyan-400 to-fuchsia-500", ring: "ring-cyan-400", desc: "Neon grid with magenta and cyan glow" },
{ value: "cyber2", label: "Cyber2.0", icon: Shield, color: "bg-gradient-to-r from-cyan-400 to-fuchsia-500", ring: "ring-cyan-400", desc: "Neon grid with magenta and cyan glow" },
]
function getStoredColorTheme(): string {
+1 -1
View File
@@ -7,7 +7,7 @@ const WEBSITE_THEME_KEY = "crm-website-theme"
const themeClasses: Record<string, string> = {
spidey: "theme-spidey",
cosmic: "theme-cosmic",
cyber: "theme-cyber",
cyber2: "theme-cyber2",
}
interface WebsiteThemeContextValue {