forked from renegadevi/nuxt-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
48 lines (47 loc) · 1023 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
47
48
import { type Config } from "tailwindcss";
export default {
// content: ["./src/**/*.{html,js}"],
darkMode: "class",
theme: {
fontFamily: {
sans: ["Inter"],
serif: ["serif"],
mono: ["monospace"],
display: ["Inter"],
body: ["Inter"],
},
extend: {
colors: {
"nuxt-green": "#00DC82",
"nuxt-white": "#ffffff",
"nuxt-grey": "#18181B",
},
spacing: {
"8xl": "96rem",
"9xl": "128rem",
},
borderRadius: {
"4xl": "2rem",
"5xl": "2.5rem",
"6xl": "3rem",
},
},
},
content: [
`./components/**/*.{vue,js,ts}`,
`./layouts/**/*.vue`,
`./pages/**/*.vue`,
`./composables/**/*.{js,ts}`,
`./plugins/**/*.{js,ts}`,
`./utils/**/*.{js,ts}`,
`./app.{js,ts,vue}`,
`./error.{js,ts,vue}`,
`./app.config.{js,ts}`,
],
// safelist: [
// 'safelisted',
// {
// pattern: /bg-(red|green|blue)-(100|200|300)/,
// },
// ]
} satisfies Config;