forked from opensource-construction/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
44 lines (43 loc) · 932 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
40
41
42
43
44
import type { Config } from "tailwindcss";
import typography from "@tailwindcss/typography";
import forms from "@tailwindcss/forms";
import {
colors,
white,
black,
currentColor,
transparent,
} from "./components/src/tokens/colors";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
colors: {
...colors,
white,
black,
transparent,
currentColor,
},
extend: {
fontSize: {
"2xl": ["1.9em", "1.14em"],
"3xl": ["2.8em", "1.14em"],
"4xl": ["3em", "1.14em"],
},
fontFamily: {
sans: ["var(--font-corbert)", "sans-serif"],
icon: ["var(--font-glyphter)"],
},
width: {
"122": "122%",
"300": "300%",
},
},
},
plugins: [typography, forms],
};
export default config;