-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
70 lines (66 loc) · 1.27 KB
/
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
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
import { fontFamily as _fontFamily } from "tailwindcss/defaultTheme";
const primaryColor = {
DEFAULT: "#fb723c",
50: "#fff4ed",
100: "#ffe6d5",
200: "#febe99",
300: "#fda374",
400: "#fb723c",
500: "#f94d16",
600: "#ea320c",
700: "#c2220c",
800: "#9a1d12",
900: "#7c1b12",
950: "#430a07",
};
const accentColor = {
DEFAULT: "#ed7f8d",
50: "#fef2f3",
100: "#fce7e8",
200: "#f9d2d6",
300: "#f4adb5",
400: "#ed7f8d",
500: "#e15268",
600: "#cd3151",
700: "#bb2749",
800: "#90213e",
900: "#7c1f3b",
950: "#450c1b",
};
const punch = {
DEFAULT: "#ff7268",
50: "#fff2f1",
100: "#ffe2e0",
200: "#ffcac6",
300: "#ffa69f",
400: "#ff7268",
500: "#fb4538",
600: "#e32416",
700: "#c41d11",
800: "#a21c12",
900: "#861e16",
950: "#490b06",
};
export const content = ["./src/**/*.{html,ts}"];
export const theme = {
extend: {
colors: {
primary: primaryColor,
accent: accentColor,
warn: punch,
},
fontFamily: {
sans: ['"Poppins"', ..._fontFamily.sans],
},
animation: {
blink: "blink 0.6s infinite",
},
keyframes: {
blink: {
"49%": { backgroundColor: "currentColor" },
"99%": { backgroundColor: "transparent" },
},
},
},
};
export const plugins = [];