inogen/tailwind.config.js

17 lines
245 B
JavaScript

module.exports = {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
green: '#3AEA83',
blue: '#69C8EA',
red: '#F76276',
}
},
},
plugins: [],
};