Spaces:
Running
Running
| /** @type {import('tailwindcss').Config} */ | |
| export default { | |
| darkMode: 'class', | |
| content: ['./index.html', './src/**/*.{ts,tsx}'], | |
| theme: { | |
| extend: { | |
| colors: { | |
| brand: { | |
| 50: '#f4f7ff', | |
| 100: '#e6edff', | |
| 200: '#c8d7ff', | |
| 300: '#a5bbff', | |
| 400: '#7f9cff', | |
| 500: '#627cff', | |
| 600: '#465fde', | |
| 700: '#3348a8', | |
| 800: '#273f8a', | |
| 900: '#1f346f' | |
| } | |
| } | |
| } | |
| }, | |
| plugins: [] | |
| } |