From d46af4363557c3c7fd5dda2ab60d753df8f6328e Mon Sep 17 00:00:00 2001 From: rtpacks <97966585+rtpacks@users.noreply.github.com> Date: Thu, 8 Aug 2024 19:25:29 +0800 Subject: [PATCH] fix: update the primary color index --- src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index 46d9db0..51ffc57 100644 --- a/src/index.js +++ b/src/index.js @@ -54,7 +54,7 @@ function getPresetColors() { '#dfdfdf', '#f6f6f6', ]; - presetColors.gray.primary = presetColors.gray.light[6]; + presetColors.gray.primary = presetColors.gray.light[5]; return presetColors; }