-
Notifications
You must be signed in to change notification settings - Fork 66
/
tailwind.config.js
72 lines (72 loc) · 1.61 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx}",
"./src/components/**/*.{js,ts,jsx,tsx}",
"./src/app/**/*.{js,ts,jsx,tsx}",
],
theme: {
fontFamily: {
sans: [
"var(--font-pretendard)",
"Helvetica Neue",
"Apple SD Gothic Neo",
"Malgun Gothic",
"맑은고딕",
"Dotum",
"돋움",
"Gulim",
"굴림",
"Helvetica",
"Arial",
"sans-serif",
],
mono: [
"ui-monospace",
"Consolas",
"SFMono-Regular",
"Liberation Mono",
"Menlo",
"Monaco",
"Courier",
"Apple SD Gothic Neo",
"Nanum Gothic",
"나눔고딕",
"Malgun Gothic",
"맑은고딕",
"monospace",
"NerdFontsSymbols Nerd Font",
],
},
extend: {
colors: {
"antd-form": "#d9d9d9",
brand: "#63489a",
turquoise: "#1abc9c",
greensea: "#16a085",
emerald: "#2ecc71",
nephritis: "#27ae60",
peterriver: "#3498db",
belizehole: "#2980b9",
amethyst: "#9b59b6",
wisteria: "#8e44ad",
wetasphalt: "#34495e",
midnightblue: "#2c3e50",
sunflower: "#f1c40f",
orange: "#f39c12",
carrot: "#e67e22",
pumpkin: "#d35400",
alizarin: "#e74c3c",
pomegranate: "#c0392b",
clouds: "#ecf0f1",
silver: "#bdc3c7",
concrete: "#95a5a6",
asbestos: "#7f8c8d",
},
},
},
plugins: [],
corePlugins: {
preflight: false,
},
};