We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c7070b commit f586bb7Copy full SHA for f586bb7
packages/theme-generator/src/common/themes/core.js
@@ -232,8 +232,9 @@ export function generateBrandPalette(hex, remainInput = false) {
232
});
233
234
const isTencentBlue = lowCaseHex === TENCENT_BLUE.toLowerCase();
235
+ const validPrimary = typeof primary === 'number' && !isNaN(primary) ? primary : 6;
236
- const lightBrandIdx = isTencentBlue ? 7 : primary + 1;
237
+ const lightBrandIdx = isTencentBlue ? 7 : validPrimary + 1;
238
const lightPalette = [...colors];
239
240
const darkPalette = isTencentBlue ? TENCENT_BLUE_DARK_PALETTE : [...colors].reverse();
0 commit comments