UNPKG

solid-color

Version:

<p> <img width="100%" src="https://assets.solidjs.com/banner?type=solid-color&background=tiles&project=%20" alt="solid-color"> </p>

72 lines (71 loc) 2.18 kB
import { each } from 'lodash-es'; import tinycolor from 'tinycolor2'; export const simpleCheckForValidColor = (data) => { const keysToCheck = ['r', 'g', 'b', 'a', 'h', 's', 'l', 'v']; let checked = 0; let passed = 0; each(keysToCheck, (letter) => { if (data[letter]) { checked += 1; if (!isNaN(data[letter])) { passed += 1; } if (letter === 's' || letter === 'l') { const percentPatt = /^\d+%$/; if (percentPatt.test(data[letter])) { passed += 1; } } } }); return checked === passed ? data : false; }; export const toState = (data, oldHue) => { const color = data.hex ? tinycolor(data.hex) : tinycolor(data); const hsl = color.toHsl(); const hsv = color.toHsv(); const rgb = color.toRgb(); const hex = color.toHex(); if (hsl.s === 0) { hsl.h = oldHue || 0; hsv.h = oldHue || 0; } const transparent = hex === '000000' && rgb.a === 0; return { hsl, hex: transparent ? 'transparent' : `#${hex}`, rgb, hsv, oldHue: data.h || oldHue || hsl.h, source: data.source, }; }; export const isValidHex = (hex) => { if (hex === 'transparent') { return true; } // disable hex4 and hex8 const lh = String(hex).charAt(0) === '#' ? 1 : 0; return hex.length !== 4 + lh && hex.length < 7 + lh && tinycolor(hex).isValid(); }; export const getContrastingColor = (data) => { if (!data) { return '#fff'; } const col = toState(data); if (col.hex === 'transparent') { return 'rgba(0,0,0,0.4)'; } const yiq = (col.rgb.r * 299 + col.rgb.g * 587 + col.rgb.b * 114) / 1000; return yiq >= 128 ? '#000' : '#fff'; }; export const red = { hsl: { a: 1, h: 0, l: 0.5, s: 1 }, hex: '#ff0000', rgb: { r: 255, g: 0, b: 0, a: 1 }, hsv: { h: 0, s: 1, v: 1, a: 1 }, }; export const isvalidColorString = (str, type) => { const stringWithoutDegree = str.replace('°', ''); return tinycolor(`${type} (${stringWithoutDegree})`).isValid(); };