import type { Config } from "tailwindcss"; export default { content: [ "./src/pages/**/*.{js,ts,jsx,tsx,mdx}", "./src/components/**/*.{js,ts,jsx,tsx,mdx}", "./src/app/**/*.{js,ts,jsx,tsx,mdx}", ], darkMode: "class", theme: { extend: { colors: { "primary-light": "#fdfdfd", "primary-dark": "#121212", "secondary-light": "#ffffff", "secondary-dark": "#070707", "tertiary-light": "#ffffff", "tertiary-dark": "#000000", "highlight-light": "#BFFFC6", "highlight-dark": "#bfffc623", "border-primary-light": "#C3C3C3", "border-primary-dark": "#222222", "border-secondary-light": "#676767", "border-secondary-dark": "#C3C3C3", "border-blue-light": "#17337B", "border-blue-dark": "#3a66d6", "border-green-dark": "#007019", "text-primary-light": "#292D32", "text-primary-dark": "#dddddd", "text-red-light": "#BC0E0E", "text-red-dark": "#be4242", "text-blue-light": "#17337B", "text-blue-dark": "#3a66d6", "text-title-light": "#292D32", "text-title-dark": "#eeeeee", "text-green-dark": "#007019", }, }, }, plugins: [], } satisfies Config;