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

58 lines
1.6 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
},
2020-10-24 18:09:48 -03:00
purge: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'],
2020-09-30 11:44:38 -05:00
theme: {
extend: {
2020-10-22 18:13:45 -03:00
maxWidth: {
'8xl': '1920px',
},
2020-10-13 11:43:06 -03:00
backgroundOpacity: {
075: '0.75',
},
2020-09-30 11:44:38 -05:00
colors: {
2020-10-15 16:00:11 -03:00
primary: 'var(--primary)',
'primary-2': 'var(--primary-2)',
secondary: 'var(--secondary)',
'secondary-2': 'var(--secondary-2)',
hover: 'var(--hover)',
'hover-1': 'var(--hover-1)',
'hover-2': 'var(--hover-2)',
2020-10-15 16:12:46 -03:00
'accents-0': 'var(--accents-0)',
2020-10-14 19:36:59 -03:00
'accents-1': 'var(--accents-1)',
'accents-2': 'var(--accents-2)',
'accents-3': 'var(--accents-3)',
'accents-4': 'var(--accents-4)',
'accents-5': 'var(--accents-5)',
'accents-6': 'var(--accents-6)',
'accents-7': 'var(--accents-7)',
'accents-8': 'var(--accents-8)',
2020-10-15 16:12:46 -03:00
'accents-9': 'var(--accents-9)',
2020-10-15 16:00:11 -03:00
violet: 'var(--violet)',
2020-10-22 18:13:45 -03:00
'violet-light': 'var(--violet-light)',
2020-10-15 16:00:11 -03:00
pink: 'var(--pink)',
cyan: 'var(--cyan)',
blue: 'var(--blue)',
green: 'var(--green)',
red: 'var(--red)',
2020-10-12 21:40:39 -03:00
},
textColor: {
2020-10-15 16:00:11 -03:00
base: 'var(--text-base)',
2020-10-12 21:40:39 -03:00
primary: 'var(--text-primary)',
secondary: 'var(--text-secondary)',
2020-09-30 11:44:38 -05:00
},
2020-10-21 18:32:32 -03:00
boxShadow: {
magical:
'rgba(0, 0, 0, 0.02) 0px 30px 30px, rgba(0, 0, 0, 0.03) 0px 0px 8px, rgba(0, 0, 0, 0.05) 0px 1px 0px',
},
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
}