Spaces:
Sleeping
Sleeping
| /** @type {import('tailwindcss').Config} */ | |
| export default { | |
| content: [ | |
| "./index.html", | |
| "./main.tsx", | |
| "./App.tsx" | |
| ], | |
| theme: { | |
| extend: { | |
| colors: { | |
| navy: { | |
| 800: '#1e293b', | |
| 900: '#0f172a', | |
| }, | |
| turquoise: { | |
| 600: '#0d9488', | |
| 700: '#0f766e', | |
| }, | |
| amberGold: { | |
| 500: '#f59e0b', | |
| 600: '#d97706', | |
| } | |
| } | |
| }, | |
| }, | |
| plugins: [], | |
| } |