frontend: duplicate scss variables as custom css properties

This commit is contained in:
0x1eef 2024-01-13 20:30:16 -03:00
parent f9541c50a7
commit d4604b8a6e

View file

@ -1,3 +1,9 @@
$primary-color: #FFF;
$secondary-color: #333;
$accent-color: #0066CC;
:root {
--primary-color: $primary-color;
--secondary-color: $secondary-color;
--accent-color: $accent-color;
}