1# coding=utf-8
2from color_morelight import MoreLight
3from .test_inkex_extensions import ColorBaseCase
4
5class ColorMoreLightTest(ColorBaseCase):
6    effect_class = MoreLight
7    color_tests = [
8        ("none", "none"),
9        ('hsl(0, 0, 0)', 'hsl(0, 0, 12)'),
10        ('hsl(255, 255, 255)', 'hsl(255, 255, 255)'),
11        ((0, 0, 0), "#0c0c0c"),
12        ((255, 255, 255), "#ffffff"),
13        ((192, 192, 192), "#cccccc"),
14        ((128, 128, 128), "#8c8c8c"),
15        ((128, 0, 0), "#980000"),
16        ((255, 0, 0), "#fe1717"),
17        ((128, 128, 0), "#989600"),
18        ((255, 255, 0), "#fefc17"),
19        ((0, 128, 0), "#009800"),
20        ((0, 255, 0), "#17fe17"),
21        ((0, 128, 128), "#009896"),
22        ((0, 255, 255), "#17fefc"),
23        ((0, 0, 128), "#000098"),
24        ((0, 0, 255), "#1717fe"),
25        ((128, 0, 128), "#960098"),
26        ((255, 0, 255), "#fc17fe"),
27    ]
28