-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.ts
39 lines (34 loc) · 926 Bytes
/
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
import type { Config } from "tailwindcss"
import defaultTheme from "tailwindcss/defaultTheme"
const config: Config = {
content: [
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
"./src/extension/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
fontWeight: {
normal: "400",
medium: "500",
bold: "600",
},
extend: {
fontFamily: {
sans: ["var(--font-inter)", ...defaultTheme.fontFamily.sans],
},
textColor: {
default: "var(--color-grey-600)",
primary: "var(--color-primary)",
},
backgroundColor: {
default: "var(--color-bg-default)",
primary: "var(--color-primary)",
grey: "var(--color-grey)",
"grey-600": "var(--color-grey-600)",
"grey-700": "var(--color-grey-700)",
},
},
},
plugins: [require("@tailwindcss/forms")],
}
export default config