Make bg-shape colors configurable

This commit is contained in:
Alex Gleason
2022-03-22 16:25:52 -05:00
parent 9e16d992e6
commit 8f85fd01d5
3 changed files with 33 additions and 3 deletions

View File

@@ -97,6 +97,19 @@ const legacyColorsToTailwind = (brandColor: string, accentColor: string): Tailwi
return {
primary: tintify(brandColor),
accent: tintify(accentColor ? accentColor : generateAccent(brandColor)),
gray: {
50: '#f9fafb',
100: '#f3f4f6',
200: '#e5e7eb',
300: '#d1d5db',
400: '#9ca3af',
500: '#6b7280',
600: '#4b5563',
700: '#374151',
800: '#1f2937',
900: '#111827',
},
'sea-blue': '#2feecc',
};
};