0.1.3 • Published 7 years ago

oov-color v0.1.3

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

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