Metadata-Version: 2.1
Name: easycolors
Version: 1.0.1
Summary: A simple tool for convinient rgb-tuple use
Home-page: UNKNOWN
Author: Sjoerd Vermeulen
Author-email: sjoerd@marsenaar.com
License: UNKNOWN
Description: This module contains rgb tuples for some colors. 
        Running e.g. 'colors.red' will return the rgb tuple for red. 
        Running e.g. 'colors.transform(colors.red, (0,0,10))' will return the rgb tuple for red, but with its blue value incremented by 10. 
        The first arg can also be a 3-value tuple, and the second arg can also be an int (which will in- or decrement all values in the given rgb-tuple).
        
        example code:
        >> import colors
        >> colors.red
        (255,0,0)
        >> colors.transform(colors.red, (-10,0,0))
        (215,0,0)
        >> colors.transform((10,10,20), 5)
        (15,15,25)
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
