-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
91 lines (91 loc) · 1.95 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
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
85
86
87
88
89
90
91
module.exports = {
content: [
"./src/**/*.ts",
"./src/**/*.tsx",
"./src/**/*.md",
"./src/**/*.astro",
],
theme: {
extend: {
colors: {
gray: {
50: "#f7f7f8",
100: "#f1f1f2",
200: "#e5e4e6",
300: "#d0cfd2",
400: "#b8b7ba",
500: "#99989c",
600: "#807f83",
700: "#6a696d",
800: "#59585c",
900: "#4e4c4f",
},
malibu: {
50: "#f0faff",
100: "#e1f4fd",
200: "#bceafb",
300: "#8cdef9",
400: "#3dc9f3",
500: "#14b3e3",
600: "#0890c1",
700: "#07739d",
800: "#0b6181",
900: "#0f506b",
},
orchid: {
50: "#fdf6fd",
100: "#faecfb",
200: "#f4d8f6",
300: "#efb8ef",
400: "#e48ee3",
500: "#d873d7",
600: "#b742b4",
700: "#973492",
800: "#7c2c77",
900: "#662960",
},
dolly: {
50: "#fcfee8",
100: "#fbffc2",
200: "#faff83",
300: "#ffff45",
400: "#fcf313",
500: "#ecd906",
600: "#ccac02",
700: "#a27b06",
800: "#86600d",
900: "#724f11",
},
saltpan: {
50: "#f0f6ef",
100: "#e7f2e6",
200: "#d0e4ce",
300: "#abcea7",
400: "#7daf79",
500: "#5b9156",
600: "#477643",
700: "#3a5e37",
800: "#314c2f",
900: "#293f28",
},
},
fontFamily: {
sans: ['"Inter"', "sans-serif"],
},
typography: (theme) => ({
light: {
css: {
color: theme("colors.white"),
h3: {
color: theme("colors.white"),
},
},
},
}),
},
},
variants: {
extend: {},
},
plugins: [require("@tailwindcss/typography")],
};