Files
soroushasadi/tailwind.config.js
T

25 lines
624 B
JavaScript
Raw Normal View History

/** @type {import('tailwindcss').Config} */
// Public site theme. Scoped away from the admin theme (which redefines
// `emerald` as a flat color and would collide with the emerald-600 scale).
module.exports = {
content: [
'./Pages/*.cshtml',
'./Pages/Blog/**/*.cshtml',
'./Pages/Shared/_Layout.cshtml',
'./wwwroot/js/**/*.js',
],
theme: {
extend: {
colors: {
accent: '#2563eb',
accentink: '#1d4ed8',
},
fontFamily: {
display: ['Syne', 'system-ui', 'sans-serif'],
fa: ['Vazirmatn', 'system-ui', 'sans-serif'],
},
},
},
plugins: [],
};