summaryrefslogtreecommitdiffstats
path: root/share/extensions/tests/test_color_lesssaturation.py
blob: 6396e4b02058e24847f2c81d09cb21175da36aa5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# coding=utf-8
from color_lesssaturation import LessSaturation
from .test_inkex_extensions import ColorBaseCase


class ColorLessSaturationTest(ColorBaseCase):
    effect_class = LessSaturation
    color_tests = [
        ("none", "none"),
        ("hsl(0, 0, 0)", "hsl(0, 0, 0)"),
        ("hsl(255, 255, 255)", "hsl(255, 243, 255)"),
        ((0, 0, 0), "#000000"),
        ((255, 255, 255), "#ffffff"),
        ((192, 192, 192), "#c0c0c0"),
        ((128, 128, 128), "#808080"),
        ((128, 0, 0), "#7c0303"),
        ((255, 0, 0), "#f80505"),
        ((128, 128, 0), "#7c7b03"),
        ((255, 255, 0), "#f8f505"),
        ((0, 128, 0), "#037c03"),
        ((0, 255, 0), "#05f805"),
        ((0, 128, 128), "#037c7b"),
        ((0, 255, 255), "#05f8f5"),
        ((0, 0, 128), "#03037c"),
        ((0, 0, 255), "#0505f8"),
        ((128, 0, 128), "#7b037c"),
        ((255, 0, 255), "#f505f8"),
    ]