Packages
Advanced configurable navigation component for Phoenix LiveView with native DaisyUI integration, Tailwind CSS support, permissions filtering, dropdowns, mega menus, and modern responsive design. Optimized for Phoenix 1.8+ and LiveView 1.1+.
Current section
Files
Jump to
Current section
Files
assets/node_modules/culori/src/oklab/convertRgbToOklab.js
import convertRgbToLrgb from '../lrgb/convertRgbToLrgb.js';
import convertLrgbToOklab from './convertLrgbToOklab.js';
const convertRgbToOklab = rgb => {
let res = convertLrgbToOklab(convertRgbToLrgb(rgb));
if (rgb.r === rgb.b && rgb.b === rgb.g) {
res.a = res.b = 0;
}
return res;
};
export default convertRgbToOklab;