-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
84 lines (83 loc) · 2.17 KB
/
tailwind.config.js
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
const colors = require('tailwindcss/colors');
module.exports = {
purge: ['./components/**/*.js', './pages/**/*.js'],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
animation: {
'gradient-x': 'gradient-x 10s ease infinite',
'gradient-y': 'gradient-y 10s ease infinite',
'gradient-xy': 'gradient-xy 10s ease infinite'
},
keyframes: {
'gradient-y': {
'0%, 100%': {
'background-size': '400% 400%',
'background-position': 'center top'
},
'50%': {
'background-size': '200% 200%',
'background-position': 'center center'
}
},
'gradient-x': {
'0%, 100%': {
'background-size': '200% 200%',
'background-position': 'left center'
},
'50%': {
'background-size': '200% 200%',
'background-position': 'right center'
}
},
'gradient-xy': {
'0%, 100%': {
'background-size': '400% 400%',
'background-position': 'left center'
},
'50%': {
'background-size': '200% 200%',
'background-position': 'right center'
}
}
},
width: {
'1/9': '11.11111111%',
'2/9': '22.22222222%',
'3/9': '33.33333333%',
'4/9': '44.44444444%',
'5/9': '55.55555556',
'6/9': '66.66666667%',
'7/9': '77.77777778%',
'8/9': '88.88888889%',
55: '55%'
},
colors: {
gray: {
100: '#FBFBFB',
200: '#f4f4f6',
300: '#b8bcbf',
400: '#999999',
500: '#7F7F7F',
600: '#666666',
700: '#4C4C4C',
800: '#333333',
900: '#191919'
},
fuchsia: colors.fuchsia,
violet: colors.violet,
orange: colors.orange,
teal: colors.teal,
rose: colors.rose,
lightBlue: colors.lightBlue,
sky: colors.sky,
buttonPurple: '#8585ff',
buttonDiscord: '#5865F2'
}
}
},
variants: {
extend: {}
},
plugins: [require('@tailwindcss/typography')]
};