body {
    /* 内容框大背景 */
    --themeBgColor: #21252b;

    /* 内容框背景 */
    --themeColor: #282c34;

    /* 文字选中颜色 */
    --themeChooseColor: #fff;

    /* 文字base颜色 */
    --themeFontColor: #b8bbc4;

    /* 自定义按钮背景颜色 */
    --themeBtnColor: #2c313c;

    /* 输入框背景颜色 */
    --themeInputColor: #2c313c;

    /* 侧边导航栏字体颜色 */
    --themeSideBarFontColor: #b8bbc4;

    /* 统一边框颜色 */
    --themeBorderColor: #3b4048;

    /* 统一分割线颜色 */
    --themeDividerColor: #b8bbc4;

    /* electron关闭按钮颜色 */
    --themeCloseBtnColor: #fff;

    /* table 的斑马纹颜色 */
    --themeTableColumColor: #282c34;

    /* table title 背景颜色 */
    --themeTableBgColor: #242931;

    /* table title 文字颜色 */
    --themeTableFontColor: #999;
}

/* input输入框背景色 */
input {
    background-color: var(--themeInputColor);
}

/* table 的斑马纹颜色 */
body .el-table--striped .el-table__body tr.el-table__row--striped td {
    background-color: var(--themeTableColumColor);
}

/* 检查列表的标题颜色 */
body .el-tabs__item {
    color: var(--themeFontColor);
}
