forked from RealKai42/qwerty-learner
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
92 lines (92 loc) · 2.09 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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: ['class'],
content: ['./src/**/*.{js,jsx,ts,tsx}', './index.html'],
theme: {
extend: {
keyframes: {
'accordion-down': {
from: { height: 0 },
to: { height: 'var(--radix-accordion-content-height)' },
},
'accordion-up': {
from: { height: 'var(--radix-accordion-content-height)' },
to: { height: 0 },
},
},
animation: {
'accordion-down': 'accordion-down 0.2s ease-out',
'accordion-up': 'accordion-up 0.2s ease-out',
},
transitionDuration: {
0: '0ms',
},
padding: {
0.8: '0.2rem',
},
width: {
3.5: '0.875rem',
5.5: '1.375rem',
15: '3.75rem',
18: '4.5rem',
70: '17.5rem',
75: '18.75rem',
84: '21rem',
85: '21.25rem',
100: '25rem',
116: '29rem',
150: '37.5rem',
160: '40rem',
200: '50rem',
},
height: {
3.5: '0.875rem',
5.5: '1.375rem',
15: '3.75rem',
18: '4.5rem',
22: '5.5rem',
112: '28rem',
120: '30rem',
152: '38rem',
},
borderWidth: {
3: '3px',
},
screens: {
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1280px',
'2xl': '1536px',
dic3: '1100px',
dic4: '1440px',
},
},
},
variants: {
extend: {
visibility: ['hover', 'group-hover'],
textOpacity: ['dark'],
backgroundOpacity: ['dark'],
},
},
plugins: [require('@headlessui/tailwindcss'), require('@tailwindcss/forms'), require('daisyui'), require('tailwindcss-animate')],
daisyui: {
themes: [
{
mytheme: {
primary: '#2fc998',
secondary: '#3eed92',
accent: '#cc8316',
neutral: '#272735',
'base-100': '#f0eff1',
info: '#f3f4f6',
success: '#6fe7ab',
warning: '#d6920a',
error: '#f43f5e',
},
},
'dark',
],
},
}