summaryrefslogtreecommitdiffstats
path: root/share/extensions/tests/test_color_moresaturation.py
blob: 5a3c1967ae900471140416b99cec120188f80b3b (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_moresaturation import MoreSaturation
from .test_inkex_extensions import ColorBaseCase


class ColorMoreSaturationTest(ColorBaseCase):
    effect_class = MoreSaturation
    color_tests = [
        ("none", "none"),
        ("hsl(0, 0, 0)", "hsl(0, 12, 0)"),
        ("hsl(255, 255, 255)", "hsl(255, 255, 255)"),
        ((0, 0, 0), "#000000"),
        ((255, 255, 255), "#ffffff"),
        ((192, 192, 192), "#c2bdbd"),
        ((128, 128, 128), "#857a7a"),
        ((128, 0, 0), "#800000"),
        ((255, 0, 0), "#fe0000"),
        ((128, 128, 0), "#807e00"),
        ((255, 255, 0), "#fefb00"),
        ((0, 128, 0), "#008000"),
        ((0, 255, 0), "#00fe00"),
        ((0, 128, 128), "#00807e"),
        ((0, 255, 255), "#00fefb"),
        ((0, 0, 128), "#000080"),
        ((0, 0, 255), "#0000fe"),
        ((128, 0, 128), "#7e0080"),
        ((255, 0, 255), "#fb00fe"),
    ]