-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
88 lines (86 loc) · 1.6 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
79
80
81
82
83
84
85
86
87
88
import type { Config } from "tailwindcss";
const COLORS = {
white: "#fff",
pink: {
DEFAULT: "#fd66a3",
100: "#46011d",
200: "#8d023a",
300: "#d30356",
400: "#fc2279",
500: "#fd66a3",
600: "#fd86b6",
700: "#fea5c8",
800: "#fec3da",
900: "#ffe1ed",
},
blue: {
DEFAULT: "#569fe8",
100: "#082038",
200: "#0f3f6f",
300: "#175fa7",
400: "#1e7edf",
500: "#569fe8",
600: "#77b1ec",
700: "#99c5f1",
800: "#bbd8f6",
900: "#ddecfa",
},
onyx: {
DEFAULT: "#343839",
100: "#0a0b0b",
200: "#141616",
300: "#1f2122",
400: "#292c2d",
500: "#343839",
600: "#596163",
700: "#808a8c",
800: "#aab1b2",
900: "#d5d8d9",
},
green: {
DEFAULT: "#3fd977",
100: "#092f17",
200: "#135e2e",
300: "#1c8d45",
400: "#25bb5c",
500: "#3fd977",
600: "#66e193",
700: "#8ce8ae",
800: "#b2f0c9",
900: "#d9f7e4",
},
yellow: {
DEFAULT: "#fafa0c",
100: "#333301",
200: "#666602",
300: "#999903",
400: "#cccc04",
500: "#fafa0c",
600: "#fbfb3b",
700: "#fcfc6c",
800: "#fdfd9d",
900: "#fefece",
},
};
const config: Config = {
content: ["./src/**/*.{js,ts,jsx,tsx,mdx}"],
theme: {
colors: COLORS,
extend: {
dropShadow: {
"solid-onyx": `0.05em 0.05em 0px ${COLORS.onyx.DEFAULT}`,
},
animation: {
fade: "fade 150ms ease-in 1",
},
keyframes: {
fade: {
"0%": { opacity: "0" },
"100%": { opacity: "1" },
},
},
},
},
plugins: [],
};
export default config;