anycoder-ed280f1c / tailwind.config.js
samirerty's picture
Upload tailwind.config.js with huggingface_hub
cfe8f99 verified
raw
history blame contribute delete
437 Bytes
/** @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: [],
}