-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
75 lines (73 loc) · 1.93 KB
/
tailwind.config.ts
File metadata and controls
75 lines (73 loc) · 1.93 KB
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
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
animation: {
opacity: 'opacity 1s ease-in-out',
contentShow: 'contentShow 150ms cubic-bezier(0.16, 1, 0.3, 1)',
overlayShow: 'overlayShow 150ms cubic-bezier(0.16, 1, 0.3, 1)',
},
keyframes: {
contentShow: {
from: { opacity: '0', transform: 'translate(-50%, -48%) scale(0.96)' },
to: { opacity: '1', transform: 'translate(-50%, -50%) scale(1)' },
},
opacity: {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
},
overlayShow: {
from: { opacity: '0' },
to: { opacity: '1' },
}
},
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
},
colors: {
primary: {
50: "#F2FDFC",
100: "#E0FAF9",
200: "#C2F5F2",
300: "#9AEEEA",
400: "#6FE7E1",
500: "#31DDD3",
600: "#21C9C1",
700: "#1DAFA8",
800: "#19958F",
900: "#116965",
950: "#0D4F4C"
},
purple: {
50: "#EDE0F0",
100: "#E6D3E9",
200: "#D4B4DA",
300: "#C296CA",
400: "#B177BB",
500: "#9F58AC",
600: "#874992",
700: "#6B3A74",
800: "#4F2B55",
900: "#321B36",
950: "#251428"
}
},
transitionDuration: {
DEFAULT: '0.2s',
},
},
fontFamily: {
sans: ['var(--font-source-sans)', "sans-serif"],
display: ['var(--font-audiowide)'],
}
},
plugins: [],
};
export default config;