The only way I found to achieve this is to convert scss variables in css custom properties.
In _variables.scss file I have all scss variables:
$orange: hsl(25, 96%, 49%);
Then I convert them in normal css variables:
:root {
--orange: #{$orange};
}