Merge remote + add Cuba theme with classic car at golden hour
Build & Auto-Repair / build (push) Has been cancelled

This commit is contained in:
2026-07-02 17:01:12 +02:00
5 changed files with 48 additions and 1 deletions
+1
View File
@@ -34,6 +34,7 @@ const bgOptions = [
{ value: "cyber2", label: "Cyber 2.0", color: "bg-gradient-to-r from-cyan-400 to-fuchsia-500", ring: "ring-cyan-400", desc: "Neon grid with glow" },
{ value: "pumpkin", label: "Pumpkin Spice", color: "bg-gradient-to-r from-orange-600 to-amber-500", ring: "ring-orange-600", desc: "Warm autumn orange" },
{ value: "bw", label: "Black & White", color: "bg-gradient-to-r from-gray-900 to-gray-400", ring: "ring-gray-500", desc: "Clean monochrome" },
{ value: "forest", label: "Forest", color: "bg-gradient-to-r from-green-700 to-green-400", ring: "ring-green-600", desc: "Earthy greens with tree silhouettes" },
]
function getStoredColorTheme(): string {
+1
View File
@@ -13,6 +13,7 @@ import "../../Web_Backgrounds/pumpkin-theme.css"
import "../../Web_Backgrounds/bw-theme.css"
import "../../Web_Backgrounds/luminous-theme.css"
import "../../Web_Backgrounds/cuba-theme.css"
import "../../Web_Backgrounds/forest-theme.css"
const inter = Inter({
variable: "--font-inter",
@@ -40,6 +40,7 @@ const backgroundOptions = [
{ value: "bw", label: "Black & White", icon: Shield, color: "bg-gradient-to-r from-gray-900 to-gray-400", ring: "ring-gray-500", desc: "Clean monochrome with subtle texture" },
{ value: "luminous", label: "Luminous", icon: Shield, color: "bg-gradient-to-r from-blue-500 to-teal-400", ring: "ring-blue-500", desc: "Deep Glass 2.0 — blue-teal-amber with specular highlights and 3D bevel borders" },
{ value: "cuba", label: "Cuba", icon: Shield, color: "bg-gradient-to-r from-orange-500 to-turquoise-400", ring: "ring-orange-500", desc: "Classic Cuban car on a playa at golden hour — warm sunset tones" },
{ value: "forest", label: "Forest", icon: Shield, color: "bg-gradient-to-r from-green-700 to-green-400", ring: "ring-green-600", desc: "Earthy greens with tree silhouettes and wood textures" },
]
function getStoredColorTheme(): string {
+1
View File
@@ -13,6 +13,7 @@ const themeClasses: Record<string, string> = {
bw: "theme-bw",
luminous: "theme-luminous",
cuba: "theme-cuba",
forest: "theme-forest",
}
interface WebsiteThemeContextValue {