Created
May 17, 2018 00:32
-
-
Save yothinix/2a6f01c52ea1331202b782dd3a0b3391 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from dataclasses import dataclass | |
@dataclass | |
class Color: | |
hue: int | |
saturation: float | |
lightness: float = 0.5 # default value |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment