/** @type {import('tailwindcss').Config} */ module.exports = { content: [ './pages/**/*.{js,ts,jsx,tsx,mdx}', './components/**/*.{js,ts,jsx,tsx,mdx}', ], theme: { extend: { colors: { 'pb-anthracite': '#2A2A2A', 'pb-turquoise': '#00bfa5', }, }, }, plugins: [] }