UNPKG

@brizy/ui

Version:
8 lines (7 loc) 300 B
import { getHexByColorType } from "../utils/colors"; import { BRZ_PREFIX } from "../constants"; export const getArrowHoverColor = (value, theme) => { return value ? { [`--${BRZ_PREFIX}-rich-text-arrow-hover`]: getHexByColorType(theme === "dark" ? "white" : "gray-mid") } : {}; };