forked from ianlucas/cs2-inventory-simulator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
39 lines (37 loc) · 1.07 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
/*---------------------------------------------------------------------------------------------
* Copyright (c) Ian Lucas. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import type { Config } from "tailwindcss";
export default {
content: ["./app/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
fontFamily: {
display: ["'stratum-2-web'", "'Exo 2'", "sans-serif"],
sans: ["'Noto Sans'", "sans-serif"],
mono: [
"ui-monospace",
"SFMono-Regular",
"Menlo",
"Monaco",
"Cascadia Code",
"Consolas",
"Liberation Mono",
"Courier New",
"monospace"
]
},
fontSize: {
sm: "0.9rem",
base: "1.1rem",
xl: "1.35rem",
"2xl": "1.663rem",
"3xl": "2.053rem",
"4xl": "2.541rem",
"5xl": "3.152rem"
}
}
},
plugins: []
} satisfies Config;