From 1728267b07345be70a990e9bac12730b8a1cb5a3 Mon Sep 17 00:00:00 2001 From: Christina Yang Date: Thu, 26 Dec 2024 19:07:30 -0800 Subject: [PATCH] add currentColor as design token --- src/colors.config.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/colors.config.ts b/src/colors.config.ts index bd8d6ad317..c8a2280aab 100644 --- a/src/colors.config.ts +++ b/src/colors.config.ts @@ -64,6 +64,7 @@ const colors = { brightBlue: 'rgba(70, 223, 240, 1)', // #46dff0 exportTextareaColor: 'rgba(170, 170, 170, 1)', // #aaa, also used in anchorButton inherit: 'inherit', + currentColor: 'currentColor', }, light: { // Background colors in capacitor app needs to be in hexadecimal codes @@ -130,6 +131,7 @@ const colors = { brightBlue: 'rgba(70, 223, 240, 1)', // #46dff0 exportTextareaColor: 'rgba(85, 85, 85, 1)', inherit: 'inherit', + currentColor: 'currentColor', }, } as const