import type { Config } from "tailwindcss"; export default { content: [ "./src/**/*.{js,ts,jsx,tsx,mdx}", "./src/**/*.{js,ts,jsx,tsx,mdx}", "./src/**/*.{js,ts,jsx,tsx,mdx}", ], theme: { extend: { colors: { background: "var(--background)", foreground: "var(--foreground)", 'ashgreen': "#43c48c", 'ashgray': "#232423", 'ashwhite': "#dce3dc" }, }, screens: { sm: '640px', md: '768px', lg: '1024px', xl: '1280px', '2xl': '1536px', }, }, plugins: [], } satisfies Config;