/** @type {import('tailwindcss').Config} */ module.exports = { content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'], darkMode: 'class', theme: { extend: { colors: { slate: { 900: '#0b1220', 800: '#071827', 700: '#0f1720', }, }, }, }, plugins: [], }