Specifies the subset of color tokens that are “on-“ tokens, meaning they either start with “on-“ or are meant to be used for content that appears “on” top of another one.
declare global {
type LkOnColor =
| "onprimary"
| "onprimarycontainer"
| "onsecondary"
| "onsecondarycontainer"
| "ontertiary"
| "ontertiarycontainer"
| "onerror"
| "onerrorcontainer"
| "onsuccess"
| "onsuccesscontainer"
| "onwarning"
| "onwarningcontainer"
| "oninfo"
| "oninfocontainer"
| "onbackground"
| "onsurface"
| "onsurfacevariant"
| "inverseonsurface";
}
Components that use this type.