UNPKG

@jupyter/web-components

Version:

A component library for building extensions in Jupyter frontends.

8 lines (7 loc) 140 B
import { isDark } from './is-dark.js'; /** * @internal */ export function directionByIsDark(color) { return isDark(color) ? -1 : 1; }