-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
53 lines (52 loc) · 1.2 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
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
colors: {
peacock: {
50: "#F2F7F6",
100: "#E3EEEB",
200: "#C9DED9",
300: "#ADCDC5",
400: "#93BDB3",
500: "#77AC9F",
600: "#5D9889",
700: "#4D7F72",
800: "#3C6259",
900: "#2C4841",
DEFAULT: "#2C4841",
950: "#15231F",
},
jadeite: {
50: "#EDF2EF",
100: "#DFE7E2",
200: "#BFCFC4",
300: "#9FB7A7",
400: "#7F9F89",
500: "#61826C",
DEFAULT: "#61826C",
600: "#4E6957",
700: "#3B4F42",
800: "#27352C",
900: "#141A16",
950: "#090C0A"
}
},
extend: {
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
},
fontFamily: {
gilroy: ["var(--font-gilroy)"],
},
},
},
plugins: [],
};
export default config;