-
Notifications
You must be signed in to change notification settings - Fork 3
/
tailwind.config.js
67 lines (67 loc) · 1.55 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
/** @type {import('tailwindcss').Config} */
export default {
corePlugins: {
container: false,
},
content: ["./src/**/*.{js,ts,jsx,tsx,mdx}"],
theme: {
extend: {
colors: {
"brand-primary": "#EA580C",
"brand-secondary": "#C2410C",
"brand-accent": "#FDE047",
primary: {
DEFAULT: "#f05a24",
100: "#f69f80",
200: "#f5906c",
300: "#f37e54",
400: "#f26c3c",
500: "#f05a24",
600: "#ea4a10",
700: "#d3420e",
800: "#bb3b0d",
900: "#6f2308",
},
"primary-accent": {
DEFAULT: "#f6921e",
100: "#fac07c",
200: "#f9b668",
300: "#f8aa4f",
400: "#f79e37",
500: "#f6921e",
600: "#f1860a",
700: "#d87809",
800: "#c06b08",
900: "#724005",
},
secondary: {
DEFAULT: "#6526ff",
100: "#ab88ff",
200: "#9b73ff",
300: "#8959ff",
400: "#7740ff",
500: "#6526ff",
600: "#530dff",
700: "#4600f2",
800: "#3f00d9",
900: "#280088",
},
"secondary-accent": {
DEFAULT: "#b42fff",
100: "#d07dff",
200: "#d07cff",
300: "#c662ff",
400: "#bd49ff",
500: "#b42fff",
600: "#ab16ff",
700: "#a000fb",
800: "#9000e2",
900: "#50007d",
},
black: "#1a1a1a",
white: "#ffffff",
},
},
},
plugins: [],
};