-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtailwind.config.js
95 lines (95 loc) · 2.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
module.exports = {
darkMode: 'class',
future: {
removeDeprecatedGapUtilities: true,
},
mode: 'jit',
purge: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
daisyui: {
styled: true,
themes: true,
resets: true,
utils: true,
logs: true,
rtl: false,
},
theme: {
cursor: {
auto: 'auto',
default: 'default',
pointer: 'pointer',
wait: 'wait',
text: 'text',
move: 'move',
'not-allowed': 'not-allowed',
crosshair: 'crosshair',
'zoom-in': 'zoom-in',
'zoom-out': 'zoom-out',
},
paintOrder: {
'fsm': { paintOrder: 'fill stroke markers' },
'fms': { paintOrder: 'fill markers stroke' },
'sfm': { paintOrder: 'stroke fill markers' },
'smf': { paintOrder: 'stroke markers fill' },
'mfs': { paintOrder: 'markers fill stroke' },
'msf': { paintOrder: 'markers stroke fill' },
},
gradientColorStops: theme => ({
'primary': '#FF8CFF',
'secondary': '#785DFF'
}),
extend: {
colors: require('daisyui/colors'),
backgroundImage: {
'top-blur': "url('/dfame-bg.svg')",
'bubble': "url('/bubblebg.svg')",
'cta': "url('/cta-bg.jpg')",
'mint': "url('/mintbg.png')",
'noise': "url('/noise.png')",
'main': "url('/main.png')",
'alternative': "url('/alternative.png')",
'card1': "url('/card-1.svg')",
'card2': "url('/card-2.svg')",
'card3': "url('/card-3.svg')",
},
animation: {
pulse: "pulse 4s infinite",
},
fontFamily: {
body: ['Karla', 'sans-serif'],
'body': ['Karla', 'sans-serif'],
'heading': ['Montserrat', 'sans-serif'],
'alternative': ['Shippori Mincho B1', 'serif']
},
borderRadius: {
xl: "1em",
'2-xl': "2rem",
},
boxShadow: {
focus: '5px 5px 10px 10px rgba(196, 196, 196, 1)'
},
height: {
xl: '75%'
},
fontSize: {
'tiny': '.3rem',
'nonexist': '0rem'
},
screens: {
'tablet': '768px'
},
margin: {
'14': '3.5rem'
}
},
},
variants: {
scrollSnapType: ["responsive"],
paintOrder: ['responsive'],
mixBlendMode: ['responsive'],
backgroundBlendMode: ['responsive'],
isolation: ['responsive'],
scale: ['group-hover'],
},
plugins: [ require('daisyui')],
};