forked from kenhyuwa/litepie-datepicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
40 lines (39 loc) · 943 Bytes
/
tailwind.config.js
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
const path = require('path');
const colors = require('tailwindcss/colors');
const { fontFamily } = require('tailwindcss/defaultTheme');
module.exports = {
mode: 'jit',
purge: [
'./docs/public/index.html',
'./docs/src/*.{vue,js,ts,jsx,tsx}',
path.resolve(__dirname, './node_modules/litepie-datepicker/**/*.js')
],
darkMode: 'class', // or 'media' or 'class'
theme: {
extend: {
colors: {
cyan: colors.cyan,
fuchsia: colors.fuchsia,
lime: colors.lime,
orange: colors.orange,
'light-blue': colors.sky,
'litepie-primary': colors.emerald,
'litepie-secondary': colors.coolGray
},
fontFamily: {
sans: ['Inter', ...fontFamily.sans]
},
opacity: {
85: '0.85'
}
}
},
variants: {
extend: {
cursor: ['disabled'],
textOpacity: ['disabled'],
textColor: ['disabled']
}
},
plugins: []
};