@import "../default-skin.less";
@import "../../global/mixin.less";

// 色彩元素
// html > body 是为了增加嵌套时（比如 e_red > e_green）使 e_green 获得比 e_red * 更高的优先级
html > body .e_red { color:@danger !important;}
html > body .e_blue { color:@primary !important;}
html > body .e_blue-light { color:@primary-light-3 !important;}
html > body .e_blue-lighter { color:@primary-light-7 !important;}
html > body .e_green { color:@success !important;}
html > body .e_orange { color:@warning !important;}
html > body .e_orange-lighter { color:@warning-light-7 !important;}
html > body .e_yellow { color:@bright !important;}
html > body .e_navy { color:@secondary !important;}
html > body .e_navy-lighter { color:@secondary-light-3 !important;}
html > body .e_gray { color:@fg-light-8 !important;}
html > body .e_gray-light { color:@fg-light-9 !important;}
html > body .e_black { color:@fg-light-2 !important;}
html > body .e_black-light { color:@fg-light-5 !important;}
html > body .e_white { color:@bg !important;}



// 子元素色彩
.e_red * { color:@danger !important;}
.e_blue * { color:@primary !important;}
.e_green * { color:@success !important;}
.e_orange * { color:@warning !important;}
.e_orange-lighter * { color:@warning-light-7 !important;}
.e_navy * { color:@secondary !important;}
.e_yellow * { color:@bright !important;}
.e_navy-lighter * { color:@secondary-light-3 !important;}
.e_gray * { color:@fg-light-8 !important;}
.e_gray-light * { color:@fg-light-9 !important;}
.e_black * { color:@fg-light-2 !important;}
.e_black-light * { color:@fg-light-4 !important;}
.e_white * { color:@bg !important;}