tailwind.config.js 347 B

123456789101112131415161718
  1. /** @type {import('tailwindcss').Config} */
  2. export default {
  3. content: ['./index.html', './src/**/*.{js,jsx}'],
  4. theme: {
  5. extend: {
  6. colors: {
  7. primary: {
  8. 50: '#eff6ff',
  9. 100: '#dbeafe',
  10. 500: '#3b82f6',
  11. 600: '#2563eb',
  12. 700: '#1d4ed8',
  13. }
  14. }
  15. }
  16. },
  17. plugins: []
  18. }