-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
67 lines (66 loc) · 1.5 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
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: {
extend: {
fontFamily: {
sans: ["var(--font-inter)"],
mono: ["var(--font-ubuntu)"],
},
colors: {
candy: {
50: "#f0fbfd",
100: "#d0f3fa",
200: "#b9eef8",
300: "#98e6f4",
400: "#85e1f2",
500: "#66d9ef",
600: "#5dc5d9",
700: "#489aaa",
800: "#387783",
900: "#2b5b64",
},
lime: {
50: "#eaffe7",
100: "#beffb3",
200: "#9eff8f",
300: "#72ff5c",
400: "#57ff3c",
500: "#2dff0b",
600: "#29e80a",
700: "#20b508",
800: "#198c06",
900: "#136b05",
},
gum: {
50: "#fff2f9",
100: "#fed5ed",
200: "#fec1e4",
300: "#fea5d7",
400: "#fd93d0",
500: "#fd78c4",
600: "#e66db2",
700: "#b4558b",
800: "#8b426c",
900: "#6a3252",
},
blueberry: {
300: "#323842",
600: "#151A2A",
900: "#07061D",
},
background: "#030712",
pistachio: "#D3FFCC",
cream: "#E2DFCD",
foam: "#D7DAE2",
snow: "#FFFFFF",
},
},
},
plugins: [],
};
export default config;