Spaces:
Sleeping
Sleeping
| /** @type {import('tailwindcss').Config} */ | |
| module.exports = { | |
| content: [ | |
| './app/**/*.{js,ts,jsx,tsx,mdx}', | |
| ], | |
| theme: { | |
| extend: { | |
| colors: { | |
| primary: '#1e3a8a', | |
| dark: '#0f172a', | |
| }, | |
| fontFamily: { | |
| sans: ['Inter', 'sans-serif'], | |
| }, | |
| }, | |
| }, | |
| plugins: [], | |
| } |