forked from ziru-tan/okif-fe
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
78 lines (77 loc) · 1.63 KB
/
Copy pathtailwind.config.ts
File metadata and controls
78 lines (77 loc) · 1.63 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
import type { Config } from "tailwindcss";
const config: Config = {
content: ["./app/**/*.{js,ts,jsx,tsx,mdx}"],
theme: {
extend: {
colors: {
neutral: {
light: "#E4E4E4",
"light-hover": "#DEDEDE",
"light-active": "#D7D7D7",
normal: "#C2C2C2",
"normal-hover": "#A5A5A5",
"normal-active": "#8E8E8E",
dark: "#444444",
"dark-hover": "#313131",
"dark-active": "#151515",
},
primary: {
light: "#E6F5FF",
"light-hover": "#D9F1FF",
"light-active": "#B0E1FE",
normal: "#009FFC",
"normal-hover": "#008FE3",
"normal-active": "#007FCA",
dark: "#0077BD",
"dark-hover": "#005F97",
"dark-active": "#004871",
darker: "#003858",
},
secondary: {
black: "#151515",
white: "#FFFFFF",
},
},
fontSize: {
"text-s": [
"12px",
{
lineHeight: "16px",
},
],
"text-m": [
"14px",
{
lineHeight: "20px",
},
],
"text-l": [
"16px",
{
lineHeight: "24px",
},
],
"heading-s": [
"20px",
{
lineHeight: "28px",
},
],
"heading-m": [
"28px",
{
lineHeight: "36px",
},
],
"heading-l": [
"36px",
{
lineHeight: "44px",
},
],
},
},
},
plugins: [],
};
export default config;