CSS 変数を color_definitions.scss で定義する必要があると思います。
例:
:root {
--bg-custom: dark-light-choose(#f0f2f5, #3a3b3c);
}
その後、次のように使用できます:
background: var(--bg-custom) !important;
CSS 変数を color_definitions.scss で定義する必要があると思います。
例:
:root {
--bg-custom: dark-light-choose(#f0f2f5, #3a3b3c);
}
その後、次のように使用できます:
background: var(--bg-custom) !important;