-
Notifications
You must be signed in to change notification settings - Fork 256
/
Copy pathtailwind.config.cjs
48 lines (48 loc) · 1.16 KB
/
tailwind.config.cjs
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./index.html', './src/**/*.{jsx,js,ts,tsx}'],
theme: {
extend: {
fontFamily: {
georgia: ['Georgia'],
fredokaOne: [
'Fredoka One',
'PingFang SC',
'Microsoft Yahei',
'Helvetica',
'Arial',
'sans-serif'
],
hanaleiFill: ['Hanalei Fill'],
ruslanDisplay: ['Ruslan Display'],
lobster: ['Lobster'],
pacifico: ['Pacifico'],
gloriaHallelujah: ['Gloria Hallelujah']
},
screens: {
xs: {
max: '750px'
},
'min-xs': {
min: '750px'
}
},
backgroundImage: {
transparent:
"url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAMUlEQVQ4T2NkYGAQYcAP3uCTZhw1gGGYhAGBZIA/nYDCgBDAm9BGDWAAJyRCgLaBCAAgXwixzAS0pgAAAABJRU5ErkJggg==')"
}
}
},
plugins: [require('daisyui')],
daisyui: {
styled: true,
themes: true,
base: true,
utils: true,
logs: true,
rtl: false,
prefix: '',
// eslint-disable-next-line no-dupe-keys
themes: ['emerald']
}
}