forked from jeromemccree/vidchill_tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
67 lines (65 loc) · 1.5 KB
/
tailwind.config.cjs
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} */
const config = {
content: ["./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
primary: {
25: "#f6fefc",
50: "#f0fdf9",
100: "#ccfbef",
200: "#99f6e0",
300: "#5fe9d0",
400: "#2ed3b7",
500: "#15b79e",
600: "#11999e",
700: "#137065",
800: "#125d56",
900: "#134e48",
},
error: {
25: "#fffbfa",
50: "#fef3f2",
100: "#fee4e2",
200: "#fecdca",
300: "#fda29b",
400: "#f97066",
500: "#f04438",
600: "#d92d20",
700: "#b42318",
800: "#912018",
900: "#7a271a",
},
warning: {
25: "#fffcf5",
50: "#fffaeb",
100: "#fef0c7",
200: "#fedf89",
300: "#fec84b",
400: "#fdb022",
500: "#f79009",
600: "#dc6803",
700: "#b54708",
800: "#93370d",
900: "#7a2e0e",
},
success: {
25: "#f6fef9",
50: "#ecfdf3",
100: "#d1fadf",
200: "#a6f4c5",
300: "#6ce9a6",
400: "#32d583",
500: "#12b76a",
600: "#039855",
700: "#027a48",
800: "#05603a",
900: "#054f31",
},
fontFamily: { inter: "Inter" },
},
},
plugins: [require("@tailwindcss/forms")],
},
};
module.exports = config;