Sass (SCSS)
Are you using SCSS as a CSS preprocessor in your project? No problemo, Font Awesome has an SCSS version if you’d prefer to import our styling into your workflow.
We’ll cover the basics of picking the SCSS files you’ll need for your project, adding Font Awesome to your compile, inject code into a class with Mixins, and more.
Get Set Up
You’ll find everything you need in the fontawesome6
directory of the Font Awesome download. Below is the list of files made specifically for SCSS. You can add them all to your project or pick just the ones you need.
Files | What They Do |
---|---|
fontawesome.scss | Main Font Awesome compile |
brands.scss | Brand icon style |
solid.scss | Solid icon style |
regular.scss | Regular icon style |
light.scss | Light icon styles |
thin.scss | Thin icon styles |
sharp-solid.scss | Sharp Solid icon styles |
sharp-regular.scss | Sharp Regular icon style |
sharp-light.scss | Sharp Light icon style |
sharp-thin.scss | Sharp Thin icon style |
duotone.scss | Duotone Solid icon styles |
duotone-regular.scss | Duotone Regular icon styles |
duotone-light.scss | Duotone Light icon styles |
duotone-thin.scss | Duotone Thin icon styles |
sharp-duotone-solid.scss | Sharp Duotone Solid icon styles |
sharp-duotone-regular.scss | Sharp Duotone Regular icon styles |
sharp-duotone-light.scss | Sharp Duotone Light icon styles |
sharp-duotone-thin.scss | Sharp Duotone Thin icon styles |
_animated.scss | animated icon support styling |
_bordered-pulled.scss | bordered + pulled icon support styling |
_core.scss | Base icon reference class syntax and definition |
_custom-icons.scss | includes custom icons in a Kit Download (if you’re using one) |
_fixed-width.scss | fixed-width icon support styling |
_icons.scss | All icon definitions |
_list.scss | icons in a list support styling |
_mixins.scss | Utilities used throughout styling/icon definitions |
_rotated-flipped.scss | rotating icons support styling |
_screen-reader.scss | screen-reader specific and accessibility support styling |
_sizing.scss | icon sizing support styling |
_stacked.scss | stacking icons support styling |
_variables.scss | Where variables are defined that are used throughout styling |
Adding Font Awesome to Your Compile
Copy the scss
folder into your project. Then copy the entire webfonts
folder into your project, where your static files get served.
Open your project’s scss/variables.scss
and edit the $fa-font-path
variable to point to where you placed the webfonts
folder.
In your main SCSS compile file, import Font Awesome by adding the core styles file, @import "scss/fontawesome.scss"
. Then import one or more styles.
Here’s a simple example:
If you wanted to use more styles, add more style imports:
Using Duotone Icons
If a project uses Duotone icons, you’ll need to @import
two separate files.
Using a Downloaded Kit
Starting with version 6.4, you can now download a Kit to compile and host yourself just like you do with Font Awesome! To download your Kit, make sure the Kit’s version in Settings is set to “Latest 6.x” or if you selected a specific version, it needs to be at least 6.4. Then from the Set Up tab in your Kit, you’ll see the options for downloading. Your kit download will contain all of the SCSS files noted above.
Custom Icons in Downloaded Kits
If you have custom icons in your Kit, they will be included as an additional files in your Kit download.
Path to the files | What the files do |
---|---|
/webfonts/custom-icons.woff /webfonts/custom-icons.ttf | Custom icon font in WOFF2 and TTF formats |
/scss/custom-icons.scss | Sass (SCSS) Preprocessor partial that handles the display of custom icons using Web Fonts |
Here’s a simple example that follows the compile steps above along with custom icons:
Adding Icons
Once you’ve added the imports above and have your compiled CSS that includes Font Awesome set up and referenced in your project, you can add icons to your project’s HTML.
Here’s an example of how to reference icons with your compiled and hosted CSS:
Custom SCSS-based CSS Rules
If you want to use any of our SCSS mixins or utilities, you can leverage our CSS Pseudo-elements method of adding icons to your project to do. This method is also useful when changing the HTML on your project is not an option.
Using our @include fa-icon-
and @include fa-family-
mixins, you can easily generate custom CSS Pseudo-element rules with CSS selectors specific to your project.
Style Mixins
To use the style mixins, you’ll want to:
- Choose the right mixin for your desired style.
- Pass in the SCSS variable for the icon you want to display.
Style Mixin | Availability | What Style Renders |
---|---|---|
fa-icon-brands() | Free Plan | Brands |
fa-icon-solid() | Free Plan | Solid Style |
fa-icon-regular() | Pro only | Regular Style |
fa-icon-duotone() | Pro only | Duotone Style |
fa-icon-light() | Pro only | Light Style |
fa-icon-thin() | Pro only | Thin Style |
Family Mixins
If you’re using our mixins to render an icon in a specific family, like our Sharp family of styles, you’ll need to reference the right family mixin (e.g. @include fa-family-sharp
). Classic is our default family of styles, so there’s no need to set it with a family mixin unless you’re trying to explicitly set to override a previous family.
Family Mixin | Availability | What Style Renders |
---|---|---|
fa-family-classic() | Free Plan | Classic when used with other style mixins |
fa-family-sharp() | Pro only | Sharp when used with other style mixins |
fa-family-duotone() | Pro only | Duotone when used with other style mixins |
fa-family-sharp-duotone() | Pro only | Sharp Duotone when used with other style mixins |
A More Manual Custom CSS Approach
If you’d rather a more customizable approach when right your styling rules, we’ve made the utilties used in the style mixins available to get the same rendering results.
To write manual rules, you’ll want to:
- Get the core set up styling of icons by adding
@extend %fa-icon;
- Use
@extend .fa-solid;
to include the styling to render the icon in the Solid style (similar syntax for other styles) - Use
@extend .fa-classic;
or@extend .fa-sharp;
to include the styling to render the icon in a specific family (Classic is set by default) - Use the
--fa
and--fa--fa
CSS Custom Properties to set the icon’s Unicode value. This is similar in syntax to adding icons via pseudo-elements
Included Mixins
Utilities | What It Does |
---|---|
fa-sr-only() | A mixin that visually hides an element containing a text-equivalent for an icon while keeping it accessible to assistive technologies |
fa-sr-only-focusable() | A mixin that is used alongside fa-sr-only() to show the element again when it’s focused (e.g. by a keyboard-only user) |
fa-icon() | A mixin that contains all of the base style set up for an icon (minus an icon’s style and specific name/unicode) compile |
fa-icon-solid() fa-icon-regular() fa-icon-light() fa-icon-thin() fa-icon-duotone() fa-icon-brands() | Mixins that contain all of the base style set up for an icon along with a specific style to render the icon in |
fa-family-sharp() fa-family-classic() fa-family-duotone() fa-family-sharp-duotone() | Mixins that, when combined with .fa-icon- style mixins, define the family of styles to be used. |
fa-content() | A mixin to make referencing icons via the CSS content property a bit easier.An icon’s variable must be passed in (e.g. fa-content($fa-var-user); ). |
Simplify and Customize with Variables
Font Awesome’s SCSS version also leverages several SCSS variables that allow for easier set-up and customization of our styling toolkit.
Variable | What It Does |
---|---|
$fa-css-prefix | Sets the prefix (default set to fa ) used on all styling toolkit CSS rules (e.g. fa-lg ) + icon reference classes (e.g. fa-user ) |
$fa-style | Sets the default icon style (using @font-face weight) |
$fa-style-family | Sets the default font-family used |
$fa-display | Sets the display property (default set to inline-block ) for rendered icons |
$fa-font-display | Sets the font-display property for Font Awesome’s icon fonts |
$fa-fw-width | Sets the width property for all fixed-width icons |
$fa-inverse | Sets the color property of .fa-inverse |
$fa-border-color | Sets the border-color property used in bordered icons |
$fa-border-padding | Sets the padding property used in bordered icons |
$fa-border-radius | Sets the border-radius property used in bordered icons |
$fa-border-style | Sets the border-style property used in bordered icons |
$fa-border-width | Sets the border-width property used in bordered icons |
$fa-li-width | Sets the width property for fa-li elements when styling icons in a list icons |
$fa-li-margin | Sets the margin-right property for fa-li elements when styling icons in a list icons |
$fa-pull-margin | Sets the margin-left /margin-right property for pulled icons icons |
$fa-primary-opacity | Sets the opacity of a duotone icon’s primary layer |
$fa-secondary-opacity | Sets the opacity of a duotone icon’s secondary layer |
$fa-size-scale-base | Sets the base step size that all other relative sizing steps are based on |
$fa-size-scale-2xs | Sets the size of step used when relatively sizing icons with .fa-2xs |
$fa-size-scale-xs | Sets the size of step used when relatively sizing icons with .fa-xs |
$fa-size-scale-sm | Sets the size of step used when relatively sizing icons with .fa-sm |
$fa-size-scale-lg | Sets the size of step used when relatively sizing icons with .fa-lg |
$fa-size-scale-xl | Sets the size of step used when relatively sizing icons with .fa-xl |
$fa-size-scale-2xl | Sets the size of step used when relatively sizing icons with .fa-2xl |
$fa-stack-vertical-align | Sets the vertical-align property of stacked icons |
$fa-stack-width | Sets the width property of stacked icons |
$fa-stack-z-index | Sets the z-index property of stacked icons |
$fa-font-path | Sets the location of Font Awesome’s webfonts folder and assets. |