molde 0.1.2__py3-none-any.whl → 0.1.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- molde/__init__.py +5 -5
- molde/__main__.py +74 -74
- molde/actors/__init__.py +5 -5
- molde/actors/common_symbols_actor.py +164 -148
- molde/actors/ghost_actor.py +12 -12
- molde/actors/lines_actor.py +31 -31
- molde/actors/round_points_actor.py +7 -7
- molde/actors/square_points_actor.py +32 -32
- molde/colors/__init__.py +1 -1
- molde/colors/color.py +120 -120
- molde/colors/color_names.py +124 -124
- molde/interactor_styles/__init__.py +2 -2
- molde/interactor_styles/arcball_camera_style.py +288 -288
- molde/interactor_styles/box_selection_style.py +70 -70
- molde/main_window.ui +864 -864
- molde/pickers/__init__.py +2 -2
- molde/pickers/cell_area_picker.py +61 -61
- molde/pickers/cell_property_area_picker.py +84 -84
- molde/poly_data/__init__.py +13 -19
- molde/poly_data/arrows.py +1 -1
- molde/poly_data/lines_data.py +23 -23
- molde/poly_data/simple_shapes.py +1 -1
- molde/poly_data/vertices_data.py +24 -24
- molde/render_widgets/__init__.py +2 -2
- molde/render_widgets/animated_render_widget.py +164 -164
- molde/render_widgets/common_render_widget.py +433 -433
- molde/stylesheets/__init__.py +119 -119
- molde/stylesheets/common.qss +16 -16
- molde/stylesheets/create_color_page.py +61 -61
- molde/stylesheets/mainwindow.ui +611 -611
- molde/stylesheets/qcheckbox.qss +18 -18
- molde/stylesheets/qinputs.qss +78 -78
- molde/stylesheets/qlayouts.qss +22 -22
- molde/stylesheets/qmenubar.qss +12 -12
- molde/stylesheets/qprogressbar.qss +11 -11
- molde/stylesheets/qpushbutton.qss +90 -90
- molde/stylesheets/qradiobutton.qss +30 -30
- molde/stylesheets/qscrollbar.qss +29 -29
- molde/stylesheets/qslider.qss +61 -61
- molde/stylesheets/qtablewidget.qss +27 -27
- molde/stylesheets/qtabwidget.qss +29 -29
- molde/stylesheets/qtoolbar.qss +62 -62
- molde/stylesheets/qtoolbuttons.qss +14 -14
- molde/stylesheets/qtreewidget.qss +25 -25
- molde/ui_files/messages/new_loading_window.ui +73 -73
- molde/utils/__init__.py +8 -8
- molde/utils/format_sequences.py +44 -44
- molde/utils/poly_data_utils.py +66 -25
- molde/utils/tree_info.py +52 -52
- molde/windows/loading_window.py +189 -189
- {molde-0.1.2.dist-info → molde-0.1.3.dist-info}/METADATA +2 -4
- molde-0.1.3.dist-info/RECORD +68 -0
- {molde-0.1.2.dist-info → molde-0.1.3.dist-info}/WHEEL +1 -1
- molde/poly_data/complex_shapes.py +0 -26
- molde-0.1.2.dist-info/RECORD +0 -69
molde/colors/color.py
CHANGED
@@ -1,120 +1,120 @@
|
|
1
|
-
import typing
|
2
|
-
from PyQt5.QtGui import QColor
|
3
|
-
import numpy as np
|
4
|
-
|
5
|
-
|
6
|
-
class Color:
|
7
|
-
r: int
|
8
|
-
g: int
|
9
|
-
b: int
|
10
|
-
a: int
|
11
|
-
|
12
|
-
@typing.overload
|
13
|
-
def __init__(self, r: int, g: int, b: int, a: int = 255):
|
14
|
-
'''
|
15
|
-
Initialize Colors with RGB or RGBA integer values ranging from 0 to 255.
|
16
|
-
'''
|
17
|
-
|
18
|
-
@typing.overload
|
19
|
-
def __init__(self, r: float, g: float, b: float, a: float = 1.0):
|
20
|
-
'''
|
21
|
-
Initialize Colors with RGB or RGBA floating values ranging from 0.0 to 1.0.
|
22
|
-
'''
|
23
|
-
|
24
|
-
@typing.overload
|
25
|
-
def __init__(self, hexa: str):
|
26
|
-
'''
|
27
|
-
Initialize colors from hex values.
|
28
|
-
The valid formats incluce RGB (#FF0000 for example)
|
29
|
-
and RGBA (#FF0000FF for example)
|
30
|
-
'''
|
31
|
-
|
32
|
-
@typing.overload
|
33
|
-
def __init__(self, qcolor: QColor):
|
34
|
-
'''
|
35
|
-
Initialize the color class with an instance of QColor
|
36
|
-
'''
|
37
|
-
|
38
|
-
@typing.overload
|
39
|
-
def __init__(self):
|
40
|
-
'''
|
41
|
-
Initialize an empty black color
|
42
|
-
'''
|
43
|
-
|
44
|
-
def __init__(self, *args):
|
45
|
-
|
46
|
-
all_int = all([isinstance(i, int) for i in args])
|
47
|
-
all_float = all([isinstance(i, float) for i in args])
|
48
|
-
|
49
|
-
if len(args) == 0:
|
50
|
-
self.from_rgba(0, 0, 0, 255)
|
51
|
-
|
52
|
-
elif len(args) == 1 and isinstance(args[0], str):
|
53
|
-
self.from_hex(*args)
|
54
|
-
|
55
|
-
elif len(args) == 1 and isinstance(args[0], QColor):
|
56
|
-
self.from_qcolor(*args)
|
57
|
-
|
58
|
-
elif len(args) in [3, 4] and all_int:
|
59
|
-
self.from_rgba(*args)
|
60
|
-
|
61
|
-
elif len(args) in [3, 4] and all_float:
|
62
|
-
self.from_rgba_f(*args)
|
63
|
-
|
64
|
-
else:
|
65
|
-
raise ValueError("Invalid input values")
|
66
|
-
|
67
|
-
def from_rgb(self, r: int, g: int, b: int) -> "Color":
|
68
|
-
return self.from_rgba(r, g, b)
|
69
|
-
|
70
|
-
def from_rgba(self, r: int, g: int, b: int, a: int=255) -> "Color":
|
71
|
-
self.r = int(np.clip(r, 0, 255))
|
72
|
-
self.g = int(np.clip(g, 0, 255))
|
73
|
-
self.b = int(np.clip(b, 0, 255))
|
74
|
-
self.a = int(np.clip(a, 0, 255))
|
75
|
-
return self
|
76
|
-
|
77
|
-
def from_rgb_f(self, r: float, g: float, b: float) -> "Color":
|
78
|
-
return self.from_rgba_f(r, g, b)
|
79
|
-
|
80
|
-
def from_rgba_f(self, r: float, g: float, b: float, a: float = 1) -> "Color":
|
81
|
-
return self.from_rgba(
|
82
|
-
int(r * 255),
|
83
|
-
int(g * 255),
|
84
|
-
int(b * 255),
|
85
|
-
int(a * 255),
|
86
|
-
)
|
87
|
-
|
88
|
-
def from_hex(self, color: str) -> "Color":
|
89
|
-
color = color.lstrip('#')
|
90
|
-
if len(color) == 6:
|
91
|
-
r, g, b = int(color[0:2], 16), int(color[2:4], 16), int(color[4:6], 16)
|
92
|
-
return self.from_rgb(r, g, b)
|
93
|
-
elif len(color) == 8:
|
94
|
-
r, g, b, a = int(color[0:2], 16), int(color[2:4], 16), int(color[4:6], 16), int(color[6:8], 16)
|
95
|
-
return self.from_rgba(r, g, b, a)
|
96
|
-
raise ValueError("Invalid hex color format")
|
97
|
-
|
98
|
-
def from_qcolor(self, color: QColor) -> "Color":
|
99
|
-
return self.from_rgba(color.red(), color.green(), color.blue(), color.alpha())
|
100
|
-
|
101
|
-
def to_rgb(self) -> tuple[int, int, int]:
|
102
|
-
return (self.r, self.g, self.b)
|
103
|
-
|
104
|
-
def to_rgba(self) -> tuple[int, int, int, int]:
|
105
|
-
return (self.r, self.g, self.b, self.a)
|
106
|
-
|
107
|
-
def to_rgb_f(self) -> tuple[float, float, float]:
|
108
|
-
return ((self.r / 255), (self.g / 255), (self.b / 255))
|
109
|
-
|
110
|
-
def to_rgba_f(self) -> tuple[float, float, float, float]:
|
111
|
-
return ((self.r / 255), (self.g / 255), (self.b / 255), (self.a / 255))
|
112
|
-
|
113
|
-
def to_hex(self) -> str:
|
114
|
-
return (f'#{self.r:02X}{self.g:02X}{self.b:02X}')
|
115
|
-
|
116
|
-
def to_hexa(self) -> str:
|
117
|
-
return (f'#{self.r:02X}{self.g:02X}{self.b:02X}{self.a:02X}')
|
118
|
-
|
119
|
-
def to_qt(self) -> QColor:
|
120
|
-
return QColor(self.r, self.g, self.b, self.a)
|
1
|
+
import typing
|
2
|
+
from PyQt5.QtGui import QColor
|
3
|
+
import numpy as np
|
4
|
+
|
5
|
+
|
6
|
+
class Color:
|
7
|
+
r: int
|
8
|
+
g: int
|
9
|
+
b: int
|
10
|
+
a: int
|
11
|
+
|
12
|
+
@typing.overload
|
13
|
+
def __init__(self, r: int, g: int, b: int, a: int = 255):
|
14
|
+
'''
|
15
|
+
Initialize Colors with RGB or RGBA integer values ranging from 0 to 255.
|
16
|
+
'''
|
17
|
+
|
18
|
+
@typing.overload
|
19
|
+
def __init__(self, r: float, g: float, b: float, a: float = 1.0):
|
20
|
+
'''
|
21
|
+
Initialize Colors with RGB or RGBA floating values ranging from 0.0 to 1.0.
|
22
|
+
'''
|
23
|
+
|
24
|
+
@typing.overload
|
25
|
+
def __init__(self, hexa: str):
|
26
|
+
'''
|
27
|
+
Initialize colors from hex values.
|
28
|
+
The valid formats incluce RGB (#FF0000 for example)
|
29
|
+
and RGBA (#FF0000FF for example)
|
30
|
+
'''
|
31
|
+
|
32
|
+
@typing.overload
|
33
|
+
def __init__(self, qcolor: QColor):
|
34
|
+
'''
|
35
|
+
Initialize the color class with an instance of QColor
|
36
|
+
'''
|
37
|
+
|
38
|
+
@typing.overload
|
39
|
+
def __init__(self):
|
40
|
+
'''
|
41
|
+
Initialize an empty black color
|
42
|
+
'''
|
43
|
+
|
44
|
+
def __init__(self, *args):
|
45
|
+
|
46
|
+
all_int = all([isinstance(i, int) for i in args])
|
47
|
+
all_float = all([isinstance(i, float) for i in args])
|
48
|
+
|
49
|
+
if len(args) == 0:
|
50
|
+
self.from_rgba(0, 0, 0, 255)
|
51
|
+
|
52
|
+
elif len(args) == 1 and isinstance(args[0], str):
|
53
|
+
self.from_hex(*args)
|
54
|
+
|
55
|
+
elif len(args) == 1 and isinstance(args[0], QColor):
|
56
|
+
self.from_qcolor(*args)
|
57
|
+
|
58
|
+
elif len(args) in [3, 4] and all_int:
|
59
|
+
self.from_rgba(*args)
|
60
|
+
|
61
|
+
elif len(args) in [3, 4] and all_float:
|
62
|
+
self.from_rgba_f(*args)
|
63
|
+
|
64
|
+
else:
|
65
|
+
raise ValueError("Invalid input values")
|
66
|
+
|
67
|
+
def from_rgb(self, r: int, g: int, b: int) -> "Color":
|
68
|
+
return self.from_rgba(r, g, b)
|
69
|
+
|
70
|
+
def from_rgba(self, r: int, g: int, b: int, a: int=255) -> "Color":
|
71
|
+
self.r = int(np.clip(r, 0, 255))
|
72
|
+
self.g = int(np.clip(g, 0, 255))
|
73
|
+
self.b = int(np.clip(b, 0, 255))
|
74
|
+
self.a = int(np.clip(a, 0, 255))
|
75
|
+
return self
|
76
|
+
|
77
|
+
def from_rgb_f(self, r: float, g: float, b: float) -> "Color":
|
78
|
+
return self.from_rgba_f(r, g, b)
|
79
|
+
|
80
|
+
def from_rgba_f(self, r: float, g: float, b: float, a: float = 1) -> "Color":
|
81
|
+
return self.from_rgba(
|
82
|
+
int(r * 255),
|
83
|
+
int(g * 255),
|
84
|
+
int(b * 255),
|
85
|
+
int(a * 255),
|
86
|
+
)
|
87
|
+
|
88
|
+
def from_hex(self, color: str) -> "Color":
|
89
|
+
color = color.lstrip('#')
|
90
|
+
if len(color) == 6:
|
91
|
+
r, g, b = int(color[0:2], 16), int(color[2:4], 16), int(color[4:6], 16)
|
92
|
+
return self.from_rgb(r, g, b)
|
93
|
+
elif len(color) == 8:
|
94
|
+
r, g, b, a = int(color[0:2], 16), int(color[2:4], 16), int(color[4:6], 16), int(color[6:8], 16)
|
95
|
+
return self.from_rgba(r, g, b, a)
|
96
|
+
raise ValueError("Invalid hex color format")
|
97
|
+
|
98
|
+
def from_qcolor(self, color: QColor) -> "Color":
|
99
|
+
return self.from_rgba(color.red(), color.green(), color.blue(), color.alpha())
|
100
|
+
|
101
|
+
def to_rgb(self) -> tuple[int, int, int]:
|
102
|
+
return (self.r, self.g, self.b)
|
103
|
+
|
104
|
+
def to_rgba(self) -> tuple[int, int, int, int]:
|
105
|
+
return (self.r, self.g, self.b, self.a)
|
106
|
+
|
107
|
+
def to_rgb_f(self) -> tuple[float, float, float]:
|
108
|
+
return ((self.r / 255), (self.g / 255), (self.b / 255))
|
109
|
+
|
110
|
+
def to_rgba_f(self) -> tuple[float, float, float, float]:
|
111
|
+
return ((self.r / 255), (self.g / 255), (self.b / 255), (self.a / 255))
|
112
|
+
|
113
|
+
def to_hex(self) -> str:
|
114
|
+
return (f'#{self.r:02X}{self.g:02X}{self.b:02X}')
|
115
|
+
|
116
|
+
def to_hexa(self) -> str:
|
117
|
+
return (f'#{self.r:02X}{self.g:02X}{self.b:02X}{self.a:02X}')
|
118
|
+
|
119
|
+
def to_qt(self) -> QColor:
|
120
|
+
return QColor(self.r, self.g, self.b, self.a)
|
molde/colors/color_names.py
CHANGED
@@ -1,125 +1,125 @@
|
|
1
|
-
from .color import Color
|
2
|
-
|
3
|
-
|
4
|
-
WHITE = Color("#FFFFFF")
|
5
|
-
BLACK = Color("#000000")
|
6
|
-
|
7
|
-
RED_9 = Color("#FFECEB")
|
8
|
-
RED_8 = Color("#FFD5D2")
|
9
|
-
RED_7 = Color("#FD9891")
|
10
|
-
RED_6 = Color("#F87168")
|
11
|
-
RED_5 = Color("#F15B50")
|
12
|
-
RED_4 = Color("#E2483D")
|
13
|
-
RED_3 = Color("#C9372C")
|
14
|
-
RED_2 = Color("#AE2E24")
|
15
|
-
RED_1 = Color("#5D1F1A")
|
16
|
-
RED_0 = Color("#42221F")
|
17
|
-
RED = RED_4
|
18
|
-
|
19
|
-
GREEN_9 = Color("#DCFFF1")
|
20
|
-
GREEN_8 = Color("#BAF3DB")
|
21
|
-
GREEN_7 = Color("#7EE2B8")
|
22
|
-
GREEN_6 = Color("#4BCE97")
|
23
|
-
GREEN_5 = Color("#2ABB7F")
|
24
|
-
GREEN_4 = Color("#22A06B")
|
25
|
-
GREEN_3 = Color("#1F845A")
|
26
|
-
GREEN_2 = Color("#216E4E")
|
27
|
-
GREEN_1 = Color("#164B35")
|
28
|
-
GREEN_0 = Color("#1C3329")
|
29
|
-
GREEN = GREEN_4
|
30
|
-
|
31
|
-
BLUE_9 = Color("#ECF0FF")
|
32
|
-
BLUE_8 = Color("#C5D4FF")
|
33
|
-
BLUE_7 = Color("#84AAFF")
|
34
|
-
BLUE_6 = Color("#498FFF")
|
35
|
-
BLUE_5 = Color("#007AF0")
|
36
|
-
BLUE_4 = Color("#0069D0")
|
37
|
-
BLUE_3 = Color("#0051A2")
|
38
|
-
BLUE_2 = Color("#003A79")
|
39
|
-
BLUE_1 = Color("#002451")
|
40
|
-
BLUE_0 = Color("#001429")
|
41
|
-
BLUE = BLUE_4
|
42
|
-
|
43
|
-
GRAY_9 = Color("#F0F0F5")
|
44
|
-
GRAY_8 = Color("#D3D4DD")
|
45
|
-
GRAY_7 = Color("#AAAAB9")
|
46
|
-
GRAY_6 = Color("#8F8FA2")
|
47
|
-
GRAY_5 = Color("#7A7B8E")
|
48
|
-
GRAY_4 = Color("#696979")
|
49
|
-
GRAY_3 = Color("#515162")
|
50
|
-
GRAY_2 = Color("#3A3A47")
|
51
|
-
GRAY_1 = Color("#24252E")
|
52
|
-
GRAY_0 = Color("#1F2028")
|
53
|
-
GRAY = GRAY_4
|
54
|
-
|
55
|
-
ORANGE_9 = Color("#FFF3EB")
|
56
|
-
ORANGE_8 = Color("#FEDEC8")
|
57
|
-
ORANGE_7 = Color("#FEC195")
|
58
|
-
ORANGE_6 = Color("#FEA362")
|
59
|
-
ORANGE_5 = Color("#F38A3F")
|
60
|
-
ORANGE_4 = Color("#E56910")
|
61
|
-
ORANGE_3 = Color("#C25100")
|
62
|
-
ORANGE_2 = Color("#A54800")
|
63
|
-
ORANGE_1 = Color("#702E00")
|
64
|
-
ORANGE_0 = Color("#421A00")
|
65
|
-
ORANGE = ORANGE_4
|
66
|
-
|
67
|
-
PURPLE_9 = Color("#F3F0FF")
|
68
|
-
PURPLE_8 = Color("#DFD8FD")
|
69
|
-
PURPLE_7 = Color("#B8ACF6")
|
70
|
-
PURPLE_6 = Color("#9F8FEF")
|
71
|
-
PURPLE_5 = Color("#8F7EE7")
|
72
|
-
PURPLE_4 = Color("#8270DB")
|
73
|
-
PURPLE_3 = Color("#6E5DC6")
|
74
|
-
PURPLE_2 = Color("#5E4DB2")
|
75
|
-
PURPLE_1 = Color("#352C63")
|
76
|
-
PURPLE_0 = Color("#2B273F")
|
77
|
-
PURPLE = PURPLE_4
|
78
|
-
|
79
|
-
TURQUOISE_9 = Color("#DBF6F2")
|
80
|
-
TURQUOISE_8 = Color("#9BE1D8")
|
81
|
-
TURQUOISE_7 = Color("#50BBAF")
|
82
|
-
TURQUOISE_6 = Color("#36A094")
|
83
|
-
TURQUOISE_5 = Color("#1E8B7F")
|
84
|
-
TURQUOISE_4 = Color("#02786D")
|
85
|
-
TURQUOISE_3 = Color("#005E55")
|
86
|
-
TURQUOISE_2 = Color("#00443D")
|
87
|
-
TURQUOISE_1 = Color("#002B26")
|
88
|
-
TURQUOISE_0 = Color("#002420")
|
89
|
-
TURQUOISE = TURQUOISE_4
|
90
|
-
|
91
|
-
YELLOW_9 = Color("#FFF0D6")
|
92
|
-
YELLOW_8 = Color("#FFE2AF")
|
93
|
-
YELLOW_7 = Color("#FFD387")
|
94
|
-
YELLOW_6 = Color("#FFC460")
|
95
|
-
YELLOW_5 = Color("#FFB432")
|
96
|
-
YELLOW_4 = Color("#E89403")
|
97
|
-
YELLOW_3 = Color("#B87400")
|
98
|
-
YELLOW_2 = Color("#8F5A00")
|
99
|
-
YELLOW_1 = Color("#664100")
|
100
|
-
YELLOW_0 = Color("#3D2700")
|
101
|
-
YELLOW = YELLOW_4
|
102
|
-
|
103
|
-
PINK_9 = Color("#FEECF1")
|
104
|
-
PINK_8 = Color("#FBC7D5")
|
105
|
-
PINK_7 = Color("#F888AE")
|
106
|
-
PINK_6 = Color("#F65495")
|
107
|
-
PINK_5 = Color("#E62881")
|
108
|
-
PINK_4 = Color("#C8206F")
|
109
|
-
PINK_3 = Color("#9D1756")
|
110
|
-
PINK_2 = Color("#74103E")
|
111
|
-
PINK_1 = Color("#4E0627")
|
112
|
-
PINK_0 = Color("#2E0116")
|
113
|
-
PINK = PINK_4
|
114
|
-
|
115
|
-
TEAL_9 = Color("#E7F9FF")
|
116
|
-
TEAL_8 = Color("#C6EDFB")
|
117
|
-
TEAL_7 = Color("#9DD9EE")
|
118
|
-
TEAL_6 = Color("#6CC3E0")
|
119
|
-
TEAL_5 = Color("#42B2D7")
|
120
|
-
TEAL_4 = Color("#2898BD")
|
121
|
-
TEAL_3 = Color("#227D9B")
|
122
|
-
TEAL_2 = Color("#206A83")
|
123
|
-
TEAL_1 = Color("#164555")
|
124
|
-
TEAL_0 = Color("#1E3137")
|
1
|
+
from .color import Color
|
2
|
+
|
3
|
+
|
4
|
+
WHITE = Color("#FFFFFF")
|
5
|
+
BLACK = Color("#000000")
|
6
|
+
|
7
|
+
RED_9 = Color("#FFECEB")
|
8
|
+
RED_8 = Color("#FFD5D2")
|
9
|
+
RED_7 = Color("#FD9891")
|
10
|
+
RED_6 = Color("#F87168")
|
11
|
+
RED_5 = Color("#F15B50")
|
12
|
+
RED_4 = Color("#E2483D")
|
13
|
+
RED_3 = Color("#C9372C")
|
14
|
+
RED_2 = Color("#AE2E24")
|
15
|
+
RED_1 = Color("#5D1F1A")
|
16
|
+
RED_0 = Color("#42221F")
|
17
|
+
RED = RED_4
|
18
|
+
|
19
|
+
GREEN_9 = Color("#DCFFF1")
|
20
|
+
GREEN_8 = Color("#BAF3DB")
|
21
|
+
GREEN_7 = Color("#7EE2B8")
|
22
|
+
GREEN_6 = Color("#4BCE97")
|
23
|
+
GREEN_5 = Color("#2ABB7F")
|
24
|
+
GREEN_4 = Color("#22A06B")
|
25
|
+
GREEN_3 = Color("#1F845A")
|
26
|
+
GREEN_2 = Color("#216E4E")
|
27
|
+
GREEN_1 = Color("#164B35")
|
28
|
+
GREEN_0 = Color("#1C3329")
|
29
|
+
GREEN = GREEN_4
|
30
|
+
|
31
|
+
BLUE_9 = Color("#ECF0FF")
|
32
|
+
BLUE_8 = Color("#C5D4FF")
|
33
|
+
BLUE_7 = Color("#84AAFF")
|
34
|
+
BLUE_6 = Color("#498FFF")
|
35
|
+
BLUE_5 = Color("#007AF0")
|
36
|
+
BLUE_4 = Color("#0069D0")
|
37
|
+
BLUE_3 = Color("#0051A2")
|
38
|
+
BLUE_2 = Color("#003A79")
|
39
|
+
BLUE_1 = Color("#002451")
|
40
|
+
BLUE_0 = Color("#001429")
|
41
|
+
BLUE = BLUE_4
|
42
|
+
|
43
|
+
GRAY_9 = Color("#F0F0F5")
|
44
|
+
GRAY_8 = Color("#D3D4DD")
|
45
|
+
GRAY_7 = Color("#AAAAB9")
|
46
|
+
GRAY_6 = Color("#8F8FA2")
|
47
|
+
GRAY_5 = Color("#7A7B8E")
|
48
|
+
GRAY_4 = Color("#696979")
|
49
|
+
GRAY_3 = Color("#515162")
|
50
|
+
GRAY_2 = Color("#3A3A47")
|
51
|
+
GRAY_1 = Color("#24252E")
|
52
|
+
GRAY_0 = Color("#1F2028")
|
53
|
+
GRAY = GRAY_4
|
54
|
+
|
55
|
+
ORANGE_9 = Color("#FFF3EB")
|
56
|
+
ORANGE_8 = Color("#FEDEC8")
|
57
|
+
ORANGE_7 = Color("#FEC195")
|
58
|
+
ORANGE_6 = Color("#FEA362")
|
59
|
+
ORANGE_5 = Color("#F38A3F")
|
60
|
+
ORANGE_4 = Color("#E56910")
|
61
|
+
ORANGE_3 = Color("#C25100")
|
62
|
+
ORANGE_2 = Color("#A54800")
|
63
|
+
ORANGE_1 = Color("#702E00")
|
64
|
+
ORANGE_0 = Color("#421A00")
|
65
|
+
ORANGE = ORANGE_4
|
66
|
+
|
67
|
+
PURPLE_9 = Color("#F3F0FF")
|
68
|
+
PURPLE_8 = Color("#DFD8FD")
|
69
|
+
PURPLE_7 = Color("#B8ACF6")
|
70
|
+
PURPLE_6 = Color("#9F8FEF")
|
71
|
+
PURPLE_5 = Color("#8F7EE7")
|
72
|
+
PURPLE_4 = Color("#8270DB")
|
73
|
+
PURPLE_3 = Color("#6E5DC6")
|
74
|
+
PURPLE_2 = Color("#5E4DB2")
|
75
|
+
PURPLE_1 = Color("#352C63")
|
76
|
+
PURPLE_0 = Color("#2B273F")
|
77
|
+
PURPLE = PURPLE_4
|
78
|
+
|
79
|
+
TURQUOISE_9 = Color("#DBF6F2")
|
80
|
+
TURQUOISE_8 = Color("#9BE1D8")
|
81
|
+
TURQUOISE_7 = Color("#50BBAF")
|
82
|
+
TURQUOISE_6 = Color("#36A094")
|
83
|
+
TURQUOISE_5 = Color("#1E8B7F")
|
84
|
+
TURQUOISE_4 = Color("#02786D")
|
85
|
+
TURQUOISE_3 = Color("#005E55")
|
86
|
+
TURQUOISE_2 = Color("#00443D")
|
87
|
+
TURQUOISE_1 = Color("#002B26")
|
88
|
+
TURQUOISE_0 = Color("#002420")
|
89
|
+
TURQUOISE = TURQUOISE_4
|
90
|
+
|
91
|
+
YELLOW_9 = Color("#FFF0D6")
|
92
|
+
YELLOW_8 = Color("#FFE2AF")
|
93
|
+
YELLOW_7 = Color("#FFD387")
|
94
|
+
YELLOW_6 = Color("#FFC460")
|
95
|
+
YELLOW_5 = Color("#FFB432")
|
96
|
+
YELLOW_4 = Color("#E89403")
|
97
|
+
YELLOW_3 = Color("#B87400")
|
98
|
+
YELLOW_2 = Color("#8F5A00")
|
99
|
+
YELLOW_1 = Color("#664100")
|
100
|
+
YELLOW_0 = Color("#3D2700")
|
101
|
+
YELLOW = YELLOW_4
|
102
|
+
|
103
|
+
PINK_9 = Color("#FEECF1")
|
104
|
+
PINK_8 = Color("#FBC7D5")
|
105
|
+
PINK_7 = Color("#F888AE")
|
106
|
+
PINK_6 = Color("#F65495")
|
107
|
+
PINK_5 = Color("#E62881")
|
108
|
+
PINK_4 = Color("#C8206F")
|
109
|
+
PINK_3 = Color("#9D1756")
|
110
|
+
PINK_2 = Color("#74103E")
|
111
|
+
PINK_1 = Color("#4E0627")
|
112
|
+
PINK_0 = Color("#2E0116")
|
113
|
+
PINK = PINK_4
|
114
|
+
|
115
|
+
TEAL_9 = Color("#E7F9FF")
|
116
|
+
TEAL_8 = Color("#C6EDFB")
|
117
|
+
TEAL_7 = Color("#9DD9EE")
|
118
|
+
TEAL_6 = Color("#6CC3E0")
|
119
|
+
TEAL_5 = Color("#42B2D7")
|
120
|
+
TEAL_4 = Color("#2898BD")
|
121
|
+
TEAL_3 = Color("#227D9B")
|
122
|
+
TEAL_2 = Color("#206A83")
|
123
|
+
TEAL_1 = Color("#164555")
|
124
|
+
TEAL_0 = Color("#1E3137")
|
125
125
|
TEAL = TEAL_4
|
@@ -1,2 +1,2 @@
|
|
1
|
-
from .arcball_camera_style import ArcballCameraInteractorStyle
|
2
|
-
from .box_selection_style import BoxSelectionInteractorStyle
|
1
|
+
from .arcball_camera_style import ArcballCameraInteractorStyle
|
2
|
+
from .box_selection_style import BoxSelectionInteractorStyle
|