cssVariables property

Map<String, Object?> get cssVariables

CSS custom properties generated from token values.

Implementation

Map<String, Object?> get cssVariables => {
      for (final entry in values.entries)
        '--${_tokenCssName(entry.key)}': entry.value,
    };