blob: c7ead804652ebfb1e07a5acb03880d553a7da011 [file] [log] [blame]
Samuel Shuerta96e40b2023-11-21 11:05:53 -05001import type { Config } from 'tailwindcss'
2
3const config: Config = {
4 content: [
5 './pages/**/*.{js,ts,jsx,tsx,mdx}',
6 './components/**/*.{js,ts,jsx,tsx,mdx}',
7 './app/**/*.{js,ts,jsx,tsx,mdx}',
8 ],
9 theme: {
10 extend: {
11 backgroundImage: {
12 'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
13 'gradient-conic':
14 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
15 },
16 },
17 },
18 plugins: [],
19}
20export default config