-
Notifications
You must be signed in to change notification settings - Fork 10
/
tailwind.config.ts
39 lines (39 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 plugin from 'tailwindcss/plugin'
export default <Partial<Config>>{
theme: {
extend: {
colors: {
primary: "#ff8500"
}
}
},
content: [
'components/**/*.{vue,js,ts}',
'layouts/**/*.vue',
'pages/**/*.vue',
'composables/**/*.{js,ts}',
'plugins/**/*.{js,ts}',
'App.{js,ts,vue}',
'app.{js,ts,vue}',
'Error.{js,ts,vue}',
'error.{js,ts,vue}',
'content/**/*.md'
],
safelist: [
{
pattern: /grid-cols-(2|3|4|6)/,
variants: ['lg']
},
"text-primary",
],
plugins: [
plugin(function ({ addUtilities }) {
addUtilities({
'.text-stroke-thin': {
'-webkit-text-stroke': 'thin',
}
})
})
]
}