// This file will contain all varibales, our custom varibales and 
//those from Ant Design which we want to override.
@import "../../node_modules/antd/lib/style/themes/default.less";

// @primary-color: #1890ff;
// @primary-color: rgb(9,97,81);
// @primary-color: #007330;
// @layout-header-background: rgb(9,97,81);

@first-color:@primary-1;
@secord-color:@primary-2;
@third-color:@primary-7;
@fourth-color:@primary-4;


:root{
  // 作为npm插件使用时，为了能使组件主题色随项目的肤色变化，需要注释掉
  --primary:@primary-color;
  // --first:@first-color;
  // --secord:@secord-color;
  // --third:@third-color;
  // --fourth:@fourth-color;
  --one:@first-color;
  --two:@secord-color;
  --three:@third-color;
  --four:@fourth-color;
}