open-consul/ui/packages/consul-ui/tailwind.config.js
Michael Klein a3991a60f1 Disable custom color utilities based on hds colors
We want to use the utility classes that HDS provides instead.
2022-10-25 14:03:11 +02:00

11 lines
235 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['../**/*.{html.js,hbs,mdx}'],
theme: {
// disable all color utilities - we want to use HDS instead
colors: {},
extend: {},
},
plugins: [],
};