-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
63 lines (62 loc) · 1.38 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
const defaultTheme = require('tailwindcss/defaultTheme');
const colors = require('tailwindcss/colors');
module.exports = {
darkMode: 'class',
content: [
'./src/pages/**/*.{js,ts,jsx,tsx}',
'./src/components/**/*.{js,ts,jsx,tsx}',
'./src/lib/**/*.{js,ts,jsx,tsx}'
],
theme: {
screens: {
xs: { max: '475px' },
sm: { min: '640px', max: '767px' },
...defaultTheme.screens
},
fontFamily: {
sans: ['Jost'],
primary: ['Jost']
},
extend: {
colors: {
eggshell: {
DEFAULT: '#F0EAD6'
},
xiketic: {
DEFAULT: '#07020D',
darker: '#0b0710'
},
grek: {
DEFAULT: '#1B1B1B',
tasty: '#29292c'
},
crack: {
DEFAULT: '#f3f3f3',
sus: '#F3FFE4',
quad2: '#fdf2f8',
quad3: '#fdf5f2',
quad4: '#f2fdfc',
ee: '#e2e9ec'
},
emerald: colors.emerald,
amber: colors.amber
},
animation: {
text: 'text 5s ease infinite'
},
keyframes: {
text: {
'0%, 100%': {
'background-size': '200% 200%',
'background-position': 'left center'
},
'50%': {
'background-size': '200% 200%',
'background-position': 'right center'
}
}
}
}
},
plugins: []
};