Spaces:
Sleeping
Sleeping
| /** @type {import('tailwindcss').Config} */ | |
| export default { | |
| content: [ | |
| "./index.html", | |
| "./src/**/*.{js,ts,jsx,tsx}", | |
| ], | |
| theme: { | |
| extend: { | |
| colors: { | |
| 'gs-navy': '#0B233F', | |
| 'gs-slate': '#2C3E50', | |
| 'gs-gold': '#C5A880', | |
| 'gs-light': '#F8F9FA', | |
| }, | |
| fontFamily: { | |
| sans: ['Inter', 'sans-serif'], | |
| } | |
| }, | |
| }, | |
| plugins: [], | |
| } | |