@import './variable.scss';
@import './mixin.scss';

//按钮混合
// @mixin button($value: default) {
// 	background-color: themed('btn-#{$value}-background');
// 	border: themed('btn-#{$value}-color');
// 	color: themed('btn-#{value}-color');
// 	border: 1px solid;
// 	width: 100px;
// 	height: 50px;
// 	border-radius: 10px;

// 	&:hover {
// 		background-color: themed('btn-#{$value}-background-hover');
// 		border: themed('btn-#{$value}-border-hover');
// 		color: themed('btn-#{$value}-color-hover');
// 	}
// }

//全局类 使用混合方法
@include themify($themes) {

	//标题类
	// .them_title {
	// 	font-family: PingFang SC;
	// 	text-align: center;
	// 	font-size: themed('them-title-font-size');
	// 	color: themed('them-title-color');
	// }

	// //按钮类
	// .them-btn-default {
	// 	@include button;
	// }

	// .them-btn-primary {
	// 	@include button('primary');
	// }

	// .them-btn-info {
	// 	@include button('info');
	// }


}
