-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
61 lines (60 loc) · 1.49 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
import type { Config } from "tailwindcss";
import tailwindcssAnimate from "tailwindcss-animate";
const config: Config = {
darkMode: ["class"],
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
brand: {
"100": "#EA6365",
DEFAULT: "#FA7275",
},
red: "#FF7474",
error: "#b80000",
green: "#3DD9B3",
blue: "#56B8FF",
pink: "#EEA8FD",
orange: "#F9AB72",
light: {
"100": "#333F4E",
"200": "#A3B2C7",
"300": "#F2F5F9",
"400": "#F2F4F8",
},
dark: {
"100": "#04050C",
"200": "#131524",
},
},
fontFamily: {
poppins: ["var(--font-poppins)"],
},
boxShadow: {
"drop-1": "0px 10px 30px 0px rgba(66, 71, 97, 0.1)",
"drop-2": "0 8px 30px 0 rgba(65, 89, 214, 0.3)",
"drop-3": "0 8px 30px 0 rgba(65, 89, 214, 0.1)",
},
borderRadius: {
lg: "var(--radius)",
md: "calc(var(--radius) - 2px)",
sm: "calc(var(--radius) - 4px)",
},
keyframes: {
"caret-blink": {
"0%,70%,100%": { opacity: "1" },
"20%,50%": { opacity: "0" },
},
},
animation: {
"caret-blink": "caret-blink 1.25s ease-out infinite",
},
},
},
plugins: [tailwindcssAnimate],
};
export default config;