Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/ext/pyhtmlcolor

Parsing HTML and CSS color values
https://github.com/ext/pyhtmlcolor

Last synced: 28 days ago
JSON representation

Parsing HTML and CSS color values

Awesome Lists containing this project

README

        

The htmlcolor module parses HTML/CSS colors. It accepts regular hexadecimal
notation, CSS shorthand notation and named colors. In addition it also supports
four-component colors such as RGBA.

>>> import htmlcolor
>>> parser = htmlcolor.Parser()
>>> parser.parse('#ff7700')
(255, 119, 0)
>>> parser.parse('#f70')
(255, 119, 0)
>>> parser.parse('hotpink')
(255, 105, 180)
>>> parser.parse('ff7700')
(255, 119, 0)