Spaces:
Build error
Build error
| /** @type {import('tailwindcss').Config} */ | |
| module.exports = { | |
| content: [ | |
| './pages/**/*.{js,ts,jsx,tsx,mdx}', | |
| './components/**/*.{js,ts,jsx,tsx,mdx}', | |
| ], | |
| theme: { | |
| extend: { | |
| colors: { | |
| 'nordic-navy': '#0A1128', | |
| 'stone-gray': '#4A5568', | |
| 'ice-white': '#F7FAFC', | |
| 'aurora-cyan': '#00E5FF', | |
| }, | |
| fontFamily: { | |
| sans: ['Inter', 'sans-serif'], | |
| mono: ['Roboto Mono', 'monospace'], | |
| }, | |
| animation: { | |
| 'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite', | |
| } | |
| }, | |
| }, | |
| plugins: [], | |
| } |