tailwind.config.js
1 /** @type {import('tailwindcss').Config} */ 2 export default { 3 content: [ 4 './index.html', 5 './src/**/*.{js,ts,jsx,tsx}', 6 ], 7 theme: { 8 extend: { 9 colors: { 10 // Core colors from design system 11 background: '#ffffff', 12 'text-primary': '#1f2937', 13 alpha: { 14 50: '#EBF4FF', 15 100: '#D6E8FF', 16 200: '#ADD1FF', 17 300: '#75B3FF', 18 400: '#4A9DFF', 19 500: '#2B87FF', 20 600: '#1A6FE8', 21 700: '#1458CC', 22 800: '#1048A8', 23 900: '#0D3A85', 24 }, 25 delta: { 26 50: '#FFFBEB', 27 100: '#FEF3C7', 28 200: '#FDE68A', 29 300: '#FCD34D', 30 400: '#FBBF24', 31 500: '#F59E0B', 32 600: '#D97706', 33 700: '#B45309', 34 800: '#92400E', 35 900: '#78350F', 36 }, 37 }, 38 }, 39 }, 40 plugins: [], 41 }