What is the Design System?
A Design System is somewhat of an amorphous term but can generally be thought of as a collection of resources for interactive media that promotes brand alignment. While that definition is intentionally broad, in UI development, Design Systems generally manifest as component libraries surrounded by usage guidance and design principles.
FAST uses "Design System" in a narrower sense than the above; the Design System is a dictionary of data that informs the visual (and sometimes functional) representation of UI elements. The Design System captures, stores, and reflects any information that should inform the rendering of a UI element. This data is often referred to as Design Tokens. Common examples of data in a Design System are:
- UI Colors
- Fonts and type ramps
- Motion data such as timings and easing curves
- UI Density
- Spacing values
How the Design System is used
There are two ways that Design System values (Design Tokens) are used:
- In CSS
- In JavaScript
Design System in CSS
Many Design Tokens are used as CSS property values in component stylesheets. Assume for a moment that a Design Token font-size-large
exists in a Design System, you may see something like the following:
Design System in JavaScript
The Design System can also be required by JavaScript. Assume for a moment that a Design Token fadeInDuration
exists in a Design System, you may see something like the following:
The DesignSystemProvider
The Design System itself manifests through a DesignSystemProvider: it is the vessel through which the Design System is expressed. The DesignSystemProvider is an HTML element that facilitates usage, configuration, and propagation of the Design System through a UI view. The DesignSystemProvider is responsible for expressing the Design System both as a readable JavaScript property and as CSS custom properties.
Design System flow
The Design System is mutable and inherited. Think of the Design System as a flow of data through the DOM toward leaf nodes, where every DesignSystemProvider element inherits Design System data from its closest ancestor DesignSystemProvider and provides opportunity to change that data for all descendent elements. Let's visualize this, and assume there is a font-size-large
Design Token in the Design System:
Example: The Design System flows data down the DOM hierarchy
As shown above, the font-size-large
Design System property is set on each DesignSystemProvider instance. The DesignSystemProvider reflects that value to a CSS custom property (more on that later), which the <my-text>
element uses in it's stylesheet.
But we can also access that hierarchical information from JavaScript, which opens up many advanced scenarios that will be explored in the FAST Frame Design System.