-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.cjs
60 lines (60 loc) · 1022 Bytes
/
tailwind.config.cjs
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,pug,js,svelte,ts}"],
theme: {
extend: {
colors: {
// custom rules for starter web page, remove these for your own project
primary: "#142239",
accent: "#ebf92f",
},
fontSize: {
6: "6px",
7: "7px",
8: "8px",
9: "9px",
10: "10px",
11: "11px",
12: "12px",
13: "13px",
14: "14px",
15: "15px",
16: "16px",
17: "17px",
18: "18px",
19: "19px",
20: "20px",
21: "21px",
22: "22px",
23: "23px",
24: "24px",
25: "25px",
26: "26px",
27: "27px",
28: "28px",
29: "29px",
30: "30px",
31: "31px",
32: "32px",
33: "33px",
34: "34px",
35: "35px",
36: "36px",
37: "37px",
38: "38px",
39: "39px",
40: "40px",
41: "41px",
42: "42px",
43: "43px",
44: "44px",
45: "45px",
46: "46px",
47: "47px",
48: "48px",
49: "49px",
50: "50px",
},
},
},
};