You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Global-sales/tailwind.config.js

22 lines
461 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
darkMode: 'media',
theme: {
colors: {
'whatsapp': '#25D366',
// 'whatsappme': '#1ba784',
'whatsappme': '#ccd5ae',
},
extend: {
// gridTemplateColumns: {
// 'responsive':repeat(autofill,minmax('300px',1fr))
// }
},
},
plugins: [],
corePlugins: {
preflight: false
}
};