diff --git a/src/app/page.tsx b/src/app/page.tsx index cb843a5..1e7e306 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -26,19 +26,25 @@ export default function Home() { const themeColors: { [key: string]: { backgroundColor: string; + infoCardColor: string; textColor: string; buttonTextColor: string; + footerTextColor: string; }; } = { dark: { - backgroundColor: "bg-neutral-900", + backgroundColor: "bg-neutral-800", + infoCardColor: "bg-neutral-900", textColor: "text-white", buttonTextColor: "text-white", + footerTextColor: "text-blue-300", }, light: { - backgroundColor: "bg-white", + backgroundColor: "bg-gray-300", + infoCardColor: "bg-white", textColor: "text-black", buttonTextColor: "text-white", + footerTextColor: "text-black", }, }; const selectedTheme = themeColors[theme] || themeColors.dark; // The theme to use (fallback of dark) @@ -46,7 +52,7 @@ export default function Home() { return ( <>
{/* Background Image */} {background.showBackground && background.backgroundImage && ( @@ -63,7 +69,7 @@ export default function Home() { /> )}
{/* Footer */} -
+
{options.showSourceLink && ( Website Source