Tldraw/packages/editor/src/lib/editor/shapeutils/shared/isBlackColor.ts

5 wiersze
169 B
TypeScript

// Is the color black? Used in a few places to swap for white instead.
export function isBlackColor(color: string) {
return color === 'black' || color === ' #1d1d1d'
}