diff --git a/src/blocks/FDCardGridBlock/Component.tsx b/src/blocks/FDCardGridBlock/Component.tsx index 7d3364e..cc52009 100644 --- a/src/blocks/FDCardGridBlock/Component.tsx +++ b/src/blocks/FDCardGridBlock/Component.tsx @@ -6,7 +6,7 @@ const cardStyleMap: Record< { bg: string; headingText: string; bodyText: string; linkText: string; border: string } > = { navy: { - bg: 'bg-fd-navy', + bg: 'bg-fd-navy dark:bg-white/10', headingText: 'text-fd-yellow', bodyText: 'text-white', linkText: 'text-fd-yellow hover:text-fd-yellow/80', diff --git a/src/blocks/FDPricingCardBlock/Component.tsx b/src/blocks/FDPricingCardBlock/Component.tsx index 61ca2e1..9d94788 100644 --- a/src/blocks/FDPricingCardBlock/Component.tsx +++ b/src/blocks/FDPricingCardBlock/Component.tsx @@ -29,7 +29,7 @@ const cardStyleMap: Record = { const cardMap: Record = { navy: { - bg: 'bg-fd-navy', + bg: 'bg-fd-navy dark:bg-white/10', name: 'text-fd-yellow', role: 'text-white/70', bio: 'text-white/60', @@ -92,7 +92,7 @@ export const FDTeamBlockComponent: React.FC = ({ fallbackAlt={member.name} /> ) : ( -
+
diff --git a/src/blocks/FDUspChecklistBlock/Component.tsx b/src/blocks/FDUspChecklistBlock/Component.tsx index fb013bf..1cbb9c1 100644 --- a/src/blocks/FDUspChecklistBlock/Component.tsx +++ b/src/blocks/FDUspChecklistBlock/Component.tsx @@ -19,17 +19,17 @@ const bodyMap: Record = { } const checkColors: Record = { - navy: { circle: '#0E2338', check: 'white' }, - yellow: { circle: '#FECC02', check: '#0E2338' }, - gray: { circle: '#F0F0F0', check: '#0E2338' }, + navy: { circle: 'fill-fd-navy dark:fill-white/20', check: 'fill-white dark:fill-fd-yellow' }, + yellow: { circle: 'fill-fd-yellow', check: 'fill-fd-navy' }, + gray: { circle: 'fill-fd-gray-light dark:fill-white/20', check: 'fill-fd-navy dark:fill-white' }, } const CheckIcon: React.FC<{ color: string }> = ({ color }) => { const c = checkColors[color] || checkColors.navy return ( - - + + ) } diff --git a/src/blocks/FDUspTableBlock/Component.tsx b/src/blocks/FDUspTableBlock/Component.tsx index 917f8da..1f697e6 100644 --- a/src/blocks/FDUspTableBlock/Component.tsx +++ b/src/blocks/FDUspTableBlock/Component.tsx @@ -31,17 +31,17 @@ const borderMap: Record = { } const checkColors: Record = { - navy: { circle: '#0E2338', check: 'white' }, - yellow: { circle: '#FECC02', check: '#0E2338' }, - gray: { circle: '#F0F0F0', check: '#0E2338' }, + navy: { circle: 'fill-fd-navy dark:fill-white/20', check: 'fill-white dark:fill-fd-yellow' }, + yellow: { circle: 'fill-fd-yellow', check: 'fill-fd-navy' }, + gray: { circle: 'fill-fd-gray-light dark:fill-white/20', check: 'fill-fd-navy dark:fill-white' }, } const CheckIcon: React.FC<{ color: string }> = ({ color }) => { const c = checkColors[color] || checkColors.navy return ( - - + + ) } diff --git a/src/blocks/FDWideCardBlock/Component.tsx b/src/blocks/FDWideCardBlock/Component.tsx index 5a8e68d..835b044 100644 --- a/src/blocks/FDWideCardBlock/Component.tsx +++ b/src/blocks/FDWideCardBlock/Component.tsx @@ -4,7 +4,7 @@ import { FDButton } from '@/components/FDButton' import { FDImage } from '@/components/FDImage' const cardBgMap: Record = { - navy: { bg: 'bg-fd-navy', heading: 'text-white', body: 'text-white/80', isDark: true }, + navy: { bg: 'bg-fd-navy dark:bg-white/10', heading: 'text-white', body: 'text-white/80', isDark: true }, yellow: { bg: 'bg-fd-yellow', heading: 'text-fd-navy', body: 'text-fd-navy/80', isDark: false }, gray: { bg: 'bg-fd-gray-light dark:bg-white/10', heading: 'text-fd-navy dark:text-white', body: 'text-fd-navy/80 dark:text-white/80', isDark: false }, white: { bg: 'bg-white dark:bg-white/10 shadow-fd-card dark:shadow-none', heading: 'text-fd-navy dark:text-white', body: 'text-fd-navy/80 dark:text-white/80', isDark: false },