From d476fa31cd7061613b43d157c6b724edda9efd74 Mon Sep 17 00:00:00 2001 From: Pete Watters <2938440+pete-watters@users.noreply.github.com> Date: Wed, 29 Nov 2023 16:26:29 +0000 Subject: [PATCH] chore: consume design tokens from extension --- theme/breakpoints.ts | 1 - theme/colors.ts | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/theme/breakpoints.ts b/theme/breakpoints.ts index 9b562db7dca..1d1acf2bfbf 100644 --- a/theme/breakpoints.ts +++ b/theme/breakpoints.ts @@ -1,6 +1,5 @@ import { breakpoints as leatherBreakpoints } from '@leather-wallet/tokens'; -// TODO consider removing this from the tokens package / doing this better // ts-unused-exports:disable-next-line export const breakpoints = { ...leatherBreakpoints, diff --git a/theme/colors.ts b/theme/colors.ts index 6f51e8e6d32..0d25f40195f 100644 --- a/theme/colors.ts +++ b/theme/colors.ts @@ -3,5 +3,6 @@ import { defineTokens } from '@pandacss/dev'; // ts-unused-exports:disable-next-line export const colors = defineTokens.colors({ + current: { value: 'currentColor' }, ...leatherColors, });