I want to use the dark theme g90 in Carbon design system. I can get the default white theme by importing these:
<style lang="scss" global>
  @use "@carbon/themes";
  @include themes.set(themes.$g90);
  @import 'carbon-components/scss/globals/scss/_css--reset.scss';
  @import 'carbon-components/scss/globals/scss/_css--font-face.scss';
  @import 'carbon-components/scss/globals/scss/_css--helpers.scss';
  @import 'carbon-components/scss/globals/scss/_css--body.scss';
  @import 'carbon-components/scss/globals/grid/_grid.scss';
  @import 'carbon-components/scss/components/button/button';
</style>
However, i get a error when compiling.
[!] (plugin svelte) Error: Undefined mixin.
  ╷
3 │     @include themes.set(themes.$g90);
  │     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  ╵
  src/App.svelte 3:2  root stylesheet
The only thing i have changed from the svelte/template is
  plugins: [
    svelte({
      preprocess: [
        autoPreprocess({
          postcss: true,
          scss: { includePaths: ["src", "node_modules"] },
        }), 
I have tried for hours and am missing something.