diff --git a/src/app/components/LinkButton/LinkButton.tsx b/src/app/components/LinkButton/LinkButton.tsx index 935d598..81edd83 100644 --- a/src/app/components/LinkButton/LinkButton.tsx +++ b/src/app/components/LinkButton/LinkButton.tsx @@ -3,7 +3,8 @@ import Link, { LinkProps } from 'next/link'; const BUTTON_STYLES = { primary: { - button: 'usa-button bg-[#224a58] hover:bg-green', + button: + 'usa-button bg-violet-warm-60 hover:bg-violet-warm-50 active:bg-violet-warm-70', text: 'text-white', }, secondary: { @@ -33,7 +34,7 @@ export function LinkButton({ if (disabled) { return (
diff --git a/tailwind.config.ts b/tailwind.config.ts index 4dcc94f..bbbab4d 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -11,6 +11,11 @@ const config: Config = { colors: { background: 'var(--background)', foreground: 'var(--foreground)', + 'violet-warm': { + 50: '#b04abd', + 60: '#864381', + 70: '#5c395a', + }, }, }, },