forked from Uninen/datatable-experiment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
37 lines (36 loc) · 934 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
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
purge: {
enabled: process.env.NODE_ENV === 'production',
content: ['./index.html', './src/**/*.vue', './src/**/*.ts'],
},
theme: {
extend: {
boxShadow: {
dark: '0 1px 3px 0 rgba(255, 255, 255, 0.1), 0 1px 2px 0 rgba(255, 255, 255, 0.06)',
},
fontFamily: {
sans: ['Play', ...defaultTheme.fontFamily.sans],
},
colors: {
dark: {
50: '#F4F4F4',
100: '#E8E8E8',
200: '#C6C6C6',
300: '#A4A4A4',
400: '#242424',
500: '#1C1C1C',
600: '#191919',
700: '#111111',
800: '#0D0D0D',
900: '#080808',
},
},
},
},
plugins: [require('@tailwindcss/ui'), require('@tailwindcss/typography')],
future: {
removeDeprecatedGapUtilities: true,
purgeLayersByDefault: true,
},
}