// 文字的颜色
$textColor: #FFFFFF;
// 图表颜色集合
$chartsColor: red, green, #d65e68;
// 卡片边框颜色、背景颜色
$cardColor: #227fe7, #0000ffb7;
$cardBackgroundColor: transparent;
$buttonBg: #227fe7;

// 图表蓝色主题的相关颜色
// 坐标轴、分隔线
$chartAxisColor: #fff;
// 坐标轴文字
$chartAxisFontColor: #A1AAB4;
// 图例文字
$chartLegendFontColor: #fff;
// 配色列表
$chartColorList: #f38f89, #01fbfe, #79f8fb, #06f07b, #28df99, #ffd781;
$chartAreaColorListStart: #12fff7, #96e6a1, #e65c00, #ed4264;
$chartAreaColorListEnd: #b3ffab, #d4fc79, #f9d423, #ffedbc;
//饼图配色列表
//$pieColorList: #1db7e5, #70d458, #dbde22, #f44d4d, #ffc227, #00c6ff, #ffd781, #92e1ff,;
$pieColorList: #EAEA26, #FFAD05, #3DD1F9, #01E17E, #FE5656, #906BF9;

// 导出变量
:export {
  textColor: $textColor;
  buttonBg: $buttonBg;
  chartsColor: $chartsColor;
  cardColor: $cardColor;
  cardBackgroundColor: $cardBackgroundColor;
  chartAxisColor: $chartAxisColor;
  chartAxisFontColor: $chartAxisFontColor;
  chartLegendFontColor: $chartLegendFontColor;
  chartColorList: $chartColorList;
  chartAreaColorListStart: $chartAreaColorListStart;
  chartAreaColorListEnd: $chartAreaColorListEnd;
  pieColorList: $pieColorList;
}
