From 85b761121484d6dff1da7e898cec3bf5cd69eff0 Mon Sep 17 00:00:00 2001 From: Abdullah Atta Date: Tue, 5 Sep 2023 11:52:13 +0500 Subject: [PATCH] theme: increase opacity of shade color --- packages/theme/src/theme-engine/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/theme/src/theme-engine/utils.ts b/packages/theme/src/theme-engine/utils.ts index 0d25d2ef8..d08c0e9dd 100644 --- a/packages/theme/src/theme-engine/utils.ts +++ b/packages/theme/src/theme-engine/utils.ts @@ -172,5 +172,5 @@ export function colorsToCSSVariables(colors: Colors, variantKey?: string) { } function deriveShadeColor(color: tc.Instance) { - return color.setAlpha(0.04).toHex8String(); + return color.setAlpha(0.1).toHex8String(); }