-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
84 lines (83 loc) · 1.65 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
import type { Config } from "tailwindcss";
const config: Config = {
corePlugins: {
preflight: false,
},
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./views/**/*.{js,ts,jsx,tsx,mdx}",
"./theme/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
screens: {
xs: "340px",
},
colors: {
primary: {
lighter: "#f5f3fd",
DEFAULT: "#6e57e0",
},
danger: {
DEFAULT: "#FE5F55",
dark: "#c10c01",
darker: "#a70b01",
},
success: {
DEFAULT: "#5dfc70",
dark: "#04c61b",
},
black: {
DEFAULT: "#010101",
light: "rgba(0, 0, 0, 0.23)",
},
info: {
DEFAULT: "#29339b",
},
},
fontFamily: {
inherit: "inherit",
},
fontSize: {
"2xs": "10px",
},
height: {
30: "30px",
100: "100px",
200: "200px",
250: "250px",
300: "300px",
320: "320px",
400: "400px",
500: "500px",
600: "600px",
},
width: {
30: "30px",
100: "100px",
150: "150px",
200: "200px",
250: "250px",
300: "300px",
500: "500px",
600: "600px",
},
maxWidth: {
100: "100px",
200: "200px",
300: "300px",
350: "350px",
400: "400px",
500: "500px",
600: "600px",
700: "700px",
800: "800px",
900: "900px",
1000: "1000px",
},
},
},
plugins: [],
};
export default config;