-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.ts
44 lines (43 loc) · 1.16 KB
/
tailwind.config.ts
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
38
39
40
41
42
43
44
import defaultTheme from 'tailwindcss/defaultTheme'
import type { Config } from 'tailwindcss'
const config: Config = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}'
],
theme: {
extend: {
fontFamily: {
beni: ['Beni', ...defaultTheme.fontFamily.sans],
algo: ['Algo', ...defaultTheme.fontFamily.sans]
},
fontSize: {
'title-6xl': ['3.75rem', '0.7'],
'title-7xl': ['5rem', '0.7'],
'title-8xl': ['6rem', '0.7'],
'title-9xl': ['8rem', '0.7'],
'title-10xl': ['10rem', '0.7'],
'title-11xl': ['12rem', '0.7']
},
screens: {
xs: '390px',
'3xl': '1600px',
'4xl': '1920px',
'5xl': '2560px'
},
keyframes: {
'loading-pulse': {
'0%, 60%, 100%': { opacity: '0.5' },
'30%': { opacity: '1', transform: 'scale(1.1)' }
}
},
animation: {
'loading-pulse':
'loading-pulse 1.25s cubic-bezier(0.4, 0, 0.6, 1) infinite'
}
}
},
plugins: [require('@tailwindcss/forms')]
}
export default config