$theme: 'darkblue'; //当前主题名称
$themeColor: #0D47A1; //主色调
$themeTextColorPrimary: #0D47A1; //主色调文字颜色
$themeLightBgColor: #f0f8fe; //浅色背景色
$themeBgColor: #0D47A1; //深色调背景主色
$themeBorderColor: #0D47A1; //边框颜色
$themeTextColor: #ffffff; //普通文字颜色
$themeShadowColor: 0 8rpx 16rpx rgba(38, 50, 56,.2); //主色调阴影颜色

// 主色块view样式
.#{$theme}-theme{
	background-color: $themeColor !important;
	color: $themeTextColor !important;
	box-shadow: $themeShadowColor;
	background-image: none !important;
	border-color: $themeBorderColor !important;
}

// 浅色主色调背景
.#{$theme}-theme-light-bg{
	background-color: $themeLightBgColor !important;
}

// 深色主色调背景
.#{$theme}-theme-bg{
	background-color: $themeBgColor !important;
}

// 浅背景文字主色调
.#{$theme}-theme-text-block{
	background-color: $themeLightBgColor !important;
	color: $themeTextColorPrimary !important;
}

// 主色调文字颜色
.#{$theme}-theme-text{
	color: $themeTextColorPrimary !important;
}

// 主色调背景颜色下的普通文本颜色
.#{$theme}-theme-bg-text{
	color: $themeTextColor !important;
}

// 主色调边框颜色
.#{$theme}-theme-border-color{
	border-color: $themeBgColor !important;
}
