UNPKG

@atlaskit/editor-common

Version:

A package that contains common classes and components for editor and renderer

7 lines 376 B
import { Y200, Y300 } from '@atlaskit/theme/colors'; const boxShadowColorByStatus = { draft: `var(--ds-background-accent-yellow-subtle, ${Y300})`, focus: `var(--ds-background-accent-yellow-subtle, ${Y300})`, blur: `var(--ds-background-accent-yellow-subtler, ${Y200})` }; export const commentStatusStyleMap = status => `3px 3px 0px 0px ${boxShadowColorByStatus[status]}`;