From 5020bd1c9b99a502f6ecb1ef9cf4f41c71f38431 Mon Sep 17 00:00:00 2001 From: Raalzz Date: Wed, 18 Oct 2023 12:58:34 +0530 Subject: [PATCH] refactor: fixes type issue --- packages/core/src/styles/tokens/colors.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/packages/core/src/styles/tokens/colors.ts b/packages/core/src/styles/tokens/colors.ts index 6fb143e..1cf623c 100644 --- a/packages/core/src/styles/tokens/colors.ts +++ b/packages/core/src/styles/tokens/colors.ts @@ -1,5 +1,3 @@ -import { Tokens } from "@vanilla-extract/css/dist/declarations/src/types"; - export const lightColors: IThemeColors = { brand: { 100: "hsla(51,10%,91%,1)", @@ -18,7 +16,7 @@ export const lightColors: IThemeColors = { }; export interface IThemeColors { - [key: string]: string | Tokens; + [key: string]: string | Record; brand: { 100: string; 200: string;