like2d 2.11.1 โ†’ 2.12.1

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.
Files changed (62) hide show
  1. package/README.md +33 -5
  2. package/assets/logo-banner-optimized.svg +15 -27
  3. package/assets/logo-banner.svg +76 -132
  4. package/assets/logo-icon.svg +33 -23
  5. package/assets/logo.svg +78 -123
  6. package/dist/engine.d.ts +2 -0
  7. package/dist/engine.js +34 -12
  8. package/dist/events.d.ts +0 -3
  9. package/dist/graphics/canvas.d.ts +15 -7
  10. package/dist/graphics/canvas.js +64 -68
  11. package/dist/graphics/graphics.d.ts +55 -40
  12. package/dist/graphics/graphics.js +100 -72
  13. package/dist/graphics/index.d.ts +1 -1
  14. package/dist/index.d.ts +1 -1
  15. package/dist/index.js +0 -2
  16. package/dist/input/controllerdb.json +1 -1
  17. package/dist/input/gamepad-mapping.js +2 -1
  18. package/dist/input/gamepad.d.ts +1 -1
  19. package/dist/input/gamepad.js +1 -1
  20. package/dist/input/input.d.ts +2 -2
  21. package/dist/input/input.js +2 -2
  22. package/dist/input/mouse.d.ts +7 -7
  23. package/dist/input/mouse.js +7 -7
  24. package/dist/like.d.ts +48 -10
  25. package/dist/math/rect.d.ts +1 -0
  26. package/dist/math/rect.js +1 -0
  27. package/dist/math/vector2.d.ts +4 -1
  28. package/dist/math/vector2.js +3 -0
  29. package/dist/prefab-scenes/mapGamepad.d.ts +2 -3
  30. package/dist/prefab-scenes/mapGamepad.js +17 -23
  31. package/dist/prefab-scenes/startScreen.d.ts +2 -3
  32. package/dist/prefab-scenes/startScreen.js +41 -12
  33. package/dist/scene.d.ts +49 -7
  34. package/package.json +3 -2
  35. package/dist/__benchmarks__/vector2.bench.d.ts +0 -2
  36. package/dist/__benchmarks__/vector2.bench.d.ts.map +0 -1
  37. package/dist/__benchmarks__/vector2.bench.js +0 -74
  38. package/dist/audio/audio.d.ts.map +0 -1
  39. package/dist/audio/index.d.ts.map +0 -1
  40. package/dist/engine.d.ts.map +0 -1
  41. package/dist/events.d.ts.map +0 -1
  42. package/dist/graphics/canvas.d.ts.map +0 -1
  43. package/dist/graphics/graphics.d.ts.map +0 -1
  44. package/dist/graphics/image.d.ts.map +0 -1
  45. package/dist/graphics/index.d.ts.map +0 -1
  46. package/dist/index.d.ts.map +0 -1
  47. package/dist/input/gamepad-mapping.d.ts.map +0 -1
  48. package/dist/input/gamepad.d.ts.map +0 -1
  49. package/dist/input/index.d.ts.map +0 -1
  50. package/dist/input/input.d.ts.map +0 -1
  51. package/dist/input/keyboard.d.ts.map +0 -1
  52. package/dist/input/mouse.d.ts.map +0 -1
  53. package/dist/like.d.ts.map +0 -1
  54. package/dist/math/index.d.ts.map +0 -1
  55. package/dist/math/rect.d.ts.map +0 -1
  56. package/dist/math/vector2.d.ts.map +0 -1
  57. package/dist/prefab-scenes/index.d.ts.map +0 -1
  58. package/dist/prefab-scenes/mapGamepad.d.ts.map +0 -1
  59. package/dist/prefab-scenes/startScreen.d.ts.map +0 -1
  60. package/dist/scene.d.ts.map +0 -1
  61. package/dist/timer/index.d.ts.map +0 -1
  62. package/dist/timer/timer.d.ts.map +0 -1
package/README.md CHANGED
@@ -51,7 +51,7 @@ LIKE is a cozy way to make 2d games for browser.
51
51
  - **๐Ÿ‘ŸConsistent APIs:** Colors 0-1, not 0-255. Seconds, not milliseconds. Physical gamepad buttons, not "A" or "B".
