Files
mp-10579/src/styles/index.less
赵忠林 1856a611ce chore(config): 初始化项目配置文件
- 添加 .editorconfig 文件统一代码风格
- 配置 .env.development 环境变量文件
- 创建 .env.example 环境变量示例文件
- 设置 .eslintignore 忽略检查规则
- 配置 .eslintrc.js 代码检查规则
- 添加 .gitignore 文件忽略版本控制
- 设置 .prettierignore 忽略格式化规则
- 新增隐私政策HTML页面文件
- 创建API密钥编辑组件基础结构
2025-12-15 13:29:17 +08:00

40 lines
771 B
Plaintext

@tailwind base;
@tailwind components;
@tailwind utilities;
/** 全局样式 */
@style-entry-file: as-needed;
@import './@{style-entry-file}.less';
@import './transition/index.less';
@import "./component.less";
// 主题
@import 'ele-admin-pro/es/style/themes/dynamic.less';
:root {
// 灰色主题
--grey-1: #1b1b1b;
--grey-2: #363636;
--grey-3: #4d4d4d;
--grey-4: #737373;
--grey-5: #a6a6a6;
--grey-6: #d9d9d9;
--grey-7: #e6e6e6;
--grey-8: #f2f2f2;
--grey-9: #f7f7f7;
--grey-10: #fafafa;
}
.ele-admin-theme-dark {
// 灰色主题
--grey-1: #fafafa;
--grey-2: #f7f7f7;
--grey-3: #f2f2f2;
--grey-4: #e6e6e6;
--grey-5: #d9d9d9;
--grey-6: #a6a6a6;
--grey-7: #737373;
--grey-8: #4d4d4d;
--grey-9: #363636;
--grey-10: #1b1b1b;
}