Hi guys, I would like to ask your help to point out my mistake. Here's my problem:
- in the CSS file, I make a rule color like this:
:root{
--primary: #808080;
--secondary: #fe8800;
--light: #f5f5f5;
--dark: #14141f;
}
but when I move to HTML, that rule doesn't apply on it. For example, if I want the text is gray (like is determined in CSS), I should type: text-primary. But in this case, the color of the text is blue, and when I type text-secondary (the color should be orange like is determined in CSS), but the text here Is gray
- in the CSS file, I make a rule color like this:
:root{
--primary: #808080;
--secondary: #fe8800;
--light: #f5f5f5;
--dark: #14141f;
}
but when I move to HTML, that rule doesn't apply on it. For example, if I want the text is gray (like is determined in CSS), I should type: text-primary. But in this case, the color of the text is blue, and when I type text-secondary (the color should be orange like is determined in CSS), but the text here Is gray