@import './vars/mixin.scss';

/* 生成各种字号
-------------------------- */
@include font();


/* 生成各种粗细字体
-------------------------- */
@include font-weight();

/* 生成常用的字体颜色
-------------------------- */
@include color-commons();

/* 常用文字样式
-------------------------- */
.title {
    color: $--color-text-primary;
}
.sub-title {
    color: $--color-text-secondary;
}

// 输入框颜色
.font-c-gray-shallow-1 {
    @include color(#CBCBCB)
}

// 注释类颜色
.font-c-gray-deep-1 {
    @include color(#8e8e8f)
}

