diff options
| author | bndw <ben@bdw.to> | 2023-04-26 17:49:25 -0700 |
|---|---|---|
| committer | bndw <ben@bdw.to> | 2023-04-26 17:49:25 -0700 |
| commit | 8686078ae801fdc15df5a40ee158a43373d37c1c (patch) | |
| tree | f8807fa764e917c6c4cdd30dcff31aa4bb060da8 /tailwind.config.js | |
Initial commit
Diffstat (limited to 'tailwind.config.js')
| -rw-r--r-- | tailwind.config.js | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tailwind.config.js b/tailwind.config.js new file mode 100644 index 0000000..8c4d1b2 --- /dev/null +++ b/tailwind.config.js | |||
| @@ -0,0 +1,18 @@ | |||
| 1 | /** @type {import('tailwindcss').Config} */ | ||
| 2 | module.exports = { | ||
| 3 | content: [ | ||
| 4 | './pages/**/*.{js,ts,jsx,tsx,mdx}', | ||
| 5 | './components/**/*.{js,ts,jsx,tsx,mdx}', | ||
| 6 | './app/**/*.{js,ts,jsx,tsx,mdx}', | ||
| 7 | ], | ||
| 8 | theme: { | ||
| 9 | extend: { | ||
| 10 | backgroundImage: { | ||
| 11 | 'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))', | ||
| 12 | 'gradient-conic': | ||
| 13 | 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))', | ||
| 14 | }, | ||
| 15 | }, | ||
| 16 | }, | ||
| 17 | plugins: [], | ||
| 18 | } | ||
