Spaces:
Sleeping
Sleeping
| /** @type {import('tailwindcss').Config} */ | |
| export default { | |
| content: [ | |
| './index.html', | |
| './src/**/*.{js,ts,jsx,tsx}', | |
| ], | |
| theme: { | |
| extend: { | |
| colors: { | |
| 'bg-primary': '#08080d', | |
| 'bg-secondary': '#09090f', | |
| 'bg-card': '#0e0e16', | |
| }, | |
| fontFamily: { | |
| mono: ['ui-monospace', '"SF Mono"', 'Consolas', '"Liberation Mono"', 'monospace'], | |
| }, | |
| }, | |
| }, | |
| plugins: [], | |
| } | |