-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
56 lines (56 loc) · 1.03 KB
/
tailwind.config.js
File metadata and controls
56 lines (56 loc) · 1.03 KB
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
colors: {
whitesmoke: "#f8f8f8",
gray: {
100: "#1f2937",
200: "#111827",
},
dimgray: "#4b5563",
white: "#fff",
darkslategray: "#2d3748",
sandybrown: {
100: "#ffb866",
200: "#f1aa58",
300: "#f1aa57",
},
black: "#000",
},
spacing: {},
fontFamily: {
inter: "Inter",
},
borderRadius: {
xl: "20px",
},
},
fontSize: {
sm: "14px",
base: "16px",
lg: "18px",
xl: "20px",
"2xl": "24px",
"3xl": "30px",
"4xl": "34px",
"5xl": "48px",
inherit: "inherit",
},
// screens: {
// lg: {
// max: "1200px",
// },
// md: {
// max: "960px",
// },
// sm: {
// max: "420px",
// },
// },
},
corePlugins: {
preflight: false,
},
};