test-space / tailwind.config.js
smolSWE's picture
Implemented product details, shopping cart, and checkout functionality
9a0c1bc verified
raw
history blame
268 Bytes
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./*.{html,js}"],
theme: {
extend: {
colors: {
amazon: {
blue: '#232F3E',
orange: '#FF9900',
}
}
},
},
plugins: [],
}