fix: before footer block, button color

This commit is contained in:
RizqiSyahrendra 2025-03-04 10:16:47 +07:00
parent 8703cbaa53
commit 39769d4313
3 changed files with 4 additions and 1 deletions

View File

@ -10,6 +10,7 @@
--ext-color-primary-5: #e7ccc0; --ext-color-primary-5: #e7ccc0;
--ext-color-primary-6: #64b3b4; --ext-color-primary-6: #64b3b4;
--ext-color-primary-7: #a8dcca; --ext-color-primary-7: #a8dcca;
--ext-color-primary-8: #e3b19b;
--background: #ffffff; --background: #ffffff;
--foreground: #171717; --foreground: #171717;
} }
@ -23,6 +24,7 @@
--ext-color-primary-5: #e7ccc0; --ext-color-primary-5: #e7ccc0;
--ext-color-primary-6: #64b3b4; --ext-color-primary-6: #64b3b4;
--ext-color-primary-7: #a8dcca; --ext-color-primary-7: #a8dcca;
--ext-color-primary-8: #e3b19b;
--background: #0a0a0a; --background: #0a0a0a;
--foreground: #ededed; --foreground: #ededed;
} }

View File

@ -52,7 +52,7 @@ export function BeforeFooterBlock({ title, description, buttonText, showLinier =
<div className="pt-5"> <div className="pt-5">
<Link <Link
href="/contact" href="/contact"
className="inline-block bg-[#2E2D51] hover:bg-[#232244] text-white py-3 px-6 rounded-full text-lg shadow-lg transition-all" className="inline-block bg-extColorPrimary6 hover:bg-extColorPrimary8 text-white py-3 px-6 rounded-full text-lg shadow-lg transition-all duration-500"
> >
{buttonText ?? placeholderButtonText} {buttonText ?? placeholderButtonText}
</Link> </Link>

View File

@ -18,6 +18,7 @@ export default {
extColorPrimary5: "var(--ext-color-primary-5)", extColorPrimary5: "var(--ext-color-primary-5)",
extColorPrimary6: "var(--ext-color-primary-6)", extColorPrimary6: "var(--ext-color-primary-6)",
extColorPrimary7: "var(--ext-color-primary-7)", extColorPrimary7: "var(--ext-color-primary-7)",
extColorPrimary8: "var(--ext-color-primary-8)",
}, },
}, },
}, },