-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
38 lines (38 loc) · 925 Bytes
/
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
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./stories/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
primary: "#03438D",
disable: "#A8B0B9",
"disable-border": "#808080",
active: "#EEC32A",
light: "#9B9893",
dark: "#000400",
darkgray: "#A8B0B9",
"c-bg": "#EFECE7",
error: "#F57375",
"header-border": "#000400",
"setting-icon": "#E2EDFA",
noPost1: "#DE4B63",
noPost2: "#FAA722",
noPost3: "#83C51D",
},
fontFamily: {
paytone: ["'Paytone One'", "sans-serif"],
helvetica: ["'Helvetica Neue'", "sans-serif"],
},
lineHeight: {
1.4: "1.4",
},
boxShadow: {
main: "-8px 8px 0px #00040029",
},
},
},
plugins: [require("@tailwindcss/line-clamp")],
};