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.
25 lines
565 B
JavaScript
25 lines
565 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
|
|
darkMode: 'media',
|
|
theme: {
|
|
colors: {
|
|
'whatsapp': '#25D366',
|
|
'whatsapp-dark': '#075E54',
|
|
'whatsapp-second': '#128c7e',
|
|
'whatsapp-gossip': '#dcf8c6',
|
|
'whatsapp-bg': '#ece5dd',
|
|
'whatsappme': '#ccd5ae',
|
|
},
|
|
extend: {
|
|
// gridTemplateColumns: {
|
|
// 'responsive':repeat(autofill,minmax('300px',1fr))
|
|
// }
|
|
},
|
|
},
|
|
plugins: [],
|
|
corePlugins: {
|
|
preflight: false
|
|
}
|
|
};
|