当前位置:   article > 正文

element-plus 自定义主题色非非非常简单!_element plus 修改主题色

element plus 修改主题色

创建一个组件文件里面引入:

  1. export default function ThemeColor(){
  2. document.body.style.setProperty('--el-color-primary', '#27ba9b')//主色
  3. document.body.style.setProperty('--el-color-success', '#1dc779')//成功色
  4. document.body.style.setProperty('--el-color-waring', '#ffb302')//警告色
  5. document.body.style.setProperty('--el-color-danger', '#e26237')//危险色
  6. document.body.style.setProperty('--el-color-danger', '#cf4444')//错误色
  7. }

 在App.vue中引入:

  1. <template>
  2. <el-row>
  3. <el-button>默认按钮</el-button>
  4. <el-button type="primary">主要按钮</el-button>
  5. <el-button type="success">成功按钮</el-button>
  6. <el-button type="info">信息按钮</el-button>
  7. <el-button type="warning">警告按钮</el-button>
  8. <el-button type="danger">危险按钮</el-button>
  9. </el-row>
  10. </template>
  11. <script setup>
  12. import { onMounted } from 'vue'
  13. import ThemeColor from './utils/ThemeColor'
  14. onMounted(() => {
  15. ThemeColor()
  16. })
  17. </script>
  18. <style lang="scss" scoped>
  19. </style>

成功了给个赞吧

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/133436
推荐阅读
相关标签
  

闽ICP备14008679号