Even though realistically most of the time you’ll be creating SVG files using tools like Adobe Illustrator instead of coding them by hand, some SVG features are easy to implement by hand to give your images the extra pop. Linear gradients is one such feature.
Let’s learn with an example. Here’s our base crossbones image:
And here’s the SVG markup for it. I’ve simplified by changing the path data with …:
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200">
<style>.bones{fill:#ccc ;} .eye{fill:#666;}</style>
<path class="bones" d="..."/>
<path class="bones" d="..."/>
<g>
<path class="eye" d="..."/>
<path class="eye" d="..."/>
</g>
</svg>
Now here’s a version with an orange gradient:
And here’s the markup. Notice the highlighted sections and the defs, linearGradient and stop elements:
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200">
<style>.eye{fill:#F9EC31;}</style>
<defs>
<linearGradient id="bones-gradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:#FF9133;" />
<stop offset="100%" style="stop-color:#FF0015;" />
</linearGradient>
</defs>
<g fill="url(#bones-gradient)">
<path class="bones" d="..."/>
<path class="bones" d="..."/>
</g>
<g>
<path class="eye" d="..."/>
<path class="eye" d="..."/>
</g>
</svg>
Now a version with multiple color stops and the use of stop-opacity. Also notice the use of fill-opacity for the eyes:
And the markup for it:
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200">
<style>.eye{fill:#211533; fill-opacity: 0.5;}</style>
<defs>
<linearGradient id="bones-gradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:#f8f8f8;stop-opacity:0.5" />
<stop offset="50%" style="stop-color:#fc00ff;stop-opacity:1" />
<stop offset="100%" style="stop-color:#f8f8f8;stop-opacity:0.5" />
</linearGradient>
</defs>
<g fill="url(#bones-gradient)">
<path class="bones" d="..."/>
<path class="bones" d="..."/>
</g>
<g>
<path class="eye" d="..."/>
<path class="eye" d="..."/>
</g>
</svg>
And finally in this last example we use a different angle for the gradient:
Here’s the markup:
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200">
<style>.eye{fill:#F9EC31;}</style>
<defs>
<linearGradient id="bones-gradient" x1="0%" y1="0%" x2="50%" y2="100%">
<stop offset="0%" style="stop-color:blue;" />
<stop offset="100%" style="stop-color:#FF0015;" />
</linearGradient>
</defs>
<g fill="url(#bones-gradient)">
<path class="bones" d="..."/>
<path class="bones" d="..."/>
</g>
<g>
<path class="eye" d="...."/>
<path class="eye" d="..."/>
</g>
</svg>
Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.
Alligator.io is a developer-focused resource that offers tutorials and insights on a wide range of modern front-end technologies, including Angular 2+, Vue.js, React, TypeScript, Ionic, and JavaScript.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
I know this is old but Thank you!, btw you can actually remove the style
in the stop tag and use it like this:
before:
<stop offset="0%" style="stop-color:blue;" />
<stop offset="100%" style="stop-color:#FF0015;" />
after:
<stop offset="0%" stop-color="blue" />
<stop offset="100%" stop-color="FF0015" />
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.