diff --git a/pycardium/modules/py/htmlcolor.py b/pycardium/modules/py/htmlcolor.py index 18fb35ab706bdf43107a5a8b7301d73addc94eb1..64c959f8b3ef585e40a31ae0012e84b6647e5f12 100644 --- a/pycardium/modules/py/htmlcolor.py +++ b/pycardium/modules/py/htmlcolor.py @@ -1,143 +1,143 @@ import color -ALICEBLUE = Color.from_hex(0xf0f8ff) -ANTIQUEWHITE = Color.from_hex(0xfaebd7) -AQUA = Color.from_hex(0x00ffff) -AQUAMARINE = Color.from_hex(0x7fffd4) -AZURE = Color.from_hex(0xf0ffff) -BEIGE = Color.from_hex(0xf5f5dc) -BISQUE = Color.from_hex(0xffe4c4) -BLACK = Color.from_hex(0x000000) -BLANCHEDALMOND = Color.from_hex(0xffebcd) -BLUE = Color.from_hex(0x0000ff) -BLUEVIOLET = Color.from_hex(0x8a2be2) -BROWN = Color.from_hex(0xa52a2a) -BURLYWOOD = Color.from_hex(0xdeb887) -CADETBLUE = Color.from_hex(0x5f9ea0) -CHARTREUSE = Color.from_hex(0x7fff00) -CHOCOLATE = Color.from_hex(0xd2691e) -CORAL = Color.from_hex(0xff7f50) -CORNFLOWERBLUE = Color.from_hex(0x6495ed) -CORNSILK = Color.from_hex(0xfff8dc) -CRIMSON = Color.from_hex(0xdc143c) -CYAN = Color.from_hex(0x00ffff) -DARKBLUE = Color.from_hex(0x00008b) -DARKCYAN = Color.from_hex(0x008b8b) -DARKGOLDENROD = Color.from_hex(0xb8860b) -DARKGRAY = Color.from_hex(0xa9a9a9) -DARKGREEN = Color.from_hex(0x006400) -DARKKHAKI = Color.from_hex(0xbdb76b) -DARKMAGENTA = Color.from_hex(0x8b008b) -DARKOLIVEGREEN = Color.from_hex(0x556b2f) -DARKORANGE = Color.from_hex(0xff8c00) -DARKORCHID = Color.from_hex(0x9932cc) -DARKRED = Color.from_hex(0x8b0000) -DARKSALMON = Color.from_hex(0xe9967a) -DARKSEAGREEN = Color.from_hex(0x8fbc8f) -DARKSLATEBLUE = Color.from_hex(0x483d8b) -DARKSLATEGRAY = Color.from_hex(0x2f4f4f) -DARKTURQUOISE = Color.from_hex(0x00ced1) -DARKVIOLET = Color.from_hex(0x9400d3) -DEEPPINK = Color.from_hex(0xff1493) -DEEPSKYBLUE = Color.from_hex(0x00bfff) -DIMGRAY = Color.from_hex(0x696969) -DODGERBLUE = Color.from_hex(0x1e90ff) -FIREBRICK = Color.from_hex(0xb22222) -FLORALWHITE = Color.from_hex(0xfffaf0) -FORESTGREEN = Color.from_hex(0x228b22) -FUCHSIA = Color.from_hex(0xff00ff) -GAINSBORO = Color.from_hex(0xdcdcdc) -GHOSTWHITE = Color.from_hex(0xf8f8ff) -GOLD = Color.from_hex(0xffd700) -GOLDENROD = Color.from_hex(0xdaa520) -GRAY = Color.from_hex(0x808080) -GREEN = Color.from_hex(0x008000) -GREENYELLOW = Color.from_hex(0xadff2f) -HONEYDEW = Color.from_hex(0xf0fff0) -HOTPINK = Color.from_hex(0xff69b4) -INDIANRED = Color.from_hex(0xcd5c5c) -INDIGO = Color.from_hex(0x4b0082) -IVORY = Color.from_hex(0xfffff0) -KHAKI = Color.from_hex(0xf0e68c) -LAVENDER = Color.from_hex(0xe6e6fa) -LAVENDERBLUSH = Color.from_hex(0xfff0f5) -LAWNGREEN = Color.from_hex(0x7cfc00) -LEMONCHIFFON = Color.from_hex(0xfffacd) -LIGHTBLUE = Color.from_hex(0xadd8e6) -LIGHTCORAL = Color.from_hex(0xf08080) -LIGHTCYAN = Color.from_hex(0xe0ffff) -LIGHTGOLDENRODYELLOW = Color.from_hex(0xfafad2) -LIGHTGRAY = Color.from_hex(0xd3d3d3) -LIGHTGREEN = Color.from_hex(0x90ee90) -LIGHTPINK = Color.from_hex(0xffb6c1) -LIGHTSALMON = Color.from_hex(0xffa07a) -LIGHTSEAGREEN = Color.from_hex(0x20b2aa) -LIGHTSKYBLUE = Color.from_hex(0x87cefa) -LIGHTSLATEGRAY = Color.from_hex(0x778899) -LIGHTSTEELBLUE = Color.from_hex(0xb0c4de) -LIGHTYELLOW = Color.from_hex(0xffffe0) -LIME = Color.from_hex(0x00ff00) -LIMEGREEN = Color.from_hex(0x32cd32) -LINEN = Color.from_hex(0xfaf0e6) -MAGENTA = Color.from_hex(0xff00ff) -MAROON = Color.from_hex(0x800000) -MEDIUMAQUAMARINE = Color.from_hex(0x66cdaa) -MEDIUMBLUE = Color.from_hex(0x0000cd) -MEDIUMORCHID = Color.from_hex(0xba55d3) -MEDIUMPURPLE = Color.from_hex(0x9370d8) -MEDIUMSEAGREEN = Color.from_hex(0x3cb371) -MEDIUMSLATEBLUE = Color.from_hex(0x7b68ee) -MEDIUMSPRINGGREEN = Color.from_hex(0x00fa9a) -MEDIUMTURQUOISE = Color.from_hex(0x48d1cc) -MEDIUMVIOLETRED = Color.from_hex(0xc71585) -MIDNIGHTBLUE = Color.from_hex(0x191970) -MINTCREAM = Color.from_hex(0xf5fffa) -MISTYROSE = Color.from_hex(0xffe4e1) -MOCCASIN = Color.from_hex(0xffe4b5) -NAVAJOWHITE = Color.from_hex(0xffdead) -NAVY = Color.from_hex(0x000080) -OLDLACE = Color.from_hex(0xfdf5e6) -OLIVE = Color.from_hex(0x808000) -OLIVEDRAB = Color.from_hex(0x6b8e23) -ORANGE = Color.from_hex(0xffa500) -ORANGERED = Color.from_hex(0xff4500) -ORCHID = Color.from_hex(0xda70d6) -PALEGOLDENROD = Color.from_hex(0xeee8aa) -PALEGREEN = Color.from_hex(0x98fb98) -PALETURQUOISE = Color.from_hex(0xafeeee) -PALEVIOLETRED = Color.from_hex(0xdb7093) -PAPAYAWHIP = Color.from_hex(0xffefd5) -PEACHPUFF = Color.from_hex(0xffdab9) -PERU = Color.from_hex(0xcd853f) -PINK = Color.from_hex(0xffc0cb) -PLUM = Color.from_hex(0xdda0dd) -POWDERBLUE = Color.from_hex(0xb0e0e6) -PURPLE = Color.from_hex(0x800080) -RED = Color.from_hex(0xff0000) -ROSYBROWN = Color.from_hex(0xbc8f8f) -ROYALBLUE = Color.from_hex(0x4169e1) -SADDLEBROWN = Color.from_hex(0x8b4513) -SALMON = Color.from_hex(0xfa8072) -SANDYBROWN = Color.from_hex(0xf4a460) -SEAGREEN = Color.from_hex(0x2e8b57) -SEASHELL = Color.from_hex(0xfff5ee) -SIENNA = Color.from_hex(0xa0522d) -SILVER = Color.from_hex(0xc0c0c0) -SKYBLUE = Color.from_hex(0x87ceeb) -SLATEBLUE = Color.from_hex(0x6a5acd) -SLATEGRAY = Color.from_hex(0x708090) -SNOW = Color.from_hex(0xfffafa) -SPRINGGREEN = Color.from_hex(0x00ff7f) -STEELBLUE = Color.from_hex(0x4682b4) -TAN = Color.from_hex(0xd2b48c) -TEAL = Color.from_hex(0x008080) -THISTLE = Color.from_hex(0xd8bfd8) -TOMATO = Color.from_hex(0xff6347) -TURQUOISE = Color.from_hex(0x40e0d0) -VIOLET = Color.from_hex(0xee82ee) -WHEAT = Color.from_hex(0xf5deb3) -WHITE = Color.from_hex(0xffffff) -WHITESMOKE = Color.from_hex(0xf5f5f5) -YELLOW = Color.from_hex(0xffff00) -YELLOWGREEN = Color.from_hex(0x9acd32) +ALICEBLUE = color.from_hex(0xf0f8ff) +ANTIQUEWHITE = color.from_hex(0xfaebd7) +AQUA = color.from_hex(0x00ffff) +AQUAMARINE = color.from_hex(0x7fffd4) +AZURE = color.from_hex(0xf0ffff) +BEIGE = color.from_hex(0xf5f5dc) +BISQUE = color.from_hex(0xffe4c4) +BLACK = color.from_hex(0x000000) +BLANCHEDALMOND = color.from_hex(0xffebcd) +BLUE = color.from_hex(0x0000ff) +BLUEVIOLET = color.from_hex(0x8a2be2) +BROWN = color.from_hex(0xa52a2a) +BURLYWOOD = color.from_hex(0xdeb887) +CADETBLUE = color.from_hex(0x5f9ea0) +CHARTREUSE = color.from_hex(0x7fff00) +CHOCOLATE = color.from_hex(0xd2691e) +CORAL = color.from_hex(0xff7f50) +CORNFLOWERBLUE = color.from_hex(0x6495ed) +CORNSILK = color.from_hex(0xfff8dc) +CRIMSON = color.from_hex(0xdc143c) +CYAN = color.from_hex(0x00ffff) +DARKBLUE = color.from_hex(0x00008b) +DARKCYAN = color.from_hex(0x008b8b) +DARKGOLDENROD = color.from_hex(0xb8860b) +DARKGRAY = color.from_hex(0xa9a9a9) +DARKGREEN = color.from_hex(0x006400) +DARKKHAKI = color.from_hex(0xbdb76b) +DARKMAGENTA = color.from_hex(0x8b008b) +DARKOLIVEGREEN = color.from_hex(0x556b2f) +DARKORANGE = color.from_hex(0xff8c00) +DARKORCHID = color.from_hex(0x9932cc) +DARKRED = color.from_hex(0x8b0000) +DARKSALMON = color.from_hex(0xe9967a) +DARKSEAGREEN = color.from_hex(0x8fbc8f) +DARKSLATEBLUE = color.from_hex(0x483d8b) +DARKSLATEGRAY = color.from_hex(0x2f4f4f) +DARKTURQUOISE = color.from_hex(0x00ced1) +DARKVIOLET = color.from_hex(0x9400d3) +DEEPPINK = color.from_hex(0xff1493) +DEEPSKYBLUE = color.from_hex(0x00bfff) +DIMGRAY = color.from_hex(0x696969) +DODGERBLUE = color.from_hex(0x1e90ff) +FIREBRICK = color.from_hex(0xb22222) +FLORALWHITE = color.from_hex(0xfffaf0) +FORESTGREEN = color.from_hex(0x228b22) +FUCHSIA = color.from_hex(0xff00ff) +GAINSBORO = color.from_hex(0xdcdcdc) +GHOSTWHITE = color.from_hex(0xf8f8ff) +GOLD = color.from_hex(0xffd700) +GOLDENROD = color.from_hex(0xdaa520) +GRAY = color.from_hex(0x808080) +GREEN = color.from_hex(0x008000) +GREENYELLOW = color.from_hex(0xadff2f) +HONEYDEW = color.from_hex(0xf0fff0) +HOTPINK = color.from_hex(0xff69b4) +INDIANRED = color.from_hex(0xcd5c5c) +INDIGO = color.from_hex(0x4b0082) +IVORY = color.from_hex(0xfffff0) +KHAKI = color.from_hex(0xf0e68c) +LAVENDER = color.from_hex(0xe6e6fa) +LAVENDERBLUSH = color.from_hex(0xfff0f5) +LAWNGREEN = color.from_hex(0x7cfc00) +LEMONCHIFFON = color.from_hex(0xfffacd) +LIGHTBLUE = color.from_hex(0xadd8e6) +LIGHTCORAL = color.from_hex(0xf08080) +LIGHTCYAN = color.from_hex(0xe0ffff) +LIGHTGOLDENRODYELLOW = color.from_hex(0xfafad2) +LIGHTGRAY = color.from_hex(0xd3d3d3) +LIGHTGREEN = color.from_hex(0x90ee90) +LIGHTPINK = color.from_hex(0xffb6c1) +LIGHTSALMON = color.from_hex(0xffa07a) +LIGHTSEAGREEN = color.from_hex(0x20b2aa) +LIGHTSKYBLUE = color.from_hex(0x87cefa) +LIGHTSLATEGRAY = color.from_hex(0x778899) +LIGHTSTEELBLUE = color.from_hex(0xb0c4de) +LIGHTYELLOW = color.from_hex(0xffffe0) +LIME = color.from_hex(0x00ff00) +LIMEGREEN = color.from_hex(0x32cd32) +LINEN = color.from_hex(0xfaf0e6) +MAGENTA = color.from_hex(0xff00ff) +MAROON = color.from_hex(0x800000) +MEDIUMAQUAMARINE = color.from_hex(0x66cdaa) +MEDIUMBLUE = color.from_hex(0x0000cd) +MEDIUMORCHID = color.from_hex(0xba55d3) +MEDIUMPURPLE = color.from_hex(0x9370d8) +MEDIUMSEAGREEN = color.from_hex(0x3cb371) +MEDIUMSLATEBLUE = color.from_hex(0x7b68ee) +MEDIUMSPRINGGREEN = color.from_hex(0x00fa9a) +MEDIUMTURQUOISE = color.from_hex(0x48d1cc) +MEDIUMVIOLETRED = color.from_hex(0xc71585) +MIDNIGHTBLUE = color.from_hex(0x191970) +MINTCREAM = color.from_hex(0xf5fffa) +MISTYROSE = color.from_hex(0xffe4e1) +MOCCASIN = color.from_hex(0xffe4b5) +NAVAJOWHITE = color.from_hex(0xffdead) +NAVY = color.from_hex(0x000080) +OLDLACE = color.from_hex(0xfdf5e6) +OLIVE = color.from_hex(0x808000) +OLIVEDRAB = color.from_hex(0x6b8e23) +ORANGE = color.from_hex(0xffa500) +ORANGERED = color.from_hex(0xff4500) +ORCHID = color.from_hex(0xda70d6) +PALEGOLDENROD = color.from_hex(0xeee8aa) +PALEGREEN = color.from_hex(0x98fb98) +PALETURQUOISE = color.from_hex(0xafeeee) +PALEVIOLETRED = color.from_hex(0xdb7093) +PAPAYAWHIP = color.from_hex(0xffefd5) +PEACHPUFF = color.from_hex(0xffdab9) +PERU = color.from_hex(0xcd853f) +PINK = color.from_hex(0xffc0cb) +PLUM = color.from_hex(0xdda0dd) +POWDERBLUE = color.from_hex(0xb0e0e6) +PURPLE = color.from_hex(0x800080) +RED = color.from_hex(0xff0000) +ROSYBROWN = color.from_hex(0xbc8f8f) +ROYALBLUE = color.from_hex(0x4169e1) +SADDLEBROWN = color.from_hex(0x8b4513) +SALMON = color.from_hex(0xfa8072) +SANDYBROWN = color.from_hex(0xf4a460) +SEAGREEN = color.from_hex(0x2e8b57) +SEASHELL = color.from_hex(0xfff5ee) +SIENNA = color.from_hex(0xa0522d) +SILVER = color.from_hex(0xc0c0c0) +SKYBLUE = color.from_hex(0x87ceeb) +SLATEBLUE = color.from_hex(0x6a5acd) +SLATEGRAY = color.from_hex(0x708090) +SNOW = color.from_hex(0xfffafa) +SPRINGGREEN = color.from_hex(0x00ff7f) +STEELBLUE = color.from_hex(0x4682b4) +TAN = color.from_hex(0xd2b48c) +TEAL = color.from_hex(0x008080) +THISTLE = color.from_hex(0xd8bfd8) +TOMATO = color.from_hex(0xff6347) +TURQUOISE = color.from_hex(0x40e0d0) +VIOLET = color.from_hex(0xee82ee) +WHEAT = color.from_hex(0xf5deb3) +WHITE = color.from_hex(0xffffff) +WHITESMOKE = color.from_hex(0xf5f5f5) +YELLOW = color.from_hex(0xffff00) +YELLOWGREEN = color.from_hex(0x9acd32) diff --git a/pycardium/modules/py/meson.build b/pycardium/modules/py/meson.build index 27d98ec7fcefc75c3b5635d467335debb94f1ea3..4184cb5f45aa1f1937dd1de4482ff8b19d6749e8 100644 --- a/pycardium/modules/py/meson.build +++ b/pycardium/modules/py/meson.build @@ -1,5 +1,6 @@ python_modules = files( 'color.py', + 'htmlcolor.py', ) frozen_modules = mpy_cross.process(python_modules)