the colors default theme is mainly based ant.design;
the colors scss model is mainly modified the open-color;
npm install oov-color --save
Import the file to your project and use the variables and class.
Just for SCSS
// path: the install directory of oov-color
@import 'path/oov-color';
body{
background-color:$oov-c-green-6;
color:$oov-c-gray-6;
}
// https://www.npmjs.com/package/sass-loader
@import '~oov-color';
body{
background-color:$oov-c-green-6;
color:$oov-c-gray-6;
}