File: /home/durgeshpandey215/www/demokalyani.skilladders.com/tailwind.config.js
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./index.html',
'./view/**/*.html',
'./src/**/*.js',
'./src/**/*.html',
'./components/**/*.js' // Added common component path
],
theme: {
extend: {
fontFamily: {
poppins: ['Poppins', 'sans-serif'],
dmSans: ['DM Sans', 'sans-serif'],
inter: ['Inter', 'sans-serif'],
sawarabimincho:[ "Sawarabi Mincho", "serif"]
},
screens: {
'midlaptop': '1400px',
'lagescreen':'1800px' // Custom width-based query
},
},
},
plugins: [],
}