Neps.in
Cool Hacks
Back

Neps.in Cool Hacks

Cool Hacks

Hey I am pleased to share the technologies and code libraries used in building our applications.

What is a CSS Color Visualiser?

You have color code in hex value / RGB / HSL want to see how it looks like. You can use CSS color Visualiser. It may be one single color code or CSS color property with value like

color : #ff0023;

or a selector with multiple color definitions like. Simply copy paste, You can see visually how it looks.

      .button {
        background-color: #2196f3;
        color: white;
      }
      

You can use any color format as follows

      rgb(64, 64, 64),
      rgba(64, 64, 64, 1)
      hsl(0, 0%, 25%)
    

Debug: Parsed Color Map

This shows the final parsed list from parseCssTextToColorMap(cssText).

No colors parsed yet.
How to enter colors:
1️⃣ Use selectors (ex: `.btn { color: red; }`)
2️⃣ Use prop: value (ex: `--primary: #ff0;`)
3️⃣ Just color values (ex: `#ff0000`)
4️⃣ Mix any format above