/** @type {import('tailwindcss').Config} */ module.exports = { content: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'], theme: { extend: { fontFamily: { sans: [ '-apple-system', 'BlinkMacSystemFont', '"Inter"', 'Roboto', '"Helvetica Neue"', 'Arial', '"Noto Sans"', 'sans-serif', '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"', ], }, colors: { gray: { 750: '#2d3748', 850: '#1a202c', }, }, }, }, plugins: [], darkMode: 'class', };