UX Planet

UX Planet is a one-stop resource for everything related to user experience.

Follow publication

Member-only story

UI/UX Design: Tokenized Design

Nick Lawrence
UX Planet
Published in
3 min readMay 28, 2021

This is a potential game-changer, and you need to know about it

Overview

In all my years of doing this, I have never once heard of this new style of continuous design/development hand-off that is now being referred to as “tokenized design.”

After looking into it further, I believe that it has the potential to be a real game-changer, and today I’m going to share with you what you need to know about it.

What are design tokens?

Based on my research and this awesome article by Robin Rendle here, design tokens are essentially:

A programmatic object that defines the specific parameters of your design system in a global, tech-agnostic fashion.

Mouthful, right? What does it mean?

Basically imagine that ALL of the styles that you define in your design system are encapsulated in one, single source of truth as a markup file, that can generate styles for a wide range of platforms.

{     "standardSize": {          "width": "100px",          "height": "40px"     },     "baseColors": {          "primary": "#6BBAFF",          "secondary": "#ffb300",          "dark": "#282828"     },     "etc": {         "etc": "etc"     }}

Still confused? Don’t worry, we’ll cover more of this as we move along.

What do design tokens do?

Crucially, design tokens take the work of having to translate CSS/SASS/etc. to multiple design markup formats, and automate the process using technology-agnostic methods.

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web

Already have an account? Sign in

Published in UX Planet

UX Planet is a one-stop resource for everything related to user experience.

Written by Nick Lawrence

UI/UX designer with over thirteen years of experience in the design industry. nicklawrencedesign.com | designwalkthroughs.com

Responses (3)

Write a response

The music is entirely distracting and inappropriate for the mumbling narration. This is a terrible video.

--

So, basically an api call that delivers style info from a single source?

--