mirror of
https://github.com/fergalmoran/xtreamium.git
synced 2025-12-22 09:41:33 +00:00
20 lines
361 B
JavaScript
20 lines
361 B
JavaScript
const defaultTheme = require("tailwindcss/defaultTheme");
|
|
const windmill = require("@windmill/react-ui/config");
|
|
|
|
const config = {
|
|
content: ["./src/**/*.{js,jsx,ts,tsx}"],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
Rampart: ["Raleway", "sans-serif"],
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|
|
|
|
module.exports = {
|
|
...windmill(config),
|
|
...config,
|
|
};
|