-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
53 lines (52 loc) · 1.14 KB
/
tailwind.config.ts
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
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
"./src/features/**/*.{js,ts,jsx,tsx,mdx}",
"./src/ui/**/*.{js,ts,jsx,tsx,mdx}",
"./src/screens/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
colors: {
background: "#FFFCF2",
primary: "#FFC121",
secondary: "#FF5E2C",
white: "#FFFFFF",
text: "#484335",
subText: "#726A54",
link: "#00b0ff",
},
fontFamily: {
body: ["Avenir", "hiragino kaku gothic pro", "sans-serif"],
},
fontSize: {
h1: ["24px", "42px"],
h2: ["20px", "35px"],
h3: ["18px", "32px"],
body: ["16px", "28px"],
detail1: ["14px", "18px"],
detail2: ["12px", "16px"],
},
extend: {
spacing: {
10: "2px",
20: "4px",
30: "8px",
40: "12px",
50: "16px",
60: "24px",
70: "32px",
80: "40px",
90: "48px",
100: "56px",
110: "64px",
120: "80px",
130: "96px",
140: "112px",
150: "128px",
},
},
},
plugins: [],
};
export default config;