forked from ProsperityMC/Prosperity-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
47 lines (47 loc) · 946 Bytes
/
tailwind.config.js
File metadata and controls
47 lines (47 loc) · 946 Bytes
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
/** @type {import('tailwindcss').Config} */
// eslint-disable-next-line no-undef
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./mdx-components.tsx"
],
theme: {
extend: {
fontFamily: {
sans: ["var(--font-atkinson-hyperlegible)"],
header: ["var(--font-inter)"],
mono: ["var(--font-jetbrains-mono)"]
},
colors: {
yellow: {
50: "#fff9e8",
100: "#fff3d1",
200: "#ffe6a4",
300: "#feda76",
400: "#fecd49",
500: "#fec11b",
600: "#cb9a16",
700: "#987410",
800: "#664d0b",
900: "#332705"
},
zinc: {
50: "#F2F2F3",
100: "#E4E6E7",
200: "#C6C9CC",
300: "#ACB0B4",
400: "#91969C",
500: "#747A81",
600: "#5B6166",
700: "#43474B",
800: "#292B2E",
900: "#111213",
950: "#070808"
}
}
}
},
plugins: []
};