anycoder-059d41d7 / tailwind.config.js
pradipp's picture
Upload tailwind.config.js with huggingface_hub
b397a0f verified
raw
history blame contribute delete
382 Bytes
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
'google-blue': '#4285f4',
'google-red': '#ea4335',
'google-yellow': '#fbbc04',
'google-green': '#34a853',
},
},
},
plugins: [],
}