-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathtailwind.config.ts
58 lines (54 loc) · 1.11 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/** @type {import('tailwindcss').Config} */
const tailwind = {
darkMode: ['class'],
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/containers/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
'node_modules/flowbite-react/**/*.{js,jsx,ts,tsx}'
],
theme: {
container: {
center: true,
screens: {
xs:'480px',
sm:'720px',
lg: '960px',
xl: '1140px',
'2xl': '1200px',
},
padding: '15px'
},
extend: {
colors: {
appPurple:{
100:'#7868E6'
},
appRed:{
100:'#FF4D4F'
},
blogText:{
100:"rgb(222 226 227)"
}
},
right:{
12:"12rem"
},
animation: {
loader: 'loader 0.6s infinite alternate'
},
keyframes: {
loader: {
to: {
opacity: 0.1,
transform: 'translate3d(0, -1rem, 0)'
}
}
}
},
},
variants: {},
plugins: [require('@tailwindcss/typography')],
}
export default tailwind