Sign in

microservice / itcast-authority-web · Files

GitLab

  • Go to group
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • itcast-authority-web
  • src
  • utils
  • data.ts
  • 初始化权限管理也没见
      441d4b7c
    shaofan authored
    2025-10-29 14:33:07 +0800  
    Browse Code »
data.ts 459 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
export const themeData = [
  {
    id: 1,
    value: 'default',
    color: '#409EFF',
    name: '默认'
  },
  {
    id: 2,
    value: 'theme-orange',
    color: '#FF903D',
    name: '橙色'
  },
  {
    id: 3,
    value: 'theme-green',
    color: '#0ABE8C',
    name: '绿色'
  },
  {
    id: 4,
    value: 'theme-red',
    color: '#E83F3E',
    name: '红色'
  },
  {
    id: 5,
    value: 'theme-purple',
    color: '#5D6EFD',
    name: '紫色'
  }
]