mirror of
https://github.com/shadoll/sLogos.git
synced 2026-02-04 02:53:22 +00:00
feat: enhance SVG handling by updating color targets and adding SVG source retrieval; refactor Actions and InlineSvg components for improved functionality
This commit is contained in:
@@ -1544,30 +1544,33 @@
|
||||
"ua_yellow": "#FFDD00"
|
||||
},
|
||||
"targets": {
|
||||
"part_s1": "#s1",
|
||||
"part_s2": "#s2",
|
||||
"part_l": "#l"
|
||||
"part_s": "#s",
|
||||
"part_s_stroke": "#s&stroke",
|
||||
"part_l": "#l",
|
||||
"part_l_stroke": "#l&stroke"
|
||||
},
|
||||
"sets": {
|
||||
"light": {
|
||||
"part_s1": "red",
|
||||
"part_s2": "red",
|
||||
"part_l": "white"
|
||||
"part_s": "red",
|
||||
"part_l": "white",
|
||||
"part_l_stroke": "black",
|
||||
"part_s_stroke": "black"
|
||||
},
|
||||
"dark": {
|
||||
"part_s1": "red",
|
||||
"part_s2": "red",
|
||||
"part_l": "black"
|
||||
"part_s": "red",
|
||||
"part_l": "black",
|
||||
"part_l_stroke": "white",
|
||||
"part_s_stroke": "white"
|
||||
},
|
||||
"uk": {
|
||||
"part_s1": "uk_red",
|
||||
"part_s2": "uk_red",
|
||||
"part_l": "uk_blue"
|
||||
},
|
||||
"ua": {
|
||||
"part_s1": "ua_blue",
|
||||
"part_s2": "ua_blue",
|
||||
"part_l": "ua_yellow"
|
||||
"part_s": "ua_blue",
|
||||
"part_l": "ua_yellow",
|
||||
"part_l_stroke": "none",
|
||||
"part_s_stroke": "none"
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -1582,7 +1585,7 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Shkafnik Logo",
|
||||
"name": "Shkafnik",
|
||||
"path": "logos/shkafnik_logo.svg",
|
||||
"format": "SVG",
|
||||
"disable": false,
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="510" width="510" viewBox="0 0 510 510">
|
||||
<path id="l" d="m286.7 401.2 61.9 60.2v-389.4l-62.4-60.6z" fill="currentColor" stroke="#eee" stroke-width="0"
|
||||
<path id="l" d="m286.7 401.2 61.9 60.2v-389.4l-62.4-60.6z" fill="currentColor" stroke="none" stroke-width="2"
|
||||
stroke-miterlimit="10" />
|
||||
<g stroke="#eee" stroke-width="0" stroke-miterlimit="10">
|
||||
<path id="s1" fill="#dc2108" d="m161.2 500 106.1-100.8-39-37.2-66.9 63.6z" />
|
||||
<path id="s2" fill="#dc2108" d="m275 174.3-113.8 108.9 113.8 108.9v-73.6l-37-35.3 37-36.3z" />
|
||||
<g id="s" fill="#dc2108" stroke="none" stroke-width="2" stroke-miterlimit="10">
|
||||
<path d="m161.2 500 106.1-100.8-39-37.2-66.9 63.6z" />
|
||||
<path d="m275 174.3-113.8 108.9 113.8 108.9v-73.6l-37-35.3 37-36.3z" />
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 485 B After Width: | Height: | Size: 461 B |
Reference in New Issue
Block a user