From 6dca99f2d5a05a854ebcccafe00169af06277b2c Mon Sep 17 00:00:00 2001 From: Arthur DANJOU Date: Tue, 31 Aug 2021 22:43:52 +0200 Subject: [PATCH] Add new colors ton h5 and h6 --- windi.config.ts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/windi.config.ts b/windi.config.ts index 3cb1f58..05984ef 100755 --- a/windi.config.ts +++ b/windi.config.ts @@ -74,6 +74,12 @@ module.exports = defineConfig({ h4: { color: theme('colors.white'), }, + h5: { + color: theme('colors.white'), + }, + h6: { + color: theme('colors.white'), + }, 'figure figcaption': { color: theme('colors.dark.700'), }, @@ -817,6 +823,6 @@ module.exports = defineConfig({ }, }, plugins: [ - require('windicss/plugin/typography') + require('windicss/plugin/typography')() ], })