-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
tailwind.config.js
91 lines (91 loc) · 1.99 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
/** @type {import('tailwindcss').Config} */
// eslint-disable-next-line import/no-commonjs
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx}', './node_modules/tw-elements/dist/js/**/*.js'],
safelist: [
'tw-mask-squircle',
'tw-mask-circle',
'tw-mask-hexagon-2',
'tw-mask-decagon',
'tw-bg-[#FF99C8]',
'tw-bg-[#fff0d6]',
'tw-bg-[#FCF6BD]',
'tw-bg-[#D0F4DE]',
'tw-bg-[#A9DEF9]',
'tw-bg-[#E4C1F9]',
'tw-bg-[#de324c]',
'tw-bg-[#f4895f]',
'tw-bg-[#f8e16f]',
'tw-bg-[#95cf92]',
'tw-bg-[#369acc]',
'tw-bg-[#9656a2]',
],
theme: {
extend: {
zIndex: {
3000: '3000',
2000: '2000',
1000: '1000',
500: '500',
},
minWidth: {
80: '320px',
64: '240px',
56: '224px',
},
maxWidth: {
52: '208px',
64: '240px',
72: '288px',
},
minHeight: {
80: '320px',
64: '240px',
56: '224px',
},
fontFamily: {
sans: ['Helvetica', 'sans-serif', 'Roboto'],
},
fontSize: {
map: '13px',
},
lineHeight: {
map: '1.4em',
},
},
keyframes: {
pulseGrow: {
'0%, 100%': { transform: 'scale(1.00)' },
'80%': { transform: 'scale(1.00)' },
'90%': { transform: 'scale(0.95)' },
},
},
animation: {
pulseGrow: 'pulseGrow 2s ease-in-out infinite',
},
},
// eslint-disable-next-line import/no-commonjs, import/extensions
plugins: [require('daisyui'), require('tw-elements/dist/plugin.cjs')],
daisyui: {
themes: [
'light',
'dark',
'cupcake',
'retro',
'cyberpunk',
'aqua',
{
docutopia: {
primary: '#8e00ff',
secondary: '#00bb7a',
accent: '#006aff',
neutral: '#231502',
'base-content': '#ffad6b',
'base-100': '#440844',
},
},
],
},
prefix: 'tw-',
// content: ['./src/**/*.{js,jsx,ts,tsx}'],
}