-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
46 lines (45 loc) · 934 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
45
46
import type { Config } from "tailwindcss";
const config: Config = {
corePlugins: {
preflight: false,
container: false,
},
darkMode: ["class", '[data-theme="dark"]'],
content: [
"./src/**/*.{js,jsx,ts,tsx,html,md,scss}",
"./src/components/**/*.{js,jsx,ts,tsx,html,md,scss}",
],
theme: {
container: {
center: true,
padding: "16px",
},
fontFamily: {
sans: [
"Inter",
"-apple-system",
"BlinkMacSystemFont",
"Segoe UI",
"Roboto",
"Oxygen-Sans",
"Ubuntu,Cantarell",
"Helvetica",
"sans-serif",
],
grotesk: [
"Space Grotesk",
"-apple-system",
"BlinkMacSystemFont",
"Segoe UI",
"Roboto",
"Oxygen-Sans",
"Ubuntu,Cantarell",
"Helvetica",
"sans-serif",
],
},
extend: {},
},
plugins: [],
};
export default config;