import { Globals, BlendMode, StringHack } from "./index"; /** * The **`background-blend-mode`** CSS property sets how an element's background images should blend with each other and with the element's background color. * * **Initial value**: `normal` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :--: | :-: | * | **35** | **30** | Yes | No | No | * * @see https://developer.mozilla.org/docs/Web/CSS/background-blend-mode */ export type BackgroundBlendModeProperty = Globals | BlendMode | StringHack;