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;