Duotone Icons
If you’re looking to add multiple colors or tones or swap the layer opacity of your icons, you’ve come to the right place. Who doesn’t love a winning flavor combination?
Our duotone icons (in both the Duotone and Sharp Duotone styles) work just like all of our other icons but with two distinct shades of color. Duotone is a great effect when you’re looking to add more of your brand or an illustrative quality to the icons in your project.
Basic Use
Duotone and Sharp Duotone icons use the same syntax Font Awesome icons, and you can reference them like any other icon. They will inherit whatever color is around them, with the secondary layer being a transparent version of the primary color.
Swapping Layer Opacity
You can swap the default opacity of each duotone icon’s layers. This will make an icon’s primary layer have the default opacity of 40% rather than its secondary layer.
Changing Opacity
By default, the secondary layer in a duotone icon is set to 40% opacity (via an opacity 0.4;
rule in Font Awesome’s support CSS). You can explicitly set the opacity of a duotone icon’s layer by using the CSS custom properties below. New to custom properties? Here are some recommendations on using them in a project.
Properties | CSS Custom Property | Accepted Values |
---|---|---|
Set Primary Layer Opacity | --fa-primary-opacity | 0 1.0 |
Set Secondary Layer Opacity | --fa-secondary-opacity | 0 1.0 |
Coloring Duotone Icons
Like all other Font Awesome icons, duotone icons automatically inherit CSS size and color. A duotone icon consists of a primary and secondary layer. By default, The secondary layer is given an opacity of 40% so that it appears as a lighter shade of the icon’s inherited or directly set color.
Using CSS custom properties, we’ve also added some color hooks to a duotone icon’s primary and secondary layers. New to custom properties? Here are some places to set them.
Properties | CSS Custom Property | Accepted Values |
---|---|---|
Set Primary Layer Color | --fa-primary-color | Any valid CSS color value |
Set Secondary Layer Color | --fa-secondary-color | Any valid CSS color value |
Advanced Use
When you combine all of the coloring, opacity, and other options together, Font Awesome icons get even more awesome. Here are a few ideas on how duotone icons can take your project to the next level.
Use Color to Highlight a Part of an Icon or to Note Status
Create Full-Color Icons that Look Like Illustrations
Theme Icons with Brand Colors
Using in a Project
CSS custom properties are still a pretty new thing for most folks. We’ve documented some of the ways you can define them within your project.
Accessibility Best Practices
Because duotone icons are made up of two layers with different color values, they can be more like illustrations than other Font Awesome styles and need extra care for accessibility.
Since they are more complex visually, duotone icons may be harder to read at smaller sizes. In addition to that, the colors and opacity you choose for each icon’s layers can also affect their legibility. Some tips for improving legibility and accessibility:
- Render duotone style icons at larger sizes (2x your base type size is a good starting point).
- Test layer colors together to make sure they have enough color contrast.
- Test layer colors together to make sure they handle color-blindness scenarios well.
Custom Icon Uploads Are Like Onions
They now have layers! You can add your very own duotone creations to a Kit if you have a Pro-level plan. Get up to speed on how best to make some, and how to use them once they’re in your Kit.
Duotone Classes
Class | Details |
---|---|
fa-swap-opacity | Swap the default opacity of each layer in a duotone icon (making an icon’s primary layer have the default opacity of 40% rather than its secondary layer) |
Customization
We’ve added CSS custom properties to make customizing easier and more efficient. Define your own values for the following properties to override and customize Font Awesome’s defaults.
CSS Custom Property | Details | Accepted Values |
---|---|---|
--fa-primary-color | Set primary layer color | Any valid CSS color value |
--fa-primary-opacity | Set primary layer opacity | 0 1.0 |
--fa-secondary-color | Set secondary layer color | Any valid CSS color value |
--fa-secondary-opacity | Set secondary layer opacity | 0 1.0 |
Troubleshooting
Can I use Duotone Icons by using CSS pseudo-elements?
Yes, duotone icons can be added to your web projects as CSS pseudo-elements. Doing so is even more complicated than the base difficulty of rendering icons with CSS pseudo-elements though. It’s recommended only for those who can’t control the final markup of their site/project as well as ninjas who want complete control over their markup.
Doh! The icon I want to use isn’t showing up as a duotone icon!
Let’s double-check a few things.
- Are you using the duotone-specific
fa-duotone
orfa-sharp-duotone
family prefix? - Duotone icons are only available with Font Awesome Pro — make sure you have an active Pro-level plan or a Pro license with access to Version 5.10.0 or greater for regular Duotone or Version 6.6.0 or greater for Sharp Duotone icons.
- We release icons pretty frequently these days. Make sure you’re using the latest and greatest version, so any new icons you want to use are at your fingertips.
- If you’ve decided to host your own copy of Font Awesome, check that you’ve moved all of the files you need to use the icon you want. Also, double-check the paths to those files in your HTML’s
<head>
.
Help! I can’t target individual layers!
Make sure you’re using the correct custom property values. Also, make sure you haven’t defined a custom property that may be overriding things (check inline and in your custom CSS). We don’t recommend writing custom CSS to target a specific class or pseudo-element — there are some differences between our Web Fonts and SVG versions of Font Awesome that can make this tricky.
Can I use Font Awesome styling with duotone icons?
Yes! You can use any of our styling options - like sizing, fixed-width icons, and animations just to name a few - with duotone icons. And if you’re using the SVG + JS version of Font Awesome, our power transforms and layering let you do some pretty amazing stuff.
I’m using a subsetted Kit and the layers of my duotone icon layers look weird!
If you are using a Kit where you have selected subsetting, it is possible for the layers of your duotone icon to be rendered separately. This is most likely caused by attempting to use a duotone style that is not included in the subset. Here’s the fix.
- Check the style of your icon and make sure the style you are trying to use is a part of your Kit subset.
Do duotone icons work with all browsers?
Duotone icons render great in all modern web browsers. Since Internet Explorer versions 10 and 11 do not support CSS Custom properties, duotone icons will still render but you won’t be able to define colors or opacity for individual layers. If you must support that outdated browser, we recommend defining the color on the icon or its parent element instead.