← back to Bertha

tailwind.config.js

22 lines

/** @type {import('tailwindcss').Config} */
module.exports = {
  content: ['./src/**/*.{js,jsx}'],
  theme: {
    extend: {
      colors: {
        bertha: {
          bg: '#0a0e1a',
          card: '#111827',
          border: '#1e293b',
          accent: '#3b82f6',
          green: '#10b981',
          red: '#ef4444',
          yellow: '#f59e0b',
          purple: '#8b5cf6',
        }
      }
    }
  },
  plugins: [],
};