npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@erboladaiorg/tenetur-molestiae-quasi

v4.11.81

Published

@erboladaiorg/tenetur-molestiae-quasi is a JavaScript library designed to produce visually uniform random colors with minimal bias.

Downloads

1,709

Maintainers

diepminhb311diepminhb311

Keywords

writablechromiumdireventsbcryptfast-clonenested cssnativetrimLeftshebangvalidurles2017positivetypeerrorjapaneseexpressionmetadatapackage managerECMAScript 7hardlinksES3flattengetterarraytypedarraysjsdomfullwidthfile systemchineseemrES2016equalitybinaryECMAScript 5datastructurecallexpresspersistentstylexhrslicecompareECMAScript 2019has-ownstringifyautha11yregularlogcss lessECMAScript 2015dotenvastloadingbinariesvisualAsyncIteratorinterruptselbvarprocessprefixlinuxeslintpluginsymbolsrulesunicodedom-testing-librarysqsairbnbtacityupfunctionalbootstrap lessresolvecss variableArray.prototype.findLastfunction.lengthclassesmoduleFunction.prototype.nameES2017packagescharacter0cloudfrontfull-widthlasthelpercolorsgetoptstyleguidei18ninternalES2018keysuperagenthotES2023ES6less cssoperating-systemexitasyncfastreverse3dArrayBuffer#slicedescriptorCSSStyleDeclarationpostcssexecfileES7mapcollection.es6guidparsestableframerglaciershamminimalpinoobjectajaxpromisescheme-validationmacosMicrosoftreadjavascriptfindInt32Arraycallboundmakearraysnegativetelephonetyped arrayObject.fromEntriesArray.prototype.flatMapreal-timefindLastbrowserslistpostcss-pluginURLSearchParamsjson-schema-validationvestchildbrowserlist_.extendmobileform-validationes2016httpdayjsgetintrinsicfast-deep-copyfnmatchtransportapimonorepobyteOffsetspinnerremoveletparsingclass-validator__proto__writeregexpathwindowsidentifiersfastifydateWebSocketsECMAScript 2023namettydropvaluestoSortedconcatMapbuffersyntaxprivate datacertificatesprototypejestwhatwg-0global this valueArray.prototype.findLastIndexfast-deep-cloneutilityoptionsequencefsutilslruformsroute53es7zodfilterpopmotionbyteYAMLquerystringArray.prototype.containstoArrayendpoint256elmdatasnsArraydeepclonepreserve-symlinkstouchSystem.globalincludessignalmovees2015owninternal slotreact animationdragkoreancopypropertiesObject.valueshasOwnjson-schemaMapreadablestreamsetArray.prototype.filteres2018mkdirpwindowio-tsvariables in cssconsoleObject.keysconsumetddstructuredClonedescriptionmanagerglobalThisnpmignorefullonceWebSocketJSON-SchemagroupObject.entriesefficientpredictableclonees6gesturesObject.isdomReactiveExtensionscryptwafECMAScriptuploadless mixinslesscssdeep-copybabel-coreopensslbundlingcomputed-typesrecursiveiteratoraccessorworkflowpreprocessorassertsagentlistenersramdaamazonSymbolRxtoStringTagfpwarningoptimizeransiBigInt64Arraypatchshimdirectorycloudsearchcensorargvglobal objectsignalssuperstructshell[[Prototype]]fileexecute6to5

Readme

@erboladaiorg/tenetur-molestiae-quasi

@erboladaiorg/tenetur-molestiae-quasi is a JavaScript library designed to produce visually uniform random colors with minimal bias.

The goal of this package is to generate colors that appear evenly distributed across the color space, avoiding biases towards darker or lighter shades. Naive approaches such as choosing uniformly 0-255 values for RGB colors can lead to a dark skew due to the geometry of RGB's color space.

@erboladaiorg/tenetur-molestiae-quasi utilises the CEILAB color space. This space is chosen for its perceptual uniformity, ensuring that colors are generated in a way that provides consistent visual differentiation and keeps color skew as low as possible.

Colors are generated randomly in Lab format, and the package also offers functionality to convert these colors to more common color spaces such as RGB, enabling seamless integration into various applications and environments.

Conversion algorithms sourced from http://www.brucelindbloom.com/, and were implemented from scratch.

Installation

You can install @erboladaiorg/tenetur-molestiae-quasi via npm:

npm install @erboladaiorg/tenetur-molestiae-quasi

Usage

Generating Random Colors

const {
  randRGB,
  randRGB255,
  randLab,
  randXYZ,
} = require("@erboladaiorg/tenetur-molestiae-quasi");

// Generate a random RGB color with an array of values scaled to match the nominal 0-1 range
const randomRGB = randRGB();
console.log(randomRGB);

// Generate a random RGB color with an array of values scaled by a factor of 255
const randomRGB255 = randRGB255();
console.log(randomRGB255);

// Generate a random LAB color as an array of values, guaranteed to be in the nominal ranges
const randomLab = randLab();
console.log(randomLab);

// Generate a random XYZ color with an array of values scaled to match the nominal 0-1 range
const randomXYZ = randXYZ();
console.log(randomXYZ);

Default Export

const randomColor = require("@erboladaiorg/tenetur-molestiae-quasi");

// Default export is the same as randRGB255
const randomColor = randomColor();
console.log(randomColor);

Applying to CSS

The returned arrays can be easily used with the inbuilt CSS functions to apply the color to the webpage, along with any other use case you may have.

const Lab = randLab();
const XYZ = randXYZ(...Lab);
const RGB = randRGB255(...XYZ);

document.querySelector(
  ".Lab"
).style.backgroundColor = `lab(${Lab[0]} ${Lab[1]} ${Lab[2]})`;

document.querySelector(
  ".XYZ"
).style.backgroundColor = `color(xyz ${XYZ[0]} ${XYZ[1]} ${XYZ[2]})`;

document.querySelector(
  ".RGB"
).style.backgroundColor = `rgb(${RGB[0]} ${RGB[1]} ${RGB[2]})`;

Note:

Due to differences in color spaces, the values in XYZ and RGB may sometimes be out of their nominal range. However, they can still be displayed without issues in CSS. For example, you may get an XYZ value [-0.23, 0.47, 0.12], since you need to leave the nominal color space to reach the color given by Lab.

Testing

The package comes with a test suite. Due to the random nature of the output, and sometimes leaving the nominal range (see note above), the test suites are not terribly descriptive. Instead, however, they use a volumetric approach, trying to make sure that no outlying randomness can break it.

You can run the tests yourself in the command line by installing vitest with npm i, and running all tests with npm test

npm i
npm test

Contributing

Contributions are welcome! Feel free to open an issue or submit a pull request.

License

This project is licensed under the MIT License - see the LICENSE file for details.