forked from TheDoozerDisciples/testsite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
67 lines (66 loc) · 2.14 KB
/
tailwind.config.ts
File metadata and controls
67 lines (66 loc) · 2.14 KB
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
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
},
colors: {
"nice-green-400": "#d0f4de",
"nice-green-300": "#d7efe0",
"nice-green-200": "#e0f8e7",
"nice-green-100": "#eafcf3",
"nice-green-500": "#a3e9c7",
"nice-green-600": "#8fdcb9",
"nice-green-700": "#7acfaa",
"nice-green-800": "#66c29c",
"nice-green-900": "#52b68d",
"nice-blue-400": "#a9def9",
"nice-blue-300": "#b5daed",
"nice-blue-200": "#c1d6e1",
"nice-blue-100": "#cdd2d5",
"nice-blue-500": "#93c2f0",
"nice-blue-600": "#7fb8ea",
"nice-blue-700": "#6baee4",
"nice-blue-800": "#57a4de",
"nice-blue-900": "#439ad8",
"nice-purple-400": "#e4c1f9",
"nice-purple-300": "#e3cbf1",
"nice-purple-200": "#e2d5e9",
"nice-purple-100": "#e1dfe1",
"nice-purple-500": "#c69be3",
"nice-purple-600": "#b68fd9",
"nice-purple-700": "#a683cf",
"nice-purple-800": "#9767c5",
"nice-purple-900": "#875bbc",
"nice-yellow-400": "#fcf6bd",
"nice-yellow-300": "#f2edc5",
"nice-yellow-200": "#e8e5cd",
"nice-yellow-100": "#ded2d5",
"nice-yellow-500": "#f8ef9f",
"nice-yellow-600": "#f2e68f",
"nice-yellow-700": "#ebdd7f",
"nice-yellow-800": "#e5d46f",
"nice-yellow-900": "#dfcb5f",
"nice-pink-400": "#ff99c8",
"nice-pink-300": "#f0a8ca",
"nice-pink-200": "#e1b7cc",
"nice-pink-100": "#d2c6ce",
"nice-pink-500": "#ff80b6",
"nice-pink-600": "#ff6fa3",
"nice-pink-700": "#ff5e90",
"nice-pink-800": "#ff4d7d",
"nice-pink-900": "#ff3c6a",
}
},
},
plugins: [],
};
export default config;