anycoder-e7ad4b16 / tailwind.config.js
hailsbop's picture
Upload tailwind.config.js with huggingface_hub
f539c73 verified
Raw
History Blame Contribute Delete
372 Bytes
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
colors: {
gmail: {
red: '#EA4335',
blue: '#4285F4',
yellow: '#FBBC05',
green: '#34A853',
}
}
},
},
plugins: [],
}