-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtailwind.config.ts
53 lines (52 loc) · 1.27 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";
import defaultTheme from "tailwindcss/defaultTheme";
export default <Partial<Config>>{
theme: {
extend: {
colors: {
fern: {
"50": "#f3faf3",
"100": "#e3f5e4",
"200": "#c9e9cb",
"300": "#9ed7a3",
"400": "#72bf78",
"500": "#47a04e",
"600": "#36833c",
"700": "#2d6832",
"800": "#28532c",
"900": "#224526",
"950": "#0e2511",
},
space: {
"50": "#f4f7f7",
"100": "#e2eaeb",
"200": "#c8d6d9",
"300": "#a1babf",
"400": "#73969d",
"500": "#587b82",
"600": "#4c676e",
"700": "#42555c",
"800": "#3b494f",
"900": "#2c3539",
"950": "#20292c",
},
"hawkes-blue": {
"50": "#eff5fe",
"100": "#e2ecfd",
"200": "#d2e0fb",
"300": "#abc3f6",
"400": "#89a1f0",
"500": "#6c81e8",
"600": "#515dda",
"700": "#424bc0",
"800": "#38409b",
"900": "#343c7b",
"950": "#1e2148",
},
},
fontFamily: {
sans: ["Fredoka", ...defaultTheme.fontFamily.sans],
},
},
},
};