/** @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: [], }