Git Product home page Git Product logo

color-js's Introduction

Color JS

Build status Coverage Vulnerabilities

A color manipulation and conversion library.

It's supposed to ease up creation of JS-based frontend themes when using CSS in JavaScript.

It's written for React's Styled Components and Emotion CSS and designed to work well with it, but does work well anywhere where you need color manipulation and automatic generation of color schemes.

What can it do

  • Parsing of different color formats
    • 866 different color names (List)
    • Hexadecimal colors (e.g. #f0a or #ef0bac)
    • CSS color functions (e.g. rgb(255, 127, 0) or hsla(180, 1, .5))
  • Convert colors between different color spaces. Supported/planned spaces:
    • RGB/RGBA
    • HSL/HSLA
    • HSV/HSVA
    • CMYK Approximation
    • CIE-XYZ
    • CIE-LAB
  • Retrieving information from colors
    • Get RGB information (amount of red, green and blue)
    • Get HSL information (hue/color tone, saturation, lightness)
    • Get alpha information (transparency)
  • Color manipulation
    • darken, lighten, saturate and desaturate colors
    • Change color properties like the amount of red or green
    • inverse and mix colors
    • Change transparency of colors (fade in, fade out)
    • Generate complementary or similar colors
  • Easily generate color schemes and palettes from base colors
    • Complementary schemes (playing with hues)
    • Shades, tints and tones of colors

Installation

npm i @talesoft/color

TypeScript supported by default.

Usage

Directly access known colors and manipulate them:

import Color from '@talesoft/color';

const darkRed = Color.red.darken(.2);
console.log(`Dark red is: ${darkRed}`); // "Dark red is: #900"

Works well with e.g. Styled-Components/Emotion CSS for React:

const StyledDiv = styled.div`
    background-color: ${Color.mediumCarmine.darken(.1).fadeOut(.2)};
    color: ${Color.palatinatePurple};
`;

Use the dye template tag or Color.parse to quickly parse and modify own colors.

import Color, { dye } from '@talesoft/color';

const darkRed = dye`#f00`.darken(.2);
console.log(`Dark red is: ${darkRed}`);

const darkGreen = Color.parse('rgb(0, 255, 0)').darken(.2);
console.log(`Dark green is: ${darkGreen}`);

Color.parse and dye support most commonly known ways to write colors

import Color, { dye } from '@talesoft/color';

const red = Color.parse('#f00');

const green = dye`#00ff00`;

const green = dye`green`;

const yellow = dye`rgb(255, 255, 0)`;

const redToo = dye`hsl(0, 1, .5)`;

// Percent values are allowed anywhere

const redAgain = dye`rgb(100%, 0%, 0%)`;

Pick from a growing list of color manipulation functions

const color = Color.pastelYellow;

// Get RGB Values
console.log(color.red, color.green, color.blue); // 253, 253, 150

// Get HSL Values
console.log(color.hue, color.saturation, color.lightness); // 60, 0.790..., 0.962...

// Get the transparency/opacity
console.log(color.opacity); // 1

// Modify Red value
color = color.withRed(255);

// Modify Green Value
color = color.withGreen(255);

// Modify Blue value
color = color.withBlue(255);

// Modify Hue value (color tone)
color = color.withHue(180);

// Modify saturation
color = color.withSaturation(.4);

// Modify lightness
color = color.withLightness(.2);

// Modify opacity/transparency
color = color.withOpacity(.5);

// Get complementary color
color = color.complement();

// Mix colors
color = color.mix(Color.red); // Using subtractive model by default
color = color.mix(Color.red, MixMode.RGB_ADDITIVE);

// Lighten/darken a color
color = color.lighten(.1);
color = color.darken(.2);

// Tint or tone colors (increase or decrease saturation)
color = color.tint(.1);
color = color.tone(.2);

// Invert a color
color = color.invert();

// Get the grayscale version of color
color = color.grayscale();

// Increase/decrease opacity of a color
color = color.fadeIn(.2);
color = color.fadeOut(.1);

// Cast to strings/output
console.log(color.toFunctionExpression()); // e.g. "rgb(255,43,45)"
console.log(color.toHexExpression()); // e.g. "#34ca3f"

// Perfectly fitting string representation for CSS
console.log(color.toString());
console.log(`Color: ${color}`);
console.log('Color: ' + color);

Easily create automatically generated color schemes from your colors:

import { dye } from '@talesoft/color';

const { primary, secondary } = dye`#f00`.complements;
// primary will be red, secondary will be green (the complementary color)

const shadesOfGrey = Color.gray.shades;
shadesOfGrey.lightest;
shadesOfGrey.lighter;
shadesOfGrey.light;
shadesOfGrey.normal
shadesOfGrey.dark;
shadesOfGrey.darker;
shadesOfGrey.darkest;

// Complex hue rotation schemes are supported
const {
    primary,
    secondary,
    tertiary,
    quartenary
} = dye`#ce5a62`.tetradicComplements;

// Easily run your own scheme
import { darken } from '@talesoft/color';

const { firstShade, secondShade, thirdShade } = dye`#ce5a62`.createScheme(
    ['firstShade','secondShade','thirdShade'],
    darken,
    { start: .2, step: .2},
);

Contributing

Before contributing, check out the Contribution Guidelines

Requires: npm

// Pull project
git clone https://github.com/Talesoft/color-js

// Enter project directory
cd color-js

// Install development dependencies
npm install

// ... make your changes ...

// Run tests
npm run test

// Lint
npm run lint

// Fix linting problems
npm run lint:fix

// Build
npm run build

// ... create branch, commit, push, merge request etc. ...

color-js's People

Contributors

torbenkoehn avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.