-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
71 lines (70 loc) · 1.48 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
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
primary: "#381F8C",
secondary: "#E58C06",
dark: "#1E1E1E",
status: {
success: {
"10": "#F3FEF3",
"100": "#0D6211",
},
warning: {
100: "#F7D4C3",
500: "#E6733C",
},
error: {
"10": "#FEE4E2",
"100": "#F04438",
},
information: {
"10": "#F2F8FF",
"100": "#004FA9",
},
grey: '#55535A'
},
tc: {
primary: "#190E3F",
dark: "#140B31"
}
},
borderRadius: {
lg: 'var(--radius)',
md: 'calc(var(--radius) - 2px)',
sm: 'calc(var(--radius) - 4px)'
},
fontFamily: {
satoshi: "Satoshi, sans-serif",
satoshiMedium: "SatoshiMedium, sans-serif",
satoshiBold: "SatoshiBold, sans-serif",
clash: "Clash, sans-serif",
clashMedium: "ClashMedium, sans-serif",
clashSemiBold: "ClashSemiBold, sans-serif",
clashBold: "ClashBold, sans-serif",
},
container: {
center: true,
padding: {
DEFAULT: "1rem",
sm: "2rem",
lg: "4rem",
xl: "5rem",
"2xl": "6rem",
},
},
backgroundImage: {
"auth-bg": "url('/assets/images/auth-bg.png')",
},
}
},
// eslint-disable-next-line @typescript-eslint/no-require-imports
plugins: [require("tailwindcss-animate")],
};
export default config;