I am trying to use Nuxt color mode, with my existing SCSS stylesheets. So far I've used variables like $primary and $secondary for all the colors throughout the app. And I would like to use nuxt color mode to change the theme. The example here shows a set of CSS variables, that change depending on the class of the html element e.g. (.dark-mode, .light-mode)
How can I apply this logic (changing the color variables, depending on the class of the html element) with SCSS?
I tried this:
.light-mode {
$primary: #196b69;
$accent: #e69496;
...
}
.dark-mode {
$primary: red;
$accent: blue;
...
}
And a little bit of this:
$themes: (
light-mode: (
primary: #196b69,
accent: #e69496,
...
),
dark-mode: (
primary: red,
accent: blue,
...
)
);
But it hasn't worked. Thanks in advance for any help or references to helpful documentation! :)