-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
93 lines (93 loc) · 2.34 KB
/
tailwind.config.js
File metadata and controls
93 lines (93 loc) · 2.34 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
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
92
93
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
darkMode: "class",
theme: {
extend: {
colors: {
primary: {
50: "#f0f9ff",
500: "#3b82f6",
600: "#2563eb",
700: "#1d4ed8",
},
},
fontFamily: {
sans: [
"Inter",
"Pretendard",
"Noto Sans KR",
"-apple-system",
"BlinkMacSystemFont",
"system-ui",
"sans-serif",
],
serif: ["Georgia", "Times New Roman", "serif"],
korean: [
"Pretendard",
"Noto Sans KR",
"Malgun Gothic",
"Apple SD Gothic Neo",
"sans-serif",
],
},
spacing: {
18: "4.5rem",
88: "22rem",
},
typography: {
DEFAULT: {
css: {
maxWidth: "none",
color: "inherit",
a: {
color: "inherit",
textDecoration: "underline",
fontWeight: "500",
},
'[class~="lead"]': {
color: "inherit",
},
strong: {
color: "inherit",
fontWeight: "600",
},
'ol[type="A"]': {
"--list-counter-style": "upper-alpha",
},
'ol[type="a"]': {
"--list-counter-style": "lower-alpha",
},
'ol[type="A" s]': {
"--list-counter-style": "upper-alpha",
},
'ol[type="a" s]': {
"--list-counter-style": "lower-alpha",
},
'ol[type="I"]': {
"--list-counter-style": "upper-roman",
},
'ol[type="i"]': {
"--list-counter-style": "lower-roman",
},
'ol[type="I" s]': {
"--list-counter-style": "upper-roman",
},
'ol[type="i" s]': {
"--list-counter-style": "lower-roman",
},
'ol[type="1"]': {
"--list-counter-style": "decimal",
},
},
},
},
},
},
plugins: [require("@tailwindcss/typography")],
};