🔧 theme.json generator - move Tailwind to end

This commit is contained in:
Ben Word
2022-09-24 10:23:39 -05:00
parent a2bd26a4af
commit 8e37498eaa

View File

@@ -47,9 +47,6 @@ export default async (app) => {
* @note This overwrites `theme.json` on every build. * @note This overwrites `theme.json` on every build.
*/ */
.wpjson .wpjson
.useTailwindColors()
.useTailwindFontFamily()
.useTailwindFontSize()
.settings({ .settings({
color: { color: {
custom: false, custom: false,
@@ -72,5 +69,8 @@ export default async (app) => {
customFontSize: false, customFontSize: false,
}, },
}) })
.useTailwindColors()
.useTailwindFontFamily()
.useTailwindFontSize()
.enable() .enable()
}; };