jguvc_eip.colors
¶
Variables¶
- jguvc_eip.colors.RGBColor¶
Type for RGB colors, encoded as tuples of three ints in the range 0…255
typing.Tuple[int, int, int]
alias of
Tuple
[int
,int
,int
]
- jguvc_eip.colors.BLACK¶
A 3-Tuple of ints representing the color black
(0, 0, 0)
- jguvc_eip.colors.WHITE¶
A 3-Tuple of ints representing the color white
(255, 255, 255)
- jguvc_eip.colors.RED¶
A 3-Tuple of ints representing the color red
(229, 28, 35)
- jguvc_eip.colors.ORANGE¶
A 3-Tuple of ints representing an orange color.
(255, 152, 0)
- jguvc_eip.colors.YELLOW¶
A 3-Tuple of ints representing a yellow color.
(255, 235, 59)
- jguvc_eip.colors.GREEN¶
A 3-Tuple of ints representing a green color.
(139, 195, 74)
- jguvc_eip.colors.TEAL¶
A 3-Tuple of ints representing a teal color.
(0, 150, 126)
- jguvc_eip.colors.SKY¶
A 3-Tuple of ints representing a shiny blue color.
(104, 137, 255)
- jguvc_eip.colors.BLUE¶
A 3-Tuple of ints representing a darker blue color.
(63, 81, 181)
- jguvc_eip.colors.VIOLET¶
A 3-Tuple of ints representing a violet color.
(156, 39, 176)
- jguvc_eip.colors.PINK¶
A 3-Tuple of ints representing a pink color.
(233, 30, 99)
- jguvc_eip.colors.TupleOf7RGBColors¶
A tuple of seven colors - this is used for the color variations SHADE_OF_X
typing.Tuple[typing.Tuple[int, int, int], typing.Tuple[int, int, int], typing.Tuple[int, int, int], typing.Tuple[int, int, int], typing.Tuple[int, int, int], typing.Tuple[int, int, int], typing.Tuple[int, int, int]]
alias of
Tuple
[Tuple
[int
,int
,int
],Tuple
[int
,int
,int
],Tuple
[int
,int
,int
],Tuple
[int
,int
,int
],Tuple
[int
,int
,int
],Tuple
[int
,int
,int
],Tuple
[int
,int
,int
]]
- jguvc_eip.colors.SHADES_OF_BLACK¶
seven different shades of black, small index is the darkest, large index is the lightest
((0, 0, 0), (0, 0, 0), (0, 0, 0), (0, 0, 0), (63, 63, 63), (127, 127, 127), (191, 191, 191))
- jguvc_eip.colors.SHADES_OF_WHITE¶
seven different shades of white, small index is the darkest, large index is the lightest
((63, 63, 63), (127, 127, 127), (191, 191, 191), (255, 255, 255), (255, 255, 255), (255, 255, 255), (255, 255, 255))
- jguvc_eip.colors.SHADES_OF_RED¶
seven different shades of red, small index is the darkest, large index is the lightest
((57, 7, 8), (114, 14, 17), (171, 21, 26), (229, 28, 35), (235, 84, 90), (242, 141, 145), (248, 198, 200))
- jguvc_eip.colors.SHADES_OF_ORANGE¶
seven different shades of orange, small index is the darkest, large index is the lightest
((63, 38, 0), (127, 76, 0), (191, 114, 0), (255, 152, 0), (255, 177, 63), (255, 203, 127), (255, 229, 191))
- jguvc_eip.colors.SHADES_OF_YELLOW¶
seven different shades of yellow, small index is the darkest, large index is the lightest
((63, 58, 14), (127, 117, 29), (191, 176, 44), (255, 235, 59), (255, 240, 108), (255, 245, 157), (255, 250, 206))
- jguvc_eip.colors.SHADES_OF_GREEN¶
seven different shades of green, small index is the darkest, large index is the lightest
((34, 48, 18), (69, 97, 37), (104, 146, 55), (139, 195, 74), (168, 210, 119), (197, 225, 164), (226, 240, 209))
- jguvc_eip.colors.SHADES_OF_TEAL¶
seven different shades of teal, small index is the darkest, large index is the lightest
((0, 37, 31), (0, 75, 63), (0, 112, 94), (0, 150, 126), (63, 176, 158), (127, 202, 190), (191, 228, 222))
- jguvc_eip.colors.SHADES_OF_SKY¶
seven different shades of light blue, small index is the darkest, large index is the lightest
((26, 34, 63), (52, 68, 127), (78, 102, 191), (104, 137, 255), (141, 166, 255), (179, 196, 255), (217, 225, 255))
- jguvc_eip.colors.SHADES_OF_BLUE¶
seven different shades of darker blue, small index is the darkest, large index is the lightest
((15, 20, 45), (31, 40, 90), (47, 60, 135), (63, 81, 181), (111, 124, 199), (159, 168, 218), (207, 211, 236))
- jguvc_eip.colors.SHADES_OF_VIOLET¶
seven different shades of violet, small index is the darkest, large index is the lightest
((39, 9, 44), (78, 19, 88), (117, 29, 132), (156, 39, 176), (180, 93, 195), (205, 147, 215), (230, 201, 235))
- jguvc_eip.colors.SHADES_OF_PINK¶
seven different shades of pink, small index is the darkest, large index is the lightest
((58, 7, 24), (116, 15, 49), (174, 22, 74), (233, 30, 99), (238, 86, 138), (244, 142, 177), (249, 198, 216))
- jguvc_eip.colors.VERY_LIGHT_GRAY¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(191, 191, 191)
- jguvc_eip.colors.VERY_LIGHT_RED¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(248, 198, 200)
- jguvc_eip.colors.VERY_LIGHT_ORANGE¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(255, 229, 191)
- jguvc_eip.colors.VERY_LIGHT_YELLOW¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(255, 250, 206)
- jguvc_eip.colors.VERY_LIGHT_GREEN¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(226, 240, 209)
- jguvc_eip.colors.VERY_LIGHT_TEAL¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(191, 228, 222)
- jguvc_eip.colors.VERY_LIGHT_SKY¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(217, 225, 255)
- jguvc_eip.colors.VERY_LIGHT_BLUE¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(207, 211, 236)
- jguvc_eip.colors.VERY_LIGHT_VIOLET¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(230, 201, 235)
- jguvc_eip.colors.VERY_LIGHT_PINK¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(249, 198, 216)
- jguvc_eip.colors.LIGHT_GRAY¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(127, 127, 127)
- jguvc_eip.colors.LIGHT_RED¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(242, 141, 145)
- jguvc_eip.colors.LIGHT_ORANGE¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(255, 203, 127)
- jguvc_eip.colors.LIGHT_YELLOW¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(255, 245, 157)
- jguvc_eip.colors.LIGHT_GREEN¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(197, 225, 164)
- jguvc_eip.colors.LIGHT_TEAL¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(127, 202, 190)
- jguvc_eip.colors.LIGHT_SKY¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(179, 196, 255)
- jguvc_eip.colors.LIGHT_BLUE¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(159, 168, 218)
- jguvc_eip.colors.LIGHT_VIOLET¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(205, 147, 215)
- jguvc_eip.colors.LIGHT_PINK¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(244, 142, 177)
- jguvc_eip.colors.SLIGHTLY_LIGHTER_GRAY¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(63, 63, 63)
- jguvc_eip.colors.SLIGHTLY_LIGHTER_RED¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(235, 84, 90)
- jguvc_eip.colors.SLIGHTLY_LIGHTER_ORANGE¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(255, 177, 63)
- jguvc_eip.colors.SLIGHTLY_LIGHTER_YELLOW¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(255, 240, 108)
- jguvc_eip.colors.SLIGHTLY_LIGHTER_GREEN¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(168, 210, 119)
- jguvc_eip.colors.SLIGHTLY_LIGHTER_TEAL¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(63, 176, 158)
- jguvc_eip.colors.SLIGHTLY_LIGHTER_SKY¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(141, 166, 255)
- jguvc_eip.colors.SLIGHTLY_LIGHTER_BLUE¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(111, 124, 199)
- jguvc_eip.colors.SLIGHTLY_LIGHTER_VIOLET¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(180, 93, 195)
- jguvc_eip.colors.SLIGHTLY_LIGHTER_PINK¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(238, 86, 138)
- jguvc_eip.colors.VERY_DARK_GRAY¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(0, 0, 0)
- jguvc_eip.colors.VERY_DARK_RED¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(57, 7, 8)
- jguvc_eip.colors.VERY_DARK_ORANGE¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(63, 38, 0)
- jguvc_eip.colors.VERY_DARK_YELLOW¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(63, 58, 14)
- jguvc_eip.colors.VERY_DARK_GREEN¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(34, 48, 18)
- jguvc_eip.colors.VERY_DARK_TEAL¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(0, 37, 31)
- jguvc_eip.colors.VERY_DARK_SKY¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(26, 34, 63)
- jguvc_eip.colors.VERY_DARK_BLUE¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(15, 20, 45)
- jguvc_eip.colors.VERY_DARK_VIOLET¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(39, 9, 44)
- jguvc_eip.colors.VERY_DARK_PINK¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(58, 7, 24)
- jguvc_eip.colors.DARK_GRAY¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(0, 0, 0)
- jguvc_eip.colors.DARK_RED¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(114, 14, 17)
- jguvc_eip.colors.DARK_ORANGE¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(127, 76, 0)
- jguvc_eip.colors.DARK_YELLOW¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(127, 117, 29)
- jguvc_eip.colors.DARK_GREEN¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(69, 97, 37)
- jguvc_eip.colors.DARK_TEAL¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(0, 75, 63)
- jguvc_eip.colors.DARK_SKY¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(52, 68, 127)
- jguvc_eip.colors.DARK_BLUE¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(31, 40, 90)
- jguvc_eip.colors.DARK_VIOLET¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(78, 19, 88)
- jguvc_eip.colors.DARK_PINK¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(116, 15, 49)
- jguvc_eip.colors.SLIGHTLY_DARKER_GRAY¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(0, 0, 0)
- jguvc_eip.colors.SLIGHTLY_DARKER_RED¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(171, 21, 26)
- jguvc_eip.colors.SLIGHTLY_DARKER_ORANGE¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(191, 114, 0)
- jguvc_eip.colors.SLIGHTLY_DARKER_YELLOW¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(191, 176, 44)
- jguvc_eip.colors.SLIGHTLY_DARKER_GREEN¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(104, 146, 55)
- jguvc_eip.colors.SLIGHTLY_DARKER_TEAL¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(0, 112, 94)
- jguvc_eip.colors.SLIGHTLY_DARKER_SKY¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(78, 102, 191)
- jguvc_eip.colors.SLIGHTLY_DARKER_BLUE¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(47, 60, 135)
- jguvc_eip.colors.SLIGHTLY_DARKER_VIOLET¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(117, 29, 132)
- jguvc_eip.colors.SLIGHTLY_DARKER_PINK¶
Built-in immutable sequence.
If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.
If the argument is a tuple, the return value is the same object.
(174, 22, 74)