From b77d2d7c9c8af508d32b0217949df92d96cd759e Mon Sep 17 00:00:00 2001 From: Somrat <58769763+tfsomrat@users.noreply.github.com> Date: Thu, 20 Feb 2025 11:42:18 +0600 Subject: [PATCH] update tw-theme plugin --- src/tailwind-plugin/tw-theme.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/tailwind-plugin/tw-theme.js b/src/tailwind-plugin/tw-theme.js index 4793edb..6466f7b 100644 --- a/src/tailwind-plugin/tw-theme.js +++ b/src/tailwind-plugin/tw-theme.js @@ -105,6 +105,8 @@ module.exports = plugin.withOptions(() => { bg: (value) => ({ backgroundColor: value }), text: (value) => ({ color: value }), border: (value) => ({ borderColor: value }), + fill: (value) => ({ fill: value }), + stroke: (value) => ({ stroke: value }), }, { values: colorsMap, type: "color" }, );