tailwind.config.js 400 B

12345678910111213141516171819202122
  1. /** @type {import('tailwindcss').Config} */
  2. module.exports = {
  3. content: [
  4. './src/**/*.{js,ts,jsx,tsx,mdx}',
  5. ],
  6. theme: {
  7. extend: {
  8. colors: {
  9. brand: {
  10. bg: '#0B1020',
  11. card: '#121831',
  12. accent: {
  13. purple: '#7C5CFF',
  14. green: '#00E5A0',
  15. },
  16. text: '#E8ECF8',
  17. },
  18. },
  19. },
  20. },
  21. plugins: [],
  22. };