浏览代码

feat(tabbar): 自定义 tabbar 时,高亮颜色优先使用 var(--wot-color-theme)

Utopia 8 月之前
父节点
当前提交
e4c0923bd7
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/tabbar/index.vue

+ 1 - 1
src/tabbar/index.vue

@@ -50,7 +50,7 @@ onLoad(() => {
     },
   })
 })
-const activeColor = '#1890ff'
+const activeColor = 'var(--wot-color-theme, #1890ff)'
 const inactiveColor = '#666'
 function getColorByIndex(index: number) {
   return tabbarStore.curIdx === index ? activeColor : inactiveColor