| /** @type {import('tailwindcss').Config} */ | |
| export default { | |
| content: [ | |
| "./index.html", | |
| "./src/**/*.{js,ts,jsx,tsx}", | |
| ], | |
| theme: { | |
| extend: { | |
| colors: { | |
| 'uvify-blue': '#3B82F6', | |
| 'uvify-purple': '#8B5CF6', | |
| }, | |
| fontFamily: { | |
| 'mono': ['Consolas', 'Monaco', 'Courier New', 'monospace'], | |
| }, | |
| }, | |
| }, | |
| plugins: [], | |
| } |