-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
37 lines (36 loc) · 939 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
37 lines (36 loc) · 939 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import { heroui } from '@heroui/theme'
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
'./node_modules/@heroui/theme/dist/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
fontFamily: {
sans: ['var(--font-sans)'],
mono: ['var(--font-geist-mono)'],
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
},
keyframes: {
'pop-blob': {
'0%': { transform: 'scale(1)' },
'33%': { transform: 'scale(1.2)' },
'66%': { transform: 'scale(0.8)' },
'100%': { transform: 'scale(1)' },
},
colors: {
filter: {
'blur-20': 'blur(20px)',
'blur-25': 'blur(25px)',
},
},
},
},
},
darkMode: 'class',
plugins: [heroui()],
}