Fix Accent Colour not being picked up

This commit is contained in:
Michał Gdula 2022-09-13 15:03:09 +00:00
parent d548f967c5
commit 9ed36e2738
5 changed files with 27 additions and 22 deletions

View file

@ -25,17 +25,19 @@ sans-serif;
// Fallback for items that do not yet support the new sass stylesheet system
:root {
--bg: #151515bb;
--bg: #{$bg-alt};
--bg-1: #242621;
--bg-2: #1D1E1C;
--bg-3: #151515;
--bg-3: #{$bg};
--fg: #E8E3E3;
--fg-dark: #151515;
--fg: #{$fg};
--fg-dark: #{$fg-alt};
--red: #B66467;
--orange: #FF7700;
--green: #8C977D;
--black: #151515;
--white: #E8E3E3;
--red: #{$red};
--orange: #{$orange};
--green: #{$green};
--black: #{$black};
--white: #{$white};
--accent: #{$page-accent};
}