Metadata-Version: 2.1
Name: SecretColors
Version: 0.0.1
Summary: A small package for fantastic color palette
Home-page: https://github.com/secretBiology/SecretColors
Author: Rohit Suratekar
Author-email: rohitsuratekar@gmail.com
License: MIT License
Description: # Secret Colors
        
        Library generated for better color palettes. It uses IBM color palette as 
        well as Google material design color palette. 
        
        Simple use will be 
            
            from SecretColors.palette import IBMPalette
            palette = IBMPalette()
            palette.red() # Red color from IBM palette
            # Most of the color have 10 grades 1,10,20...90
            palette.red(grade=1) # Lighter Red Color
            palette.red(grade=90) # Darker Red Color
            palette.red(no_of_colors=2) # Two grades of Reds
            palette.random # Random color from the palette 
            palette.uniform_colors(10) # 10 colors from uniform gradient
            palette.uniform_colors_between(10, '#648fff', '#00aa5e') # 10 colors from
             uniform gradient between #648fff and #00aa5e
        
        Plus it has few standard conversion methods
        
            from SecretColors.palette import *
            
            rgb_to_hex((0, 170, 94)) # Converts RGB to Hex
            rgb_to_hsv((0, 170, 94)) # Converts RGB to HSV
            hex_to_rgb('#00aa5e') # Converts Hex to RGB
            color_in_between('#00aa5e', '#95d13c') # Color beteen two in RGB space
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
