feat: add color configuration and targets for shadoll logo

This commit is contained in:
sHa
2025-05-12 21:43:55 +03:00
parent 3086f57ce1
commit c9f467de62
2 changed files with 41 additions and 5 deletions

View File

@@ -1181,7 +1181,43 @@
"format": "SVG", "format": "SVG",
"disable": false, "disable": false,
"brand": "shadoll", "brand": "shadoll",
"tags": [] "tags": [],
"colors": {
"red": "#dc2108",
"white": "#eee",
"black": "#222",
"uk_red": "#C8102E",
"uk_blue": "#012169",
"ua_blue": "#0057B7",
"ua_yellow": "#FFDD00"
},
"targets": {
"part_s1": "#s1",
"part_s2": "#s2",
"part_l": "#l"
},
"sets": {
"light": {
"part_s1": "red",
"part_s2": "red",
"part_l": "white"
},
"dark": {
"part_s1": "red",
"part_s2": "red",
"part_l": "black"
},
"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"
}
}
}, },
{ {
"name": "Shkafnik", "name": "Shkafnik",

View File

@@ -1,8 +1,8 @@
<svg xmlns="http://www.w3.org/2000/svg" height="510" width="510" viewBox="0 0 510 510"> <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="2" <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"
stroke-miterlimit="10" /> stroke-miterlimit="10" />
<g fill="#dc2108" stroke="#eee" stroke-width="2" stroke-miterlimit="10"> <g stroke="#eee" stroke-width="0" stroke-miterlimit="10">
<path d="m161.2 500 106.1-100.8-39-37.2-66.9 63.6z" /> <path id="s1" fill="#dc2108" 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" /> <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> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 454 B

After

Width:  |  Height:  |  Size: 485 B