From f6e4140c7941580a7526ac47777de9884f230e39 Mon Sep 17 00:00:00 2001 From: Pas <74743263+Pasithea0@users.noreply.github.com> Date: Fri, 20 Feb 2026 20:54:05 -0700 Subject: [PATCH] prettier --- themes/custom.ts | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/themes/custom.ts b/themes/custom.ts index 26bd53df..6e7cdb61 100644 --- a/themes/custom.ts +++ b/themes/custom.ts @@ -21,9 +21,13 @@ function generateCustomThemeStructure(theme: any, prefix = ""): any { const result: any = {}; for (const key in theme) { if (typeof theme[key] === "object" && theme[key] !== null) { - result[key] = generateCustomThemeStructure(theme[key], `${prefix}${key}-`); + result[key] = generateCustomThemeStructure( + theme[key], + `${prefix}${key}-`, + ); } else { - result[key] = `rgb(var(${cssVarName(`${prefix}${key}`)}) / )`; + result[key] = + `rgb(var(${cssVarName(`${prefix}${key}`)}) / )`; } } return result;