-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.ts
85 lines (84 loc) · 2.34 KB
/
tailwind.config.ts
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
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/utils/**/*.tsx",
"./src/ui/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic": "conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
},
colors: {
primary: "#FF0083",
component: "#242A2E",
alert: "#F97316",
"app-black": "#1A1D1F",
},
spacing: {
small: "0.3125rem", // 5px
middle: "0.625rem", // 10px
large: "0.9375rem", // 15px
},
screens: {
xl: "1200px",
"2xl": "1200px",
},
keyframes: {
rightenter: {
"0%": { opacity: "0", transform: "translateX(100%)" },
"1%": { opacity: "1" },
"100%": { transform: "translateX(0)" },
},
rightleave: {
"0%": { transform: "translateX(0)" },
"100%": { transform: "translateX(100%)" },
},
notificationfadeout: {
"100%": { height: "0" },
},
countloadingsmall: {
"0%": {
height: "16px",
},
"50%, 100%": {
height: "8px",
},
},
countloadinglarge: {
"0%": {
height: "32px",
},
"50%, 100%": {
height: "16px",
},
},
bouncing: {
"0%": {
transform: "scale(1)",
},
"50%": {
transform: "scale(1.2)",
},
"100%": {
transform: "scale(1)",
},
},
},
animation: {
"notification-enter": "rightenter 400ms ease-out",
"notification-leave": "rightleave 400ms ease-out forwards",
"notification-fadeout": "notificationfadeout 200ms ease-out forwards",
"count-loading-small": "countloadingsmall 1200ms cubic-bezier(0, 0.5, 0.5, 1) infinite",
"count-loading-large": "countloadinglarge 1200ms cubic-bezier(0, 0.5, 0.5, 1) infinite",
"pending-bounce": "bouncing 1.5s ease-in-out infinite",
},
},
},
plugins: [],
};
export default config;