-
Notifications
You must be signed in to change notification settings - Fork 2
Image modification
Clément Delalande edited this page Feb 18, 2015
·
3 revisions
#Image modification
Since the 1.0.8, images are now in SVG format.
This page is here to help you to modify them.
All svg are in the "img" folder
##DL.SVG / GEAR.SVG
###Default file content for DL.SVG
<!-- DL SVG - Modified & cleanup by iKlem -Downloaded on http://www.flaticon.com/free-icon/download-button_60721 -->
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
style="pointer-events: none; display: block;">
<!-- Change the "fill" color and stroke/stroke-width here - Same color as header for this version -->
<path
fill="#045FB4"
stroke="none"
stroke-width="1"
d="M19,9h-4V3H9v6H5l7,7L19,9z M5,18v2h14v-2H5z">
</path>
</svg>
The only line to modify are on the "path" element (it will be like that on all SVG) :
-
fill="#045FB4"
- Color to use to fill the image (use hexadecimal colors or plain text) -
stroke="none"
- Color to use to add a stroke on the image | set tonone
for invisible stroke -
stroke-width="1"
- Size of the stroke
There's no line to modify on this file.
No need to change the colors ;)