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