Skip to content

Latest commit

 

History

History
42 lines (27 loc) · 755 Bytes

readme.md

File metadata and controls

42 lines (27 loc) · 755 Bytes

a color scheme based sass/scss for oovui ui library

the colors default theme is mainly based ant.design;

the colors scss model is mainly modified the open-color;

Install

npm install oov-color --save

Usage

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;
}

Or use oov-color with webpack (Recommend)

// https://www.npmjs.com/package/sass-loader
@import '~oov-color';   

body{
  background-color:$oov-c-green-6;
  color:$oov-c-gray-6;
}