Spaces:
Running
Running
| /** @type {import('tailwindcss').Config} */ | |
| module.exports = { | |
| content: [ | |
| './pages/**/*.{js,ts,jsx,tsx,mdx}', | |
| './components/**/*.{js,ts,jsx,tsx,mdx}', | |
| ], | |
| theme: { | |
| extend: { | |
| fontFamily: { | |
| vazir: ['Vazirmatn', 'sans-serif'], | |
| }, | |
| colors: { | |
| glass: 'rgba(255, 255, 255, 0.1)', | |
| glassBorder: 'rgba(255, 255, 255, 0.2)', | |
| primary: '#6366f1', | |
| }, | |
| }, | |
| }, | |
| plugins: [], | |
| } |