Coder Social home page Coder Social logo

ferndot / tint.js Goto Github PK

View Code? Open in Web Editor NEW
0.0 1.0 1.0 60 KB

Miscellaneous color tools for the web developer.

License: GNU General Public License v3.0

JavaScript 100.00%
color colors javascript javascript-utility utility rgb rgba hex-color luminance contrast-ratio

tint.js's Introduction

tint.js

Miscellaneous color tools for the web developer

Usage

Prerequisites

Download the project files or install it using NPM, Yarn, etc...

$ npm install tint.js --save
$ yarn add tint.js

Include the plugin files in your source.

Note: the path will need to be changed if you downloaded or moved the files.

<script src="node_modules/tint.js/tint.js"></script>

Methods

tint.convert.hexToRGB

Converts hex to sRGB Returns an array of the form [r,g,b] where r, g, and b are integers between 0 and 255

Example usage
tint.convert.hexToRGB("#fff"); // Returns [ 255, 255, 255 ]

Hex can be:

  • "fff"
  • "ffffff"
  • "#fff"
  • "#ffffff"
  • "0xffffff"

tint.convert.RGBToHex

Converts sRGB to hex where rgb is an array of the form [r,g,b] where r, g, and b are integers between 0 and 255

Returns a string of the form "#ffffff"

Example usage
tint.convert.RGBToHex([255, 255, 255]); // Returns #ffffff

tint.convert.RGBToLinearRGB

Converts sRGB to linear RGB where rgb is an array of the form [r,g,b] where r, g, and b are integers between 0 and 255

Returns an array of the form [r,g,b] where r, g, and b are decimals between 0 and 1

Example usage
tint.convert.RGBToLinearRGB([255, 255, 255]);
// Returns [0.003676507324047436,​​​​​​​​​​ 0.004024717018496307,​​​​ 0.024157632448504756 ]​​​​​

tint.getRelativeLuminance

Returns a decimal value representing the relative luminance of the given color.

Color must be an sRGB array of the form [r,g,b]

Example usage
tint.getRelativeLuminance([255, 255, 255]); // Returns 0.9873055935982454​​​​​

tint.getContrastRatio

Returns the contrast ratio of the two given colors in fractional form. Takes two parameters which must be sRGB arrays of the form [r,g,b]

Example usage
tint.getContrastRatio([255,253,255], [1, 1, 1]); // Returns ​​​​​20.620931688099795

tint.randomColor

Returns a random RGB color in the form [r,g,b].

Example usage
tint.randomColor(); // Returns ​​​​​[242,56,119]

tint.js's People

Contributors

ferndot avatar ronitshar avatar

Watchers

 avatar

Forkers

ronitshar

tint.js's Issues

Move inline documentation to README.MD

There is currently function documentation in the code. It would be nice to move this to the README.MD file.

The README.MD should also include an example of how to include prow.js in a project.

I am available to assist if you have any questions!

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.