From d763ac06a0233940268282e68ee65e2d32007a84 Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Thu, 28 Mar 2024 17:23:46 +0000 Subject: [PATCH] chore: apply automated fixes --- src/plugin/themeColors/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugin/themeColors/index.ts b/src/plugin/themeColors/index.ts index 0a813e5..83125d7 100644 --- a/src/plugin/themeColors/index.ts +++ b/src/plugin/themeColors/index.ts @@ -30,7 +30,7 @@ export const themeColors: MyColorPlugin = (_, c, cf) => { const proto = c.prototype as OhColorClass; const getRGB = proto.rgba; proto.themeColors = function (variants = _variants) { - const [r,g,b] = getRGB.bind(this)(); + const [r, g, b] = getRGB.bind(this)(); const colors: Record = {}; const components = parseColor(`${r},${g},${b}`);