Metadata-Version: 2.1
Name: blec
Version: 1.0.4
Summary: Alpha blending calculator
Home-page: https://github.com/igrmk/blec
Author: igrmk
Author-email: igrmkx@gmail.com
License: UNKNOWN
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

blec: alpha blending calculator
===============================
This is a tool to calculate a resulting color of the alpha blending process.
A gamma correction is enabled and the default transfer function is the one defined in sRGB.

Usage
-----
Just enumerate colors from the bottom to the top. Let's blend 75% black on pure white

    blec white black:0.75
    blec fff 000000bf
    blec ffffffff [0,0,0,191]
    blec ffffff:1 [0,0,0]:0.75

Every call above does the same thing

Installation
------------

    pip3 install blec



