/token-android-parser

Tool to parse exported JSON design tokens to Android color resources

Primary LanguageJavaScript

Design Token JSON to Android Color Parser

React Chakra GitHub

Tool to parse exported JSON design tokens to Android color resources.

Use it here.

Capable of parsing JSON string with the following format:

{
    "Colors": {
        "Encore Gray": {
            "Encore Gray-300": {
            "$type": "color",
            "$value": "#a6b6ca"
            }
        }
    }
}

To the following

<color name="encore_gray_300">#A6B6CA</color>