This repository has been archived by the owner on Jul 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
78 lines (77 loc) · 2.16 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
68
69
70
71
72
73
74
75
76
77
78
import type { Config } from "tailwindcss";
import plugin from "tailwindcss/plugin";
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))",
},
fontWeight: {
"thin-mid": "150",
"extralight-mid": "250",
"light-mid": "350",
"normal-mid": "450",
"medium-mid": "550",
"semibold-mid": "650",
"bold-mid": "750",
"extrabold-mid": "850",
},
margin: {
"0.75": "0.1875rem",
"1.75": "0.4375rem",
},
padding: {
"0.75": "0.1875rem",
"1.75": "0.4375rem",
},
scale: {
"103": "1.03",
},
borderRadius: {
"lg-half": "0.625rem",
},
fontFamily: {
inter: ["var(--font-inter)"],
lora: ["var(--font-lora)"],
commit_mono: ["var(--font-commit-mono)"],
},
colors: {
forest: {
"50": "#f3f9ec",
"100": "#e4f2d5",
"200": "#cae7af",
"300": "#a8d680",
"400": "#89c358",
"500": "#77bb41",
"600": "#51852b",
"700": "#3f6625",
"800": "#355222",
"900": "#2f4621",
"950": "#16260d",
},
betty: {
50: "#FEECF7",
100: "#F9DCEE",
200: "#EEBFDB",
300: "#DDA7C7",
400: "#C992B3",
500: "#B1819E",
600: "#966783",
700: "#7B4C68",
800: "#582C47",
900: "#301224",
950: "#1C0814",
},
},
},
},
plugins: [require("@tailwindcss/typography")],
};
export default config;