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}`);