/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./**/*.{html,js}"
],
theme: {
extend: {
// Custome code
colors:{
'theme-primary':'#ff7426',
'theme-black':'#25262b',
'theme-gray':'#696969',
'theme-lightgray':'#f6f6f8',
},
screens: {
'sm': '767px'
}
},
},
plugins: [],
}