Files
PyUIBuilder/tailwind.config.js

20 lines
321 B
JavaScript
Raw Permalink Normal View History

2024-08-04 12:08:30 +05:30
/** @type {import('tailwindcss').Config} */
module.exports = {
prefix: 'tw-',
important: false,
corePlugins: {
preflight: false, // disable default styling
},
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
colors: {
2024-08-04 22:47:43 +05:30
primaryBg: "#f6f7f8"
2024-08-04 12:08:30 +05:30
}
},
},
plugins: [],
}