diff --git a/tailwind.config.ts b/tailwind.config.ts index 798ab4f..3985e0c 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -1,4 +1,5 @@ import type { Config } from 'tailwindcss'; +import colors from 'tailwindcss/colors'; export default { content: ['./theme/**/*.ftl'], @@ -8,37 +9,9 @@ export default { plugins: [require('@tailwindcss/forms')], theme: { extend: { - fontFamily: { - sans: '"Noto Sans", ui-sans-serif, system-ui, sans-serif', - serif: '"Noto Serif", ui-serif, Georgia, Cambria, "Times New Roman", serif', - }, colors: { - primary: { - 50: 'rgb(var(--color-sta-primary-50) / )', - 100: 'rgb(var(--color-sta-primary-100) / )', - 200: 'rgb(var(--color-sta-primary-200) / )', - 300: 'rgb(var(--color-sta-primary-300) / )', - 400: 'rgb(var(--color-sta-primary-400) / )', - 500: 'rgb(var(--color-sta-primary-500) / )', - 600: 'rgb(var(--color-sta-primary-600) / )', - 700: 'rgb(var(--color-sta-primary-700) / )', - 800: 'rgb(var(--color-sta-primary-800) / )', - 900: 'rgb(var(--color-sta-primary-900) / )', - 950: 'rgb(var(--color-sta-primary-950) / )' - }, - secondary: { - 50: 'rgb(var(--color-sta-secondary-50) / )', - 100: 'rgb(var(--color-sta-secondary-100) / )', - 200: 'rgb(var(--color-sta-secondary-200) / )', - 300: 'rgb(var(--color-sta-secondary-300) / )', - 400: 'rgb(var(--color-sta-secondary-400) / )', - 500: 'rgb(var(--color-sta-secondary-500) / )', - 600: 'rgb(var(--color-sta-secondary-600) / )', - 700: 'rgb(var(--color-sta-secondary-700) / )', - 800: 'rgb(var(--color-sta-secondary-800) / )', - 900: 'rgb(var(--color-sta-secondary-900) / )', - 950: 'rgb(var(--color-sta-secondary-950) / )' - }, + primary: colors.blue, + secondary: colors.gray, provider: { apple: 'rgb(var(--color-provider-apple) / )',