4
0
forked from crowetic/commerce
commerce/tailwind.config.js

45 lines
1.0 KiB
JavaScript
Raw Normal View History

2020-09-30 11:44:38 -05:00
module.exports = {
future: {
removeDeprecatedGapUtilities: true,
2020-10-12 16:35:01 -05:00
purgeLayersByDefault: true,
2020-09-30 11:44:38 -05:00
},
purge: [
2020-10-01 20:40:40 -05:00
'./components/**/*.{js,ts,jsx,tsx}',
'./pages/**/*.{js,ts,jsx,tsx}',
'./ui/**/*.{js,ts,jsx,tsx}',
2020-09-30 11:44:38 -05:00
],
theme: {
extend: {
2020-10-13 11:43:06 -03:00
backgroundOpacity: {
075: '0.75',
},
2020-09-30 11:44:38 -05:00
colors: {
2020-10-01 20:40:40 -05:00
'accent-1': '#FAFAFA',
2020-10-13 09:52:18 -03:00
'accent-2': '#F1F3F5',
2020-10-01 20:40:40 -05:00
'accent-4': '#888',
2020-10-13 14:34:24 -03:00
'accent-8': '#111111',
2020-10-01 20:40:40 -05:00
violet: '#7928CA',
pink: '#FF0080',
cyan: '#50E3C2',
blue: '#0070F3',
green: '#37B679',
red: '#DA3C3C',
2020-10-12 21:40:39 -03:00
primary: 'var(--bg-primary)',
secondary: 'var(--bg-secondary)',
2020-10-13 11:43:06 -03:00
'primary-accent': 'var(--bg-primary-accent)',
2020-10-13 14:59:36 -03:00
'primary-hover': 'var(--bg-primary-hover)',
2020-10-12 21:40:39 -03:00
},
textColor: {
base: 'var(--text-primary)',
primary: 'var(--text-primary)',
secondary: 'var(--text-secondary)',
2020-09-30 11:44:38 -05:00
},
},
},
variants: {},
2020-10-01 20:40:40 -05:00
plugins: [require('@tailwindcss/ui')],
2020-09-30 11:44:38 -05:00
experimental: {
applyComplexClasses: true,
},
2020-10-01 20:40:40 -05:00
}