osm_my_commerce/osm_my_commerce/tailwind.config.js

22 lines
392 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
theme: {
screens: {
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1280px',
},
extend: {
colors: {
main: {
primary: '#0A66C2',
lighter: '#378fe9',
darker: '#004182',
},
},
},
},
plugins: [require('@tailwindcss/typography')],
}