kerykeion 5.0.0b2__py3-none-any.whl → 5.0.0b5__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.
Potentially problematic release.
This version of kerykeion might be problematic. Click here for more details.
- kerykeion/__init__.py +3 -2
- kerykeion/aspects/aspects_factory.py +60 -21
- kerykeion/aspects/aspects_utils.py +1 -1
- kerykeion/backword.py +111 -18
- kerykeion/chart_data_factory.py +72 -7
- kerykeion/charts/chart_drawer.py +524 -203
- kerykeion/charts/charts_utils.py +416 -253
- kerykeion/charts/templates/aspect_grid_only.xml +269 -312
- kerykeion/charts/templates/chart.xml +248 -304
- kerykeion/charts/templates/wheel_only.xml +271 -312
- kerykeion/charts/themes/black-and-white.css +148 -0
- kerykeion/kr_types/__init__.py +70 -0
- kerykeion/kr_types/chart_template_model.py +20 -0
- kerykeion/kr_types/kerykeion_exception.py +20 -0
- kerykeion/kr_types/kr_literals.py +20 -0
- kerykeion/kr_types/kr_models.py +20 -0
- kerykeion/kr_types/settings_models.py +20 -0
- kerykeion/relationship_score_factory.py +12 -2
- kerykeion/schemas/__init__.py +7 -0
- kerykeion/schemas/kr_literals.py +12 -1
- kerykeion/settings/__init__.py +16 -2
- kerykeion/settings/chart_defaults.py +444 -0
- kerykeion/settings/config_constants.py +0 -5
- kerykeion/settings/kerykeion_settings.py +31 -74
- kerykeion/settings/translation_strings.py +1479 -0
- kerykeion/settings/translations.py +74 -0
- kerykeion/transits_time_range_factory.py +10 -1
- {kerykeion-5.0.0b2.dist-info → kerykeion-5.0.0b5.dist-info}/METADATA +333 -207
- {kerykeion-5.0.0b2.dist-info → kerykeion-5.0.0b5.dist-info}/RECORD +31 -26
- kerykeion/settings/kr.config.json +0 -1474
- kerykeion/settings/legacy/__init__.py +0 -0
- kerykeion/settings/legacy/legacy_celestial_points_settings.py +0 -299
- kerykeion/settings/legacy/legacy_chart_aspects_settings.py +0 -71
- kerykeion/settings/legacy/legacy_color_settings.py +0 -42
- {kerykeion-5.0.0b2.dist-info → kerykeion-5.0.0b5.dist-info}/WHEEL +0 -0
- {kerykeion-5.0.0b2.dist-info → kerykeion-5.0.0b5.dist-info}/licenses/LICENSE +0 -0
|
File without changes
|
|
@@ -1,299 +0,0 @@
|
|
|
1
|
-
"""
|
|
2
|
-
This is a legacy settings file, do not change it!
|
|
3
|
-
"""
|
|
4
|
-
DEFAULT_CELESTIAL_POINTS_SETTINGS = [
|
|
5
|
-
{
|
|
6
|
-
"id": 0,
|
|
7
|
-
"name": "Sun",
|
|
8
|
-
"color": "var(--kerykeion-chart-color-sun)",
|
|
9
|
-
"element_points": 40,
|
|
10
|
-
"label": "Sun"
|
|
11
|
-
},
|
|
12
|
-
{
|
|
13
|
-
"id": 1,
|
|
14
|
-
"name": "Moon",
|
|
15
|
-
"color": "var(--kerykeion-chart-color-moon)",
|
|
16
|
-
"element_points": 40,
|
|
17
|
-
"label": "Moon"
|
|
18
|
-
},
|
|
19
|
-
{
|
|
20
|
-
"id": 2,
|
|
21
|
-
"name": "Mercury",
|
|
22
|
-
"color": "var(--kerykeion-chart-color-mercury)",
|
|
23
|
-
"element_points": 15,
|
|
24
|
-
"label": "Mercury"
|
|
25
|
-
},
|
|
26
|
-
{
|
|
27
|
-
"id": 3,
|
|
28
|
-
"name": "Venus",
|
|
29
|
-
"color": "var(--kerykeion-chart-color-venus)",
|
|
30
|
-
"element_points": 15,
|
|
31
|
-
"label": "Venus"
|
|
32
|
-
},
|
|
33
|
-
{
|
|
34
|
-
"id": 4,
|
|
35
|
-
"name": "Mars",
|
|
36
|
-
"color": "var(--kerykeion-chart-color-mars)",
|
|
37
|
-
"element_points": 15,
|
|
38
|
-
"label": "Mars"
|
|
39
|
-
},
|
|
40
|
-
{
|
|
41
|
-
"id": 5,
|
|
42
|
-
"name": "Jupiter",
|
|
43
|
-
"color": "var(--kerykeion-chart-color-jupiter)",
|
|
44
|
-
"element_points": 10,
|
|
45
|
-
"label": "Jupiter"
|
|
46
|
-
},
|
|
47
|
-
{
|
|
48
|
-
"id": 6,
|
|
49
|
-
"name": "Saturn",
|
|
50
|
-
"color": "var(--kerykeion-chart-color-saturn)",
|
|
51
|
-
"element_points": 10,
|
|
52
|
-
"label": "Saturn"
|
|
53
|
-
},
|
|
54
|
-
{
|
|
55
|
-
"id": 7,
|
|
56
|
-
"name": "Uranus",
|
|
57
|
-
"color": "var(--kerykeion-chart-color-uranus)",
|
|
58
|
-
"element_points": 10,
|
|
59
|
-
"label": "Uranus"
|
|
60
|
-
},
|
|
61
|
-
{
|
|
62
|
-
"id": 8,
|
|
63
|
-
"name": "Neptune",
|
|
64
|
-
"color": "var(--kerykeion-chart-color-neptune)",
|
|
65
|
-
"element_points": 10,
|
|
66
|
-
"label": "Neptune"
|
|
67
|
-
},
|
|
68
|
-
{
|
|
69
|
-
"id": 9,
|
|
70
|
-
"name": "Pluto",
|
|
71
|
-
"color": "var(--kerykeion-chart-color-pluto)",
|
|
72
|
-
"element_points": 10,
|
|
73
|
-
"label": "Pluto"
|
|
74
|
-
},
|
|
75
|
-
{
|
|
76
|
-
"id": 10,
|
|
77
|
-
"name": "Mean_North_Lunar_Node",
|
|
78
|
-
"color": "var(--kerykeion-chart-color-mean-node)",
|
|
79
|
-
"element_points": 0,
|
|
80
|
-
"label": "Mean_North_Lunar_Node"
|
|
81
|
-
},
|
|
82
|
-
{
|
|
83
|
-
"id": 11,
|
|
84
|
-
"name": "True_North_Lunar_Node",
|
|
85
|
-
"color": "var(--kerykeion-chart-color-true-node)",
|
|
86
|
-
"element_points": 0,
|
|
87
|
-
"label": "True_North_Lunar_Node"
|
|
88
|
-
},
|
|
89
|
-
{
|
|
90
|
-
"id": 12,
|
|
91
|
-
"name": "Chiron",
|
|
92
|
-
"color": "var(--kerykeion-chart-color-chiron)",
|
|
93
|
-
"element_points": 0,
|
|
94
|
-
"label": "Chiron"
|
|
95
|
-
},
|
|
96
|
-
{
|
|
97
|
-
"id": 13,
|
|
98
|
-
"name": "Ascendant",
|
|
99
|
-
"color": "var(--kerykeion-chart-color-first-house)",
|
|
100
|
-
"element_points": 40,
|
|
101
|
-
"label": "Asc"
|
|
102
|
-
},
|
|
103
|
-
{
|
|
104
|
-
"id": 14,
|
|
105
|
-
"name": "Medium_Coeli",
|
|
106
|
-
"color": "var(--kerykeion-chart-color-tenth-house)",
|
|
107
|
-
"element_points": 20,
|
|
108
|
-
"label": "Mc"
|
|
109
|
-
},
|
|
110
|
-
{
|
|
111
|
-
"id": 15,
|
|
112
|
-
"name": "Descendant",
|
|
113
|
-
"color": "var(--kerykeion-chart-color-seventh-house)",
|
|
114
|
-
"element_points": 0,
|
|
115
|
-
"label": "Dsc"
|
|
116
|
-
},
|
|
117
|
-
{
|
|
118
|
-
"id": 16,
|
|
119
|
-
"name": "Imum_Coeli",
|
|
120
|
-
"color": "var(--kerykeion-chart-color-fourth-house)",
|
|
121
|
-
"element_points": 0,
|
|
122
|
-
"label": "Ic"
|
|
123
|
-
},
|
|
124
|
-
{
|
|
125
|
-
"id": 17,
|
|
126
|
-
"name": "Mean_Lilith",
|
|
127
|
-
"color": "var(--kerykeion-chart-color-mean-lilith)",
|
|
128
|
-
"element_points": 0,
|
|
129
|
-
"label": "Mean_Lilith"
|
|
130
|
-
},
|
|
131
|
-
{
|
|
132
|
-
"id": 18,
|
|
133
|
-
"name": "Mean_South_Lunar_Node",
|
|
134
|
-
"color": "var(--kerykeion-chart-color-mean-node)",
|
|
135
|
-
"element_points": 0,
|
|
136
|
-
"label": "Mean_South_Lunar_Node"
|
|
137
|
-
},
|
|
138
|
-
{
|
|
139
|
-
"id": 19,
|
|
140
|
-
"name": "True_South_Lunar_Node",
|
|
141
|
-
"color": "var(--kerykeion-chart-color-true-node)",
|
|
142
|
-
"element_points": 0,
|
|
143
|
-
"label": "True_South_Lunar_Node"
|
|
144
|
-
},
|
|
145
|
-
{
|
|
146
|
-
"id": 20,
|
|
147
|
-
"name": "True_Lilith",
|
|
148
|
-
"color": "var(--kerykeion-chart-color-mean-lilith)",
|
|
149
|
-
"element_points": 0,
|
|
150
|
-
"label": "True_Lilith"
|
|
151
|
-
},
|
|
152
|
-
{
|
|
153
|
-
"id": 21,
|
|
154
|
-
"name": "Earth",
|
|
155
|
-
"color": "var(--kerykeion-chart-color-earth)",
|
|
156
|
-
"element_points": 0,
|
|
157
|
-
"label": "Earth"
|
|
158
|
-
},
|
|
159
|
-
{
|
|
160
|
-
"id": 22,
|
|
161
|
-
"name": "Pholus",
|
|
162
|
-
"color": "var(--kerykeion-chart-color-pholus)",
|
|
163
|
-
"element_points": 0,
|
|
164
|
-
"label": "Pholus"
|
|
165
|
-
},
|
|
166
|
-
{
|
|
167
|
-
"id": 23,
|
|
168
|
-
"name": "Ceres",
|
|
169
|
-
"color": "var(--kerykeion-chart-color-ceres)",
|
|
170
|
-
"element_points": 0,
|
|
171
|
-
"label": "Ceres"
|
|
172
|
-
},
|
|
173
|
-
{
|
|
174
|
-
"id": 24,
|
|
175
|
-
"name": "Pallas",
|
|
176
|
-
"color": "var(--kerykeion-chart-color-pallas)",
|
|
177
|
-
"element_points": 0,
|
|
178
|
-
"label": "Pallas"
|
|
179
|
-
},
|
|
180
|
-
{
|
|
181
|
-
"id": 25,
|
|
182
|
-
"name": "Juno",
|
|
183
|
-
"color": "var(--kerykeion-chart-color-juno)",
|
|
184
|
-
"element_points": 0,
|
|
185
|
-
"label": "Juno"
|
|
186
|
-
},
|
|
187
|
-
{
|
|
188
|
-
"id": 26,
|
|
189
|
-
"name": "Vesta",
|
|
190
|
-
"color": "var(--kerykeion-chart-color-vesta)",
|
|
191
|
-
"element_points": 0,
|
|
192
|
-
"label": "Vesta"
|
|
193
|
-
},
|
|
194
|
-
{
|
|
195
|
-
"id": 27,
|
|
196
|
-
"name": "Eris",
|
|
197
|
-
"color": "var(--kerykeion-chart-color-eris)",
|
|
198
|
-
"element_points": 0,
|
|
199
|
-
"label": "Eris"
|
|
200
|
-
},
|
|
201
|
-
{
|
|
202
|
-
"id": 28,
|
|
203
|
-
"name": "Sedna",
|
|
204
|
-
"color": "var(--kerykeion-chart-color-sedna)",
|
|
205
|
-
"element_points": 0,
|
|
206
|
-
"label": "Sedna"
|
|
207
|
-
},
|
|
208
|
-
{
|
|
209
|
-
"id": 29,
|
|
210
|
-
"name": "Haumea",
|
|
211
|
-
"color": "var(--kerykeion-chart-color-haumea)",
|
|
212
|
-
"element_points": 0,
|
|
213
|
-
"label": "Haumea"
|
|
214
|
-
},
|
|
215
|
-
{
|
|
216
|
-
"id": 30,
|
|
217
|
-
"name": "Makemake",
|
|
218
|
-
"color": "var(--kerykeion-chart-color-makemake)",
|
|
219
|
-
"element_points": 0,
|
|
220
|
-
"label": "Makemake"
|
|
221
|
-
},
|
|
222
|
-
{
|
|
223
|
-
"id": 31,
|
|
224
|
-
"name": "Ixion",
|
|
225
|
-
"color": "var(--kerykeion-chart-color-ixion)",
|
|
226
|
-
"element_points": 0,
|
|
227
|
-
"label": "Ixion"
|
|
228
|
-
},
|
|
229
|
-
{
|
|
230
|
-
"id": 32,
|
|
231
|
-
"name": "Orcus",
|
|
232
|
-
"color": "var(--kerykeion-chart-color-orcus)",
|
|
233
|
-
"element_points": 0,
|
|
234
|
-
"label": "Orcus"
|
|
235
|
-
},
|
|
236
|
-
{
|
|
237
|
-
"id": 33,
|
|
238
|
-
"name": "Quaoar",
|
|
239
|
-
"color": "var(--kerykeion-chart-color-quaoar)",
|
|
240
|
-
"element_points": 0,
|
|
241
|
-
"label": "Quaoar"
|
|
242
|
-
},
|
|
243
|
-
{
|
|
244
|
-
"id": 34,
|
|
245
|
-
"name": "Regulus",
|
|
246
|
-
"color": "var(--kerykeion-chart-color-regulus)",
|
|
247
|
-
"element_points": 0,
|
|
248
|
-
"label": "Regulus"
|
|
249
|
-
},
|
|
250
|
-
{
|
|
251
|
-
"id": 35,
|
|
252
|
-
"name": "Spica",
|
|
253
|
-
"color": "var(--kerykeion-chart-color-spica)",
|
|
254
|
-
"element_points": 0,
|
|
255
|
-
"label": "Spica"
|
|
256
|
-
},
|
|
257
|
-
{
|
|
258
|
-
"id": 36,
|
|
259
|
-
"name": "Pars_Fortunae",
|
|
260
|
-
"color": "var(--kerykeion-chart-color-pars-fortunae)",
|
|
261
|
-
"element_points": 5,
|
|
262
|
-
"label": "Fortune"
|
|
263
|
-
},
|
|
264
|
-
{
|
|
265
|
-
"id": 37,
|
|
266
|
-
"name": "Pars_Spiritus",
|
|
267
|
-
"color": "var(--kerykeion-chart-color-pars-spiritus)",
|
|
268
|
-
"element_points": 0,
|
|
269
|
-
"label": "Spirit"
|
|
270
|
-
},
|
|
271
|
-
{
|
|
272
|
-
"id": 38,
|
|
273
|
-
"name": "Pars_Amoris",
|
|
274
|
-
"color": "var(--kerykeion-chart-color-pars-amoris)",
|
|
275
|
-
"element_points": 0,
|
|
276
|
-
"label": "Love"
|
|
277
|
-
},
|
|
278
|
-
{
|
|
279
|
-
"id": 39,
|
|
280
|
-
"name": "Pars_Fidei",
|
|
281
|
-
"color": "var(--kerykeion-chart-color-pars-fidei)",
|
|
282
|
-
"element_points": 0,
|
|
283
|
-
"label": "Faith"
|
|
284
|
-
},
|
|
285
|
-
{
|
|
286
|
-
"id": 40,
|
|
287
|
-
"name": "Vertex",
|
|
288
|
-
"color": "var(--kerykeion-chart-color-vertex)",
|
|
289
|
-
"element_points": 0,
|
|
290
|
-
"label": "Vertex"
|
|
291
|
-
},
|
|
292
|
-
{
|
|
293
|
-
"id": 41,
|
|
294
|
-
"name": "Anti_Vertex",
|
|
295
|
-
"color": "var(--kerykeion-chart-color-anti-vertex)",
|
|
296
|
-
"element_points": 0,
|
|
297
|
-
"label": "Anti_Vertex"
|
|
298
|
-
}
|
|
299
|
-
]
|
|
@@ -1,71 +0,0 @@
|
|
|
1
|
-
"""
|
|
2
|
-
This is a legacy settings file, do not change it!
|
|
3
|
-
"""
|
|
4
|
-
DEFAULT_CHART_ASPECTS_SETTINGS = [
|
|
5
|
-
{
|
|
6
|
-
"degree": 0,
|
|
7
|
-
"name": "conjunction",
|
|
8
|
-
"is_major": True,
|
|
9
|
-
"color": "var(--kerykeion-chart-color-conjunction)"
|
|
10
|
-
},
|
|
11
|
-
{
|
|
12
|
-
"degree": 30,
|
|
13
|
-
"name": "semi-sextile",
|
|
14
|
-
"is_major": False,
|
|
15
|
-
"color": "var(--kerykeion-chart-color-semi-sextile)"
|
|
16
|
-
},
|
|
17
|
-
{
|
|
18
|
-
"degree": 45,
|
|
19
|
-
"name": "semi-square",
|
|
20
|
-
"is_major": False,
|
|
21
|
-
"color": "var(--kerykeion-chart-color-semi-square)"
|
|
22
|
-
},
|
|
23
|
-
{
|
|
24
|
-
"degree": 60,
|
|
25
|
-
"name": "sextile",
|
|
26
|
-
"is_major": True,
|
|
27
|
-
"color": "var(--kerykeion-chart-color-sextile)"
|
|
28
|
-
},
|
|
29
|
-
{
|
|
30
|
-
"degree": 72,
|
|
31
|
-
"name": "quintile",
|
|
32
|
-
"is_major": False,
|
|
33
|
-
"color": "var(--kerykeion-chart-color-quintile)"
|
|
34
|
-
},
|
|
35
|
-
{
|
|
36
|
-
"degree": 90,
|
|
37
|
-
"name": "square",
|
|
38
|
-
"is_major": True,
|
|
39
|
-
"color": "var(--kerykeion-chart-color-square)"
|
|
40
|
-
},
|
|
41
|
-
{
|
|
42
|
-
"degree": 120,
|
|
43
|
-
"name": "trine",
|
|
44
|
-
"is_major": True,
|
|
45
|
-
"color": "var(--kerykeion-chart-color-trine)"
|
|
46
|
-
},
|
|
47
|
-
{
|
|
48
|
-
"degree": 135,
|
|
49
|
-
"name": "sesquiquadrate",
|
|
50
|
-
"is_major": False,
|
|
51
|
-
"color": "var(--kerykeion-chart-color-sesquiquadrate)"
|
|
52
|
-
},
|
|
53
|
-
{
|
|
54
|
-
"degree": 144,
|
|
55
|
-
"name": "biquintile",
|
|
56
|
-
"is_major": False,
|
|
57
|
-
"color": "var(--kerykeion-chart-color-biquintile)"
|
|
58
|
-
},
|
|
59
|
-
{
|
|
60
|
-
"degree": 150,
|
|
61
|
-
"name": "quincunx",
|
|
62
|
-
"is_major": False,
|
|
63
|
-
"color": "var(--kerykeion-chart-color-quincunx)"
|
|
64
|
-
},
|
|
65
|
-
{
|
|
66
|
-
"degree": 180,
|
|
67
|
-
"name": "opposition",
|
|
68
|
-
"is_major": True,
|
|
69
|
-
"color": "var(--kerykeion-chart-color-opposition)"
|
|
70
|
-
}
|
|
71
|
-
]
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
"""
|
|
2
|
-
This is a legacy settings file, do not change it!
|
|
3
|
-
"""
|
|
4
|
-
DEFAULT_CHART_COLORS = {
|
|
5
|
-
"paper_0": "var(--kerykeion-chart-color-paper-0)",
|
|
6
|
-
"paper_1": "var(--kerykeion-chart-color-paper-1)",
|
|
7
|
-
"zodiac_bg_0": "var(--kerykeion-chart-color-zodiac-bg-0)",
|
|
8
|
-
"zodiac_bg_1": "var(--kerykeion-chart-color-zodiac-bg-1)",
|
|
9
|
-
"zodiac_bg_2": "var(--kerykeion-chart-color-zodiac-bg-2)",
|
|
10
|
-
"zodiac_bg_3": "var(--kerykeion-chart-color-zodiac-bg-3)",
|
|
11
|
-
"zodiac_bg_4": "var(--kerykeion-chart-color-zodiac-bg-4)",
|
|
12
|
-
"zodiac_bg_5": "var(--kerykeion-chart-color-zodiac-bg-5)",
|
|
13
|
-
"zodiac_bg_6": "var(--kerykeion-chart-color-zodiac-bg-6)",
|
|
14
|
-
"zodiac_bg_7": "var(--kerykeion-chart-color-zodiac-bg-7)",
|
|
15
|
-
"zodiac_bg_8": "var(--kerykeion-chart-color-zodiac-bg-8)",
|
|
16
|
-
"zodiac_bg_9": "var(--kerykeion-chart-color-zodiac-bg-9)",
|
|
17
|
-
"zodiac_bg_10": "var(--kerykeion-chart-color-zodiac-bg-10)",
|
|
18
|
-
"zodiac_bg_11": "var(--kerykeion-chart-color-zodiac-bg-11)",
|
|
19
|
-
"zodiac_icon_0": "var(--kerykeion-chart-color-zodiac-icon-0)",
|
|
20
|
-
"zodiac_icon_1": "var(--kerykeion-chart-color-zodiac-icon-1)",
|
|
21
|
-
"zodiac_icon_2": "var(--kerykeion-chart-color-zodiac-icon-2)",
|
|
22
|
-
"zodiac_icon_3": "var(--kerykeion-chart-color-zodiac-icon-3)",
|
|
23
|
-
"zodiac_icon_4": "var(--kerykeion-chart-color-zodiac-icon-4)",
|
|
24
|
-
"zodiac_icon_5": "var(--kerykeion-chart-color-zodiac-icon-5)",
|
|
25
|
-
"zodiac_icon_6": "var(--kerykeion-chart-color-zodiac-icon-6)",
|
|
26
|
-
"zodiac_icon_7": "var(--kerykeion-chart-color-zodiac-icon-7)",
|
|
27
|
-
"zodiac_icon_8": "var(--kerykeion-chart-color-zodiac-icon-8)",
|
|
28
|
-
"zodiac_icon_9": "var(--kerykeion-chart-color-zodiac-icon-9)",
|
|
29
|
-
"zodiac_icon_10": "var(--kerykeion-chart-color-zodiac-icon-10)",
|
|
30
|
-
"zodiac_icon_11": "var(--kerykeion-chart-color-zodiac-icon-11)",
|
|
31
|
-
"zodiac_radix_ring_0": "var(--kerykeion-chart-color-zodiac-radix-ring-0)",
|
|
32
|
-
"zodiac_radix_ring_1": "var(--kerykeion-chart-color-zodiac-radix-ring-1)",
|
|
33
|
-
"zodiac_radix_ring_2": "var(--kerykeion-chart-color-zodiac-radix-ring-2)",
|
|
34
|
-
"zodiac_transit_ring_0": "var(--kerykeion-chart-color-zodiac-transit-ring-0)",
|
|
35
|
-
"zodiac_transit_ring_1": "var(--kerykeion-chart-color-zodiac-transit-ring-1)",
|
|
36
|
-
"zodiac_transit_ring_2": "var(--kerykeion-chart-color-zodiac-transit-ring-2)",
|
|
37
|
-
"zodiac_transit_ring_3": "var(--kerykeion-chart-color-zodiac-transit-ring-3)",
|
|
38
|
-
"houses_radix_line": "var(--kerykeion-chart-color-houses-radix-line)",
|
|
39
|
-
"houses_transit_line": "var(--kerykeion-chart-color-houses-transit-line)",
|
|
40
|
-
"lunar_phase_0": "var(--kerykeion-chart-color-lunar-phase-0)",
|
|
41
|
-
"lunar_phase_1": "var(--kerykeion-chart-color-lunar-phase-1)",
|
|
42
|
-
}
|
|
File without changes
|
|
File without changes
|