1/** @type {import('tailwindcss').Config} */ 2module.exports = { 3 content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'], 4 theme: { 5 extend: { 6 colors: { 7 brand: 'rgb(10,122,255)', 8 textLight: 'rgb(66,87,108)', 9 }, 10 }, 11 }, 12 plugins: [], 13}