@atlaskit/eslint-plugin-design-system
Version:
The essential plugin for use with the Atlassian Design System.
4 lines • 453 B
JavaScript
var legacyColorMixins = new Set(['background', 'backgroundActive', 'backgroundHover', 'backgroundOnLayer', 'text', 'textHover', 'textActive', 'subtleText', 'placeholderText', 'heading', 'subtleHeading', 'codeBlock', 'link', 'linkHover', 'linkActive', 'linkOutline', 'primary', 'blue', 'teal', 'purple', 'red', 'yellow', 'green', 'skeleton']);
export var isLegacyNamedColor = function isLegacyNamedColor(value) {
return legacyColorMixins.has(value);
};