Description
color2k is a color parsing and manipulation library with the objective of keeping the bundle size as small as possible while still satisfying all of your color manipulation needs in an sRGB space.
The bundle size is currently 2.8kB
color2k alternatives and similar libraries
Based on the "Color" category.
Alternatively, view color2k alternatives based on common mentions on social networks and blogs.
-
nozaki-colors
Another node cli colors module. Done simply and with native syntax. It's ment to make sense to engineers, not script kiddies.
CodeRabbit: AI Code Reviews for Developers
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of color2k or a related project?
Popular Comparisons
README
color2k
a color parsing and manipulation lib served in roughly 2kB or less (2.8kB to be more precise)
color2k is a color parsing and manipulation library with the objective of keeping the bundle size as small as possible while still satisfying all of your color manipulation needs in an sRGB space.
The full bundle size is currently 2.8kB but gets as small as 2.1k with tree shaking.
Size comparison
lib | size |
---|---|
chroma-js | 13.7kB |
polished | 11.2kB |
color | 7.6kB |
tinycolor2 | 5kB |
color2k | 2.8kB π |
π Compare tree-shaken bundle outputs on bundlejs.com
Installation
Install with a package manager such as npm
npm i color2k
OR use with skypack.dev in supported environments (e.g. deno, modern browsers).
import { darken, transparentize } from 'https://cdn.skypack.dev/color2k?min';
Usage
import { darken, transparentize } from 'color2k';
// e.g.
darken('blue', 0.1);
transparentize('red', 0.5);
How so small?
There are two secrets that keep this lib especially small:
- Simplicity β only handles basic color manipulation functions
- Less branching in code βΒ only support two color models as outputs, namely
rgba
andhsla
Why only rgba
and hsla
as outputs?
This lib was created with the use case of CSS-in-JS in mind. At the end of the day, all that matters is that the browser can understand the color string you gave it as a background-color
.
Because only those two color models are supported, we don't have to add code to deal with optional alpha channels or converting to non-browser supported color models (e.g. CMYK).
We believe that this lib is sufficient for all of your color manipulation needs. If we're missing a feature, feel free to open an issue π.
Credits
Heavy credits goes to polished.js and sass. Much of the implementation of this lib is copied from polished!
<!-- DOCS-END -->