-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
49 lines (48 loc) · 1.07 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
49
const defaultTheme = require('tailwindcss/defaultTheme');
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,js,jsx,ts,tsx}"],
theme: {
extend: {
colors: {
background: 'hsl(var(--background))',
foreground: 'hsl(var(--foreground))',
primary: 'hsl(var(--primary))',
secondary: 'hsl(var(--secondary))',
muted: 'hsl(var(--muted))',
'muted-foreground': 'hsl(var(--muted-foreground))',
border: 'hsl(var(--border))',
accent: 'hsl(var(--accent))',
destructive: 'hsl(var(--destructive))',
cylinder: 'hsl(var(--cylinder))',
safe: 'hsl(var(--safe))',
},
keyframes: {
'safe': {
'0%': {
transform: 'scale(0)',
animationTimingFunction: 'ease-out'
},
'33%': {
transform: 'scale(1)'
},
'66%': {
transform: 'scale(1)',
},
'100%': {
transform: 'scale(0)',
animationTimingFunction: 'ease-in'
}
}
},
animation: {
safe: 'safe 0.6s'
}
},
screens: {
xs: '475px',
...defaultTheme.screens
}
},
plugins: []
};