-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtailwind.config.js
More file actions
41 lines (39 loc) · 957 Bytes
/
tailwind.config.js
File metadata and controls
41 lines (39 loc) · 957 Bytes
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
const colors = require('tailwindcss/colors')
module.exports = {
content: [
'./src/renderer/components/**/*.{vue,js}',
'./src/renderer/layouts/**/*.vue',
'./src/renderer/pages/**/*.vue',
'./src/renderer/plugins/**/*.{js,ts}',
'./src/renderer/nuxt.config.{js,ts}'
],
safelist: [
// THE DARK SIDE 😈
'dark',
// Scrollbar
'body', 'body.dark', '::-webkit-scrollbar',
'::-webkit-scrollbar-track', '::-webkit-scrollbar-thumb',
'::-webkit-scrollbar-thumb:hover ',
// Colors
'text-green-600', 'text-green-900',
'text-indigo-600', 'text-indigo-900',
'text-red-600', 'text-red-900', 'text-orange-500',
// Utilities
'py-8', 'pb-5', 'pt-6',
'w-88', 'w-96'
],
theme: {
extend: {
colors: {
gray: colors.zinc
}
},
fontFamily: {
sans: ['Mulish']
}
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography')
]
}