Skip to content

Commit

Permalink
refactor: fixes type issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Raalzz committed Oct 18, 2023
1 parent 6a25728 commit 5020bd1
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions packages/core/src/styles/tokens/colors.ts
Original file line number Diff line number Diff line change
@@ -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)",
Expand All @@ -18,7 +16,7 @@ export const lightColors: IThemeColors = {
};

export interface IThemeColors {
[key: string]: string | Tokens;
[key: string]: string | Record<string, string>;
brand: {
100: string;
200: string;
Expand Down

0 comments on commit 5020bd1

Please sign in to comment.