We have a Nuxt3 installation and we are trying to use Element ui.
We would like to know how we can change the colors.
I tried to enter the site that customizes the themes, but it is not working.
https://element.eleme.io/#/en-US/theme
I also tried including the change inside a var.css file
Create a new style file in assets/css/index.scss
Imported in css: ['~/assets/scss/index.scss' ] on nuxt.config file
Nothing happens.
@forward 'element-plus/theme-chalk/src/common/var.scss' with (
$colors: (
'primary': (
'base': green,
),
)
);