@atlaskit/editor-common
Version:
A package that contains common classes and components for editor and renderer
9 lines • 451 B
JavaScript
import { Y200, Y300 } from '@atlaskit/theme/colors';
var boxShadowColorByStatus = {
draft: "var(--ds-background-accent-yellow-subtle, ".concat(Y300, ")"),
focus: "var(--ds-background-accent-yellow-subtle, ".concat(Y300, ")"),
blur: "var(--ds-background-accent-yellow-subtler, ".concat(Y200, ")")
};
export var commentStatusStyleMap = function commentStatusStyleMap(status) {
return "3px 3px 0px 0px ".concat(boxShadowColorByStatus[status]);
};