52
52
  - **๐Ÿ‘‰ Actions System:** An input layer maps inputs to actions, which fire usable events.
53
53
  - **๐ŸŒŽ Global control:** Choose how to handle LIKE events, and manage resources with centralized trackers. LIKE is a great foundation for your own engine.
54
- - **๐Ÿฆ Light and Elegant:** Zero dependencies and less than 5000 lines of code -- focused entirely on what matters.
54
+ - **๐Ÿฆ Light and Elegant:** Zero dependencies and less than 5000 lines of code. Size less than 100KiB compressed.
55
55
 
56
56
  ## Installation
57
57
 
@@ -70,18 +70,46 @@ To try Like2D quickly, use this starter with
70
70
  hot reloading and a basic webpage.
71
71
 
72
72
  ```bash
73
- npx degit 44100hertz/Like2D/examples/starter my-game
73
+ npx degit likeOrg/Like2D/examples/starter my-game
74
74
  ```
75
75
 
76
76
  ## Usage Example
77
77
 
78
+ HTML that puts LIKE in fullscreen.
79
+ ```html
80
+ <!DOCTYPE html>
81
+ <html>
82
+ <head>
83
+ <meta name="viewport" content="width=device-width,initial-scale=1">
84
+ <style>
85
+ html {
86
+ margin: 0;
87
+ height: 100%;
88
+ overflow: hidden;
89
+ }
90
+ body {
91
+ margin: 0;
92
+ height: 100%;
93
+ display: grid;
94
+ place-items: center;
95
+ background: black;
96
+ }
97
+ </style>
98
+ </head>
99
+ <body>
100
+ <script type="module" src="./src/main.ts"></script>
101
+ </body>
102
+ </html>
103
+ ```
104
+
105
+ TypeScript:
78
106
  ```typescript
79
107
  import { createLike } from "like2d";
80
108
 
81
109
  const like = createLike(document.body);
82
110
 
83
111
  like.load = () => {
84
- like.setMode([800, 600]);
112
+ like.canvas.setMode([800, 600]);
85
113
  like.input.setAction("jump", ["Space", "BBottom"]);
86
114
  };
87
115
 
@@ -116,9 +144,9 @@ LIKE's API is not the same as LOVE, but similar in spirit. Notable differences:
116
144
 
117
145
  [JSR](https://jsr.io/@like2d/like)
118
146
 
119
- [GitHub](https://github.com/44100hertz/Like2D)
147
+ [GitHub](https://github.com/likeOrg/Like2D)
120
148
 
121
- [Full Documentation](https://44100hertz.github.io/Like2D/api/documents/README.html)
149
+ [Full Documentation](https://likeorg.github.io/Like2D/api/documents/README.html)
122
150
 
123
151
  ## License
124
152
 
@@ -1,32 +1,20 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
2
  <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
- <svg width="300mm" height="105mm" version="1.1" viewBox="0 0 300 105" xmlns="http://www.w3.org/2000/svg">
4
- <rect x="10" y="11.23" width="280" height="83.544" fill="#e48080" stroke="#000" stroke-linejoin="round" stroke-width="2"/>
5
- <g fill="none" stroke="#000" stroke-linejoin="round">
6
- <rect x="97.484" y="11.23" width="52.516" height="46.237"/>
7
- <rect x="150" y="11.23" width="35.011" height="46.237"/>
8
- <rect x="185.01" y="11.23" width="52.516" height="46.237"/>
9
- <rect x="237.53" y="11.23" width="52.516" height="46.237"/>
3
+ <svg width="256mm" height="85mm" version="1.1" viewBox="0 0 256 85" xmlns="http://www.w3.org/2000/svg">
4
+ <rect x="8.4949" y="14.841" width="239.13" height="60.337" ry="14.369"/>
5
+ <path d="m49.519 2.1933-22.841 22.854-0.01193 0.01193a16.159 16.168 0 0 0 0 22.866 16.159 16.168 0 0 0 20.539 1.9189 16.159 16.168 0 0 1 0.0048 0.39055 16.159 16.168 0 0 1-16.159 16.169h36.935a16.159 16.168 0 0 1-16.159-16.169 16.159 16.168 0 0 1 0.0054-0.39055 16.159 16.168 0 0 0 20.539-1.9193 16.159 16.168 0 0 0-4.76e-4 -22.866z" fill="#ba2b2b" stroke="#ffcf42" stroke-linejoin="round" stroke-width=".5"/>
6
+ <g fill="none" stroke="#ffcf42" stroke-width=".5">
7
+ <circle transform="matrix(-.7069 .70731 -.7069 -.70731 0 0)" cx="-17.311" cy="-68.903" r="16.164"/>
8
+ <circle transform="matrix(-.7069 .70731 -.7069 -.70731 0 0)" cx="-1.147" cy="-52.739" r="16.164"/>
9
+ <ellipse cx="67.986" cy="50.234" rx="16.159" ry="16.168"/>
10
+ <ellipse cx="31.051" cy="50.234" rx="16.159" ry="16.168"/>
10
11
  </g>
11
- <g>
12
- <rect x="132.49" y="11.23" width="17.505" height="27.461"/>
13
- <rect x="150" y="29.302" width="8.7527" height="18.776"/>
14
- <rect x="176.26" y="29.302" width="8.7527" height="18.776"/>
15
- </g>
16
- <rect x="150" y="11.23" width="17.505" height="8.6845" fill="none" stroke="#000" stroke-linejoin="round"/>
17
- <rect x="167.51" y="11.23" width="17.505" height="8.6845" fill="none" stroke="#000" stroke-linejoin="round"/>
18
- <g>
19
- <path d="m237.53 38.691-17.505-9.3882 17.505-18.073z"/>
20
- <rect x="202.88" y="48.079" width="16.772" height="9.3882"/>
21
- <rect x="272.54" y="20.266" width="16.772" height="9.3882"/>
22
- <rect x="272.54" y="38.691" width="16.772" height="9.3882"/>
23
- <path d="m202.52 29.302 0.36685-18.073h17.139z"/>
24
- </g>
25
- <path d="m64.078 1.0042-33.375 33.375-0.01743 0.0174a23.612 23.612 0 0 0 0 33.392 23.612 23.612 0 0 0 30.012 2.8022 23.612 23.612 0 0 1 7e-3 0.57034 23.612 23.612 0 0 1-23.612 23.612h53.97a23.612 23.612 0 0 1-23.611-23.612 23.612 23.612 0 0 1 7e-3 -0.57034 23.612 23.612 0 0 0 30.012-2.8029 23.612 23.612 0 0 0-6.88e-4 -33.392z" fill="#80c3e4" stroke="#000" stroke-linejoin="round"/>
26
- <g fill="none" stroke="#000" stroke-width=".5">
27
- <circle transform="rotate(135)" cx="-20.988" cy="-93.243" r="23.612"/>
28
- <circle transform="rotate(135)" cx="2.6238" cy="-69.632" r="23.612"/>
29
- <circle cx="91.062" cy="71.161" r="23.612"/>
30
- <circle cx="37.093" cy="71.161" r="23.612"/>
12
+ <g fill="#ffcf42" stroke="#000" stroke-width=".5">
13
+ <path d="m89.924 21.979v36.375h28.103v-14.771h-12.029v-21.604z"/>
14
+ <path d="m127.94 24.678v7.665h5.0453v11.046h-5.0453v14.966h24.748v-14.966h-5.048v-11.046h5.048v-7.665h-12.377z"/>
15
+ <path d="m206.89 22.088v36.375h33.739v-13.179h-10.908v-5.0678h10.908v-7.109h-10.908v-5.069h10.908v-5.9504z"/>
16
+ <path d="m162.76 19.77v38.693h12.281v-5.069h11.523v5.069h12.281s1.0482-15.115-2.2012-18.768c-3.4704-3.9018-6.3723-4.5209-6.3723-4.5209l8.8848-13.087h-13.615l-6.4108 13.022-4.3423 0.03698-8e-3 -15.377z"/>
17
+ <ellipse cx="132.99" cy="16.122" rx="6.0221" ry="6.1182"/>
18
+ <ellipse cx="147.49" cy="16.122" rx="6.0221" ry="6.1182"/>
31
19
  </g>
32
20
  </svg>
@@ -2,9 +2,9 @@
2
2
  <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
3
 
4
4
  <svg
5
- width="300mm"
6
- height="105mm"
7
- viewBox="0 0 300 105"
5
+ width="256mm"
6
+ height="85mm"
7
+ viewBox="0 0 256 85"
8
8
  version="1.1"
9
9
  id="svg1"
10
10
  inkscape:version="1.4.3 (0d15f75042, 2025-12-25)"
@@ -24,9 +24,9 @@
24
24
  inkscape:deskcolor="#d1d1d1"
25
25
  inkscape:document-units="mm"
26
26
  showgrid="false"
27
- inkscape:zoom="0.86565679"
28
- inkscape:cx="542.36275"
29
- inkscape:cy="116.09682"
27
+ inkscape:zoom="0.78159829"
28
+ inkscape:cx="487.46269"
29
+ inkscape:cy="213.02503"
30
30
  inkscape:window-width="1864"
31
31
  inkscape:window-height="1163"
32
32
  inkscape:window-x="0"
@@ -55,134 +55,78 @@
55
55
  inkscape:groupmode="layer"
56
56
  id="layer1">
57
57
  <rect
58
- style="fill:#e48080;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
59
- id="rect6"
60
- width="280"
61
- height="83.543648"
62
- x="10.000002"
63
- y="11.229642" />
64
- <rect
65
- style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
66
- id="rect7"
67
- width="52.516361"
68
- height="46.237232"
69
- x="97.483658"
70
- y="11.229642" />
71
- <rect
72
- style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.999998;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
73
- id="rect7-0"
74
- width="35.010902"
75
- height="46.237232"
76
- x="150"
77
- y="11.229642" />
78
- <rect
79
- style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
80
- id="rect7-0-4"
81
- width="52.516361"
82
- height="46.237232"
83
- x="185.01091"
84
- y="11.229642" />
85
- <rect
86
- style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
87
- id="rect7-9"
88
- width="52.516361"
89
- height="46.237232"
90
- x="237.52722"
91
- y="11.229642" />
92
- <rect
93
- style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
94
- id="rect8"
95
- width="17.505455"
96
- height="27.460892"
97
- x="132.49457"
98
- y="11.229642" />
99
- <rect
100
- style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
101
- id="rect9"
102
- width="8.7527285"
103
- height="18.776356"
104
- x="150"
105
- y="29.302338" />
106
- <rect
107
- style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
108
- id="rect9-0"
109
- width="8.7527285"
110
- height="18.776356"
111
- x="176.25818"
112
- y="29.302357" />
113
- <rect
114
- style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.999998;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
115
- id="rect11"
116
- width="17.505453"
117
- height="8.6845322"
118
- x="150"
119
- y="11.229642" />
120
- <rect
121
- style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.999998;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
122
- id="rect11-4"
123
- width="17.505453"
124
- height="8.6845322"
125
- x="167.50545"
126
- y="11.229642" />
127
- <path
128
- style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.999998;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
129
- d="m 237.52727,38.690533 -17.50544,-9.388181 v 0 l 17.50544,-18.072708 z"
130
- id="path11"
131
- sodipodi:nodetypes="ccccc" />
132
- <rect
133
- style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.999998;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
134
- id="rect12-9"
135
- width="16.771759"
136
- height="9.388155"
137
- x="202.88322"
138
- y="48.07869" />
139
- <rect
140
- style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.999998;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
141
- id="rect12-9-9"
142
- width="16.771759"
143
- height="9.388155"
144
- x="272.53812"
145
- y="20.266006" />
146
- <rect
147
- style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.999998;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
148
- id="rect12-9-9-9"
149
- width="16.771759"
150
- height="9.388155"
151
- x="272.53812"
152
- y="38.69054" />
58
+ style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.999997;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
59
+ id="rect8-5"
60
+ width="239.13411"
61
+ height="60.33736"
62
+ x="8.4949369"
63
+ y="14.841445"
64
+ ry="14.368586" />
153
65
  <path
154
- style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.999998;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
155
- d="m 202.51637,29.302352 0.36685,-18.072708 h 17.13859 z"
156
- id="path12" />
157
- <path
158
- id="rect3"
159
- style="fill:#80c3e4;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
160
- d="m 64.077715,1.0041568 -33.374839,33.3748322 -0.01743,0.0174 a 23.611767,23.611767 0 0 0 0,33.392271 23.611767,23.611767 0 0 0 30.012041,2.802217 23.611767,23.611767 0 0 1 0.007,0.570339 23.611767,23.611767 0 0 1 -23.612067,23.612061 h 53.96995 a 23.611767,23.611767 0 0 1 -23.611369,-23.612061 23.611767,23.611767 0 0 1 0.007,-0.570339 23.611767,23.611767 0 0 0 30.012033,-2.802919 23.611767,23.611767 0 0 0 -6.88e-4,-33.392257 z" />
161
- <circle
162
- style="fill:none;stroke:#000000;stroke-width:0.5;stroke-dasharray:none;stroke-opacity:1"
163
- id="path1"
164
- cx="-20.988014"
165
- cy="-93.243469"
166
- r="23.611769"
167
- transform="rotate(135)" />
66
+ id="rect3-9"
67
+ style="fill:#ba2b2b;fill-opacity:1;stroke:#ffcf42;stroke-width:0.5;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
68
+ d="m 49.518518,2.1933127 -22.840652,22.8538493 -0.01193,0.01193 a 16.159129,16.168464 0 0 0 0,22.865789 16.159129,16.168464 0 0 0 20.539269,1.918855 16.159129,16.168464 0 0 1 0.0048,0.390548 A 16.159129,16.168464 0 0 1 31.05067,66.402948 H 67.986003 A 16.159129,16.168464 0 0 1 51.827137,50.23428 a 16.159129,16.168464 0 0 1 0.0054,-0.390548 16.159129,16.168464 0 0 0 20.539274,-1.919335 16.159129,16.168464 0 0 0 -4.76e-4,-22.86578 z" />
168
69
  <circle
169
- style="fill:none;stroke:#000000;stroke-width:0.5;stroke-dasharray:none;stroke-opacity:1"
170
- id="path1-8"
171
- cx="2.6237588"
172
- cy="-69.631683"
173
- r="23.611769"
174
- transform="rotate(135)" />
70
+ style="fill:none;stroke:#ffcf42;stroke-width:0.5;stroke-dasharray:none;stroke-opacity:1"
71
+ id="path1-2"
72
+ cx="-17.310766"
73
+ cy="-68.903122"
74
+ r="16.163797"
75
+ transform="matrix(-0.70690254,0.70731097,-0.70690254,-0.70731097,0,0)" />
175
76
  <circle
176
- style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-dasharray:none;stroke-opacity:1"
177
- id="path1-8-2"
178
- cx="91.062447"
179
- cy="71.161194"
180
- r="23.611767" />
181
- <circle
182
- style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-dasharray:none;stroke-opacity:1"
183
- id="path1-8-2-3"
184
- cx="37.092701"
185
- cy="71.161194"
186
- r="23.611767" />
77
+ style="fill:none;stroke:#ffcf42;stroke-width:0.5;stroke-dasharray:none;stroke-opacity:1"
78
+ id="path1-8-28"
79
+ cx="-1.1469713"
80
+ cy="-52.739307"
81
+ r="16.163797"
82
+ transform="matrix(-0.70690254,0.70731097,-0.70690254,-0.70731097,0,0)" />
83
+ <ellipse
84
+ style="fill:none;fill-opacity:1;stroke:#ffcf42;stroke-width:0.5;stroke-dasharray:none;stroke-opacity:1"
85
+ id="path1-8-2-9"
86
+ cx="67.986008"
87
+ cy="50.234245"
88
+ rx="16.159128"
89
+ ry="16.168465" />
90
+ <ellipse
91
+ style="fill:none;fill-opacity:1;stroke:#ffcf42;stroke-width:0.5;stroke-dasharray:none;stroke-opacity:1"
92
+ id="path1-8-2-3-7"
93
+ cx="31.05085"
94
+ cy="50.234245"
95
+ rx="16.159128"
96
+ ry="16.168465" />
97
+ <path
98
+ id="rect2"
99
+ style="fill:#ffcf42;fill-opacity:1;stroke:#000000;stroke-width:0.499999;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
100
+ d="M 89.923728,21.978817 V 58.354299 H 118.02688 V 43.583018 H 105.99779 V 21.978817 Z"
101
+ sodipodi:nodetypes="ccccccc" />
102
+ <path
103
+ style="fill:#ffcf42;fill-opacity:1;stroke:#000000;stroke-width:0.499999;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
104
+ d="m 127.94459,24.677958 v 7.664953 h 5.04529 v 11.045752 h -5.04529 V 58.35429 h 24.7483 V 43.388663 h -5.048 V 32.342911 h 5.048 v -7.664953 h -12.34701 -0.0298 z"
105
+ id="path7"
106
+ sodipodi:nodetypes="ccccccccccccccc" />
107
+ <path
108
+ id="rect7-9-3"
109
+ style="fill:#ffcf42;fill-opacity:1;stroke:#000000;stroke-width:0.499999;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
110
+ d="M 206.89047,22.087627 V 58.463112 H 240.629 V 45.2838 H 229.72139 V 40.215967 H 240.629 V 33.10697 H 229.72139 V 28.038005 H 240.629 v -5.950378 z"
111
+ sodipodi:nodetypes="ccccccccccccc" />
112
+ <path
113
+ id="rect5"
114
+ style="fill:#ffcf42;fill-opacity:1;stroke:#000000;stroke-width:0.499999;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
115
+ d="m 162.76418,19.770387 v 38.692731 h 12.28079 v -5.068971 h 11.52347 v 5.068971 h 12.28079 c 0,0 1.04819,-15.114917 -2.20115,-18.768104 -3.47042,-3.901752 -6.37234,-4.520882 -6.37234,-4.520882 l 8.88476,-13.086505 h -13.61518 l -6.41083,13.0224 -4.34233,0.03698 -0.008,-15.376624 z"
116
+ sodipodi:nodetypes="cccccccsccccccc" />
117
+ <ellipse
118
+ style="fill:#ffcf42;fill-opacity:1;stroke:#000000;stroke-width:0.499999;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
119
+ id="path8"
120
+ cx="132.98988"
121
+ cy="16.122232"
122
+ rx="6.0221214"
123
+ ry="6.1181746" />
124
+ <ellipse
125
+ style="fill:#ffcf42;fill-opacity:1;stroke:#000000;stroke-width:0.499999;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
126
+ id="path8-6"
127
+ cx="147.49484"
128
+ cy="16.122232"
129
+ rx="6.0221214"
130
+ ry="6.1181746" />
187
131
  </g>
188
132
  </svg>
@@ -9,13 +9,16 @@
9
9
  id="svg1"
10
10
  inkscape:version="1.4.3 (0d15f75042, 2025-12-25)"
11
11
  sodipodi:docname="logo-icon.svg"
12
+ inkscape:export-filename="logo.png"
13
+ inkscape:export-xdpi="203.2"
14
+ inkscape:export-ydpi="203.2"
12
15
  xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13
16
  xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
14
17
  xmlns="http://www.w3.org/2000/svg"
15
18
  xmlns:svg="http://www.w3.org/2000/svg">
16
19
  <sodipodi:namedview
17
20
  id="namedview1"
18
- pagecolor="#d98383"
21
+ pagecolor="#ffffff"
19
22
  bordercolor="#000000"
20
23
  borderopacity="0.25"
21
24
  inkscape:showpageshadow="2"
@@ -24,15 +27,16 @@
24
27
  inkscape:deskcolor="#d1d1d1"
25
28
  inkscape:document-units="mm"
26
29
  showgrid="false"
27
- inkscape:zoom="1.3509661"
28
- inkscape:cx="196.89613"
29
- inkscape:cy="207.62919"
30
+ inkscape:zoom="1.7263173"
31
+ inkscape:cx="202.16446"
32
+ inkscape:cy="214.03944"
30
33
  inkscape:window-width="1864"
31
34
  inkscape:window-height="1163"
32
35
  inkscape:window-x="0"
33
36
  inkscape:window-y="0"
34
37
  inkscape:window-maximized="1"
35
- inkscape:current-layer="layer1">
38
+ inkscape:current-layer="layer1"
39
+ showguides="true">
36
40
  <inkscape:grid
37
41
  id="grid1"
38
42
  units="mm"
@@ -54,35 +58,41 @@
54
58
  inkscape:label="Layer 1"
55
59
  inkscape:groupmode="layer"
56
60
  id="layer1">
61
+ <circle
62
+ style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.999999;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
63
+ id="path9"
64
+ cx="49.649231"
65
+ cy="57.549129"
66
+ r="46.83905" />
57
67
  <path
58
68
  id="rect3"
59
- style="fill:#80c3e4;fill-opacity:1;stroke:#000000;stroke-width:1.33333;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
60
- d="m 49.999985,3.0742116 -32.981179,32.9811744 -0.01723,0.0172 a 23.333265,23.333265 0 0 0 0,32.998405 23.333265,23.333265 0 0 0 29.658047,2.769165 23.333265,23.333265 0 0 1 0.007,0.563613 23.333265,23.333265 0 0 1 -23.333534,23.333556 h 53.333356 a 23.333265,23.333265 0 0 1 -23.332873,-23.333558 23.333265,23.333265 0 0 1 0.007,-0.563613 23.333265,23.333265 0 0 0 29.658039,-2.769857 23.333265,23.333265 0 0 0 -6.81e-4,-32.998393 z" />
69
+ style="fill:#ba2b2b;fill-opacity:1;stroke:#ffcf42;stroke-width:0.5;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
70
+ d="m 50.096665,3.6819263 -27.292571,27.2925677 -0.01425,0.01424 a 19.308733,19.308733 0 0 0 0,27.306826 19.308733,19.308733 0 0 0 24.542615,2.291539 19.308733,19.308733 0 0 1 0.0057,0.4664 19.308733,19.308733 0 0 1 -19.308978,19.308973 h 44.134415 a 19.308733,19.308733 0 0 1 -19.308408,-19.308979 19.308733,19.308733 0 0 1 0.0058,-0.4664 19.308733,19.308733 0 0 0 24.542608,-2.292111 19.308733,19.308733 0 0 0 -5.64e-4,-27.306815 z" />
61
71
  <circle
62
- style="fill:none;stroke:#000000;stroke-width:0.666665;stroke-dasharray:none;stroke-opacity:1"
72
+ style="fill:none;stroke:#ffcf42;stroke-width:0.5;stroke-dasharray:none;stroke-opacity:1"
63
73
  id="path1"
64
- cx="-9.8483047"
65
- cy="-84.19574"
66
- r="23.333265"
74
+ cx="-13.51147"
75
+ cy="-76.644737"
76
+ r="19.308733"
67
77
  transform="rotate(135)" />
68
78
  <circle
69
- style="fill:none;stroke:#000000;stroke-width:0.666665;stroke-dasharray:none;stroke-opacity:1"
79
+ style="fill:none;stroke:#ffcf42;stroke-width:0.5;stroke-dasharray:none;stroke-opacity:1"
70
80
  id="path1-8"
71
- cx="13.484962"
72
- cy="-60.862465"
73
- r="23.333265"
81
+ cx="5.7972598"
82
+ cy="-57.335995"
83
+ r="19.308733"
74
84
  transform="rotate(135)" />
75
85
  <circle
76
- style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.666665;stroke-dasharray:none;stroke-opacity:1"
86
+ style="fill:none;fill-opacity:1;stroke:#ffcf42;stroke-width:0.5;stroke-dasharray:none;stroke-opacity:1"
77
87
  id="path1-8-2"
78
- cx="76.666428"
79
- cy="72.40374"
80
- r="23.333265" />
88
+ cx="72.163673"
89
+ cy="61.053471"
90
+ r="19.308733" />
81
91
  <circle
82
- style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.666665;stroke-dasharray:none;stroke-opacity:1"
92
+ style="fill:none;fill-opacity:1;stroke:#ffcf42;stroke-width:0.5;stroke-dasharray:none;stroke-opacity:1"
83
93
  id="path1-8-2-3"
84
- cx="23.333265"
85
- cy="72.40374"
86
- r="23.333265" />
94
+ cx="28.02943"
95
+ cy="61.053471"
96
+ r="19.308733" />
87
97
  </g>
88
98
  </svg>