-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
78 lines (77 loc) · 1.87 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
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
const twConfig = {
jit: true,
corePlugins: {
preflight: false,
},
prefix: "tw-",
content: ["./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
"hermes-blue": {
DEFAULT: "#0091cd",
900: "#1A9CD2",
800: "#33A7D7",
700: "#4DB2DC",
600: "#66BDE1",
500: "#80C8E6",
400: "#99D3EB",
300: "#B3DEF0",
200: "#CCE9F5",
100: "#E6F4FA",
50: "#F2F9FC",
},
"hermes-blue-hover": "#006d9a",
"hermes-blue-light": "#cce9f5",
"hermes-orange": "#e9530e",
"hermes-orange-hover": "#ba420c",
"hermes-orange-light": "#ffa800",
"hermes-signal-green": "#6ea528",
"hermes-signal-green-light": "#d3e4be",
"hermes-signal-yellow": "#e6aa00",
"hermes-signal-yellow-light": "#faeecc",
"hermes-signal-red": "#c30005",
"hermes-signal-red-light": "#f3cccd",
"hermes-grey": {
DEFAULT: "#3c3c41",
900: "#505054",
800: "#636367",
700: "#77777A",
600: "#8A8A8D",
500: "#9E9EA0",
400: "#B1B1B3",
300: "#C5C5C6",
200: "#D8D8D9",
100: "#EBEBEC",
50: "#F5F5F5",
},
"hermes-grey-50": "#9d9da0",
"hermes-grey-30": "#c4c4c6",
"hermes-grey-10": "#ebebec",
"hermes-grey-5": " #f5f5f6",
"hermes-grey-light": "#e2e2e3",
},
fontFamily: {
sans: [
"Roboto",
"Segoe\\ UI",
"Tahoma",
"Geneva",
"Verdana",
"sans-serif",
],
marselis: [
"Marselis",
"Roboto",
"Segoe\\ UI",
"Tahoma",
"Geneva",
"Verdana",
"sans-serif",
],
},
},
},
plugins: [],
}
export default twConfig