Metadata-Version: 2.1
Name: blec
Version: 0.0.1
Summary: Alpha blending calculator
Home-page: https://github.com/igrmk/blec
Author: igrmk
Author-email: igrmkx@gmail.com
License: UNKNOWN
Description: blec: alpha blending calculator
        ===============================
        This is a simple tool to calculate a resulting color of the alpha blending process.
        A gamma correction is enabled and the default gamma value is 2.2.
        
        Usage
        -----
        Just enumerate colors from the bottom to the top
        
            $ ./blec.py 555555dd ffffffcc 00000011
            #e4e4e4f8
        
        You may use ARGB instead of RGBA
        
            $ ./blec.py --argb dd555555 ccffffff 11000000
            #f8e4e4e4
        
        You may change gamma value (set it to 1 to disable)
        
            $ ./blec.py --gamma 3 555555dd ffffffcc 00000011
            #eaeaeaf8
        
        Installation
        ------------
        Just clone this repository:
        
            git clone https://github.com/igrmk/blec.git
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.0
Description-Content-Type: text/markdown
