mirror of
https://github.com/wanglin2/mind-map.git
synced 2026-03-05 08:18:00 +08:00
87 lines
1.7 KiB
JavaScript
87 lines
1.7 KiB
JavaScript
import oreo from './oreo'
|
|
import shallowSea from './shallowSea'
|
|
import lemonBubbles from './lemonBubbles'
|
|
import rose from './rose'
|
|
import seaBlueLine from './seaBlueLine'
|
|
import neonLamp from './neonLamp'
|
|
import darkNightLceBlade from './darkNightLceBlade'
|
|
import morandi from './morandi'
|
|
import classic5 from './classic5'
|
|
import dark3 from './dark3'
|
|
import dark4 from './dark4'
|
|
import cactus from './cactus'
|
|
|
|
export default [
|
|
{
|
|
name: '奥利奥',
|
|
value: 'oreo',
|
|
theme: oreo,
|
|
dark: false
|
|
},
|
|
{
|
|
name: '浅海',
|
|
value: 'shallowSea',
|
|
theme: shallowSea,
|
|
dark: false
|
|
},
|
|
{
|
|
name: '柠檬气泡',
|
|
value: 'lemonBubbles',
|
|
theme: lemonBubbles,
|
|
dark: false
|
|
},
|
|
{
|
|
name: '玫瑰',
|
|
value: 'rose',
|
|
theme: rose,
|
|
dark: false
|
|
},
|
|
{
|
|
name: '海蓝线',
|
|
value: 'seaBlueLine',
|
|
theme: seaBlueLine,
|
|
dark: false
|
|
},
|
|
{
|
|
name: '霓虹灯',
|
|
value: 'neonLamp',
|
|
theme: neonLamp,
|
|
dark: true
|
|
},
|
|
{
|
|
name: '暗夜冰刃',
|
|
value: 'darkNightLceBlade',
|
|
theme: darkNightLceBlade,
|
|
dark: true
|
|
},
|
|
{
|
|
name: '莫兰迪',
|
|
value: 'morandi',
|
|
theme: morandi,
|
|
dark: false
|
|
},
|
|
{
|
|
name: '脑图经典5',
|
|
value: 'classic5',
|
|
theme: classic5,
|
|
dark: false
|
|
},
|
|
{
|
|
name: '暗色3',
|
|
value: 'dark3',
|
|
theme: dark3,
|
|
dark: true
|
|
},
|
|
{
|
|
name: '暗色4',
|
|
value: 'dark4',
|
|
theme: dark4,
|
|
dark: true
|
|
},
|
|
{
|
|
name: '仙人掌',
|
|
value: 'cactus',
|
|
theme: cactus,
|
|
dark: false
|
|
}
|
|
] |