-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
54 lines (54 loc) · 1.13 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
colors: {
primary100: "#D7DBFF",
primary300: "#3B28CC",
primary500: "#322E9C",
white: "#FFFFFF",
white100: "#F1F1F1",
white300: "#F2F2F2",
grey: "#D7D7D7",
grey100: "#A4A7C6",
black: "#000000",
black100: "#1E1E1E",
},
fontSize: {
xs: "1.0rem",
sm: "1.2rem",
base: "1.4rem",
md: "1.6rem",
lg: "1.8rem",
xl: "2rem",
["2xl"]: "2.4rem",
},
spacing: {
0.5: "0.2rem",
1: "0.4rem",
1.5: "0.6rem",
2: "0.8rem",
2.5: "1rem",
3: "1.2rem",
3.5: "1.4rem",
4: "1.6rem",
5: "2rem",
6: "2.4rem",
7: "2.8rem",
8: "3.2rem",
9: "3.6rem",
10: "4.0rem",
},
borderRadius: {
sm: "0.4rem",
DEFAULT: "0.8rem",
md: "1.2rem",
lg: "1.8rem",
xl: "2.4rem",
["2xl"]: "4.0rem",
},
},
},
plugins: [],
};