/** @type {import('tailwindcss').Config} */ export default { content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"], darkMode: "class", theme: { extend: { colors: { "google-dark": "#202124", "google-gray": "#303134", "google-text": "#E8EAED", "google-text-secondary": "#9AA0A6", }, }, }, plugins: [], }