Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

691
Views
Global scss variables for Angular components without importing them everytime

I do already have SCSS variables defined in src/styles/settings/_variables.scss and I am importing them into src/styles.scss, but still these variables aren't available for every single component.

Is there any way to make a global file which holds all SCSS variables for the rest of my components? Because writing @import in every single component .scss file it is very frustrating, especially if I have many nested components.

I know, there is a lot of similar questions, but it seems like they're all outdated and do not relate to the recent versions of Angular.

I use Angular 7.3 with CLI.

over 4 years ago · Santiago Trujillo
5 answers
Answer question

0

Is there any ways to make global file with scss variables available for all components?

Without importing global file everytime in each component, you want those sass variables been available, it's not possible.

The way it works in SASS, if using partials to better organize code, you can apply @import directive for referencing. So if there're some sass variables in shared/_variables.scss:

$lightslategray: #778899;
$darkgray: #A9A9A9;

and these variables need to be used in another stylesheet, stylesheet with them must be @import-ed into it firstly:

// Shared
@import "shared/variables";

.content {
  background: $lightslategray;
}

In Angular it works in a similar way (related referencing external stylesheet). So if you need some sass variables, mixins or functions to be used by a particular component.scss, there is no other clean way, but to reference them in that component.scss using @import directive. To ease the task, you can create a file src/_variables.scss and use syntax like this in your component.scss:

@import “~variables.scss”;
over 4 years ago · Santiago Trujillo Report

0

You just need to add a little more config, so where you are declaring your global variables, you need to wrap it up in :root{}. So in src/styles/settings/_variables.scss.

:root 
{
--blue: #00b; // or any global you wish to share with components 
}

Then when you use them in the SCSS you will need to access them like so.

.example-class {
  background-color: var(--blue)
}

To add to this regarding comments, this method can use mixins, @media and keyframes and is not limited to just colours / font. That was an example.

From my understanding you need a global file src/assets/style/global and then to import each scss file into there where you are defining them like so.

@import 'filename';

If you dont want global variables to be used in within a component look when you have the globals working. Look into ViewEncapsulation, as this can be used to ignore them.

over 4 years ago · Santiago Trujillo Report

0

In angular 8 work for me.

In your _variable.scss file you have to add:

:root{--my-var:#fabada}

After that go in your angular.json and add this in "styles":

{"input":"yourPath/_variables.scss"}
over 4 years ago · Santiago Trujillo Report

0

step one : go to custom scss file (shared/css/_variable.scss) and write this part

:root{
  --color-text: red;
  --color-btn-success: green;
}

after go to style.scss (this is main file) and import this file :

@import './shared/css/Variables';

now you can use variables in all components with this Syntax:

.sample{
  color : var(--color-text);
}

over 4 years ago · Santiago Trujillo Report

0

Easily possibe to access sass style(s) from a global file with two steps.

  1. Add folder path of the style files to includePaths array in angular.json file.
    1. Import style file by file-name in any component.

angular.json

"architect": {
  "build": {
    ...
    "options": {
      "stylePreprocessorOptions": {
        "includePaths": [
          "src/styles/var" // add path only, do not include file name
        ]
      },
      "styles": [
        ...
      ]
    }
    ...
  }
}

some-component.scss

@import "var";

mat-toolbar {
  height: $toolbar-height;
}
over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!