diff --git a/tokens/style-dictionary.js b/tokens/style-dictionary.js index e4ad2d593d..c2d52c2733 100644 --- a/tokens/style-dictionary.js +++ b/tokens/style-dictionary.js @@ -10,7 +10,7 @@ const { formattedVariables, fileHeader, sortByReference } = StyleDictionary.form const colorTransform = (token) => { const { value, modify = [], original } = token; - const reservedColorValues = ['inherit', 'initial', 'revert', 'unset']; + const reservedColorValues = ['inherit', 'initial', 'revert', 'unset', 'currentColor']; if (reservedColorValues.includes(original.value)) { return original.value;