Coder Social home page Coder Social logo

p4nduxcv / color-tone-detector Goto Github PK

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

Color Tone Detector: Lightweight npm package to determine if a color (HEX, RGB, HSL) is dark or light. Easy integration, optimal performance. Ideal for UI design, accessibility, conditional styling. Install: npm install color-tone-detector. Contributions welcome. License: MIT.

License: MIT License

JavaScript 100.00%

color-tone-detector's Introduction

Color Tone Detector

This npm package is used to identify whether a given color is light or dark. It provides a function called colorToneDetector(color) that takes a color as input and returns either "light" or "dark" based on the intensity of the color.

Installation

You can install the package using npm: npm install color-tone-detector

Usage

To use the colorToneDetector function, first import it into your code:

const colorToneDetector = require("color-tone-detector");

Then, you can call the function with a color as input:

const color = "#FF0000"; // Example color

const tone = colorToneDetector(color);
console.log(tone); // Output: "dark"

The colorToneDetector function supports both RGB and HEX color formats. It automatically detects the format and converts it to RGB if necessary.

Examples

Here are a few examples of using the colorToneDetector function:

const color1 = "rgb(255, 255, 255)";
const tone1 = colorToneDetector(color1);
console.log(tone1); // Output: "light"

const color2 = "#000000";
const tone2 = colorToneDetector(color2);
console.log(tone2); // Output: "dark"

License

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

Contributing

Contributions are welcome! If you find any issues or have suggestions for improvements, please create a new issue or submit a pull request.

Feedback

If you have any feedback or questions about this package, feel free to reach out to the author or open a new issue.

Happy color tone detecting!

color-tone-detector's People

Contributors

p4nduxcv avatar

Watchers

 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.