-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.js
64 lines (64 loc) · 1.72 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
primary: "#FF0083",
component: "#242A2E",
"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",
},
},
},
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",
},
},
},
plugins: [],
};