An open API service indexing awesome lists of open source software.

https://github.com/anushbmx/css-colors

CSS Color names, human readable name you can use instead of a fancy code.
https://github.com/anushbmx/css-colors

Last synced: 2 months ago
JSON representation

CSS Color names, human readable name you can use instead of a fancy code.

Awesome Lists containing this project

README

        

CSS Color Names
================

This is a showcase wrapping the different Color Names properties you can set via CSS for color.
All modern browsers support the following 140+ color names. ( and more )

http://css-colors.techstream.org/

Note : This is production version, it includes code & styles for analytics and Advert. Work on master branch.

Made with help from @nikhiljohn10

Add New Color
--------------

To add a missing color, insert an entry into colors array in script.js.

The colors are sorted in into 3 types based on hue value, hex value and alphabetic order, color is stored in three array
make sure to add entry to the three array.

example :



CSSColors.colors = {
'hue' : [],
'hex' : [],
'alpha' : []
}

You can make use of the spreadsheets css-color.xls to find place for new color.

Credits
-------