55 lines
1.4 KiB
TypeScript
55 lines
1.4 KiB
TypeScript
export const defaultLayout = 'normal'
|
|
|
|
export const naiveThemeOverrides = {
|
|
common: {
|
|
primaryColor: '#316C72FF',
|
|
primaryColorHover: '#316C72E3',
|
|
primaryColorPressed: '#2B4C59FF',
|
|
primaryColorSuppl: '#316C72E3',
|
|
|
|
infoColor: '#2080F0FF',
|
|
infoColorHover: '#4098FCFF',
|
|
infoColorPressed: '#1060C9FF',
|
|
infoColorSuppl: '#4098FCFF',
|
|
|
|
successColor: '#18A058FF',
|
|
successColorHover: '#36AD6AFF',
|
|
successColorPressed: '#0C7A43FF',
|
|
successColorSuppl: '#36AD6AFF',
|
|
|
|
warningColor: '#F0A020FF',
|
|
warningColorHover: '#FCB040FF',
|
|
warningColorPressed: '#C97C10FF',
|
|
warningColorSuppl: '#FCB040FF',
|
|
|
|
errorColor: '#D03050FF',
|
|
errorColorHover: '#DE576DFF',
|
|
errorColorPressed: '#AB1F3FFF',
|
|
errorColorSuppl: '#DE576DFF',
|
|
},
|
|
}
|
|
|
|
export const basePermissions = [
|
|
{
|
|
code: 'ExternalLink',
|
|
name: '外链',
|
|
type: 'MENU',
|
|
icon: 'i-fe:external-link',
|
|
order: 98,
|
|
enable: true,
|
|
show: true,
|
|
children: [
|
|
{
|
|
code: 'MyBlog',
|
|
name: '博客-掘金',
|
|
type: 'MENU',
|
|
path: 'https://juejin.cn/user/1961184475483255',
|
|
icon: 'i-simple-icons:juejin',
|
|
order: 1,
|
|
enable: true,
|
|
show: true,
|
|
},
|
|
],
|
|
},
|
|
]
|