---
title: Menu Structure
config:
theme: base
themeVariables:
primaryColor: '#f0f0f0'
themeCSS: |
.nodeLabel {
font-weight: bold !important;
color: #ffffff
}
.node rect, .node circle, .node ellipse, .node polygon {
fill: #1E90FF !important;
stroke: none !important;
rx: 10px !important;
ry: 10px !important;
}
.edgeLabel {
color: #000000 !important;
}
---
flowchart LR
Start --> Shelves
Start --> Search
Start --> Notes
Start --> Collections
Shelves --> Book
Shelves --> Audiobook
Shelves --> Playlist
Book --> StartBook[Start]
Book --> ContinueBook[Continue]
Audiobook --> StartAudiobook[Start]
Audiobook --> ContinueAudiobook[Continue]
Playlist --> StartPlaylist[Start]
Playlist --> ContinuePlaylist[Continue]
Collections --> News
Collections --> Radio
Collections --> Audio
Collections --> Video
Search --> SearchBooks[Books]
Search --> SearchVideo[Video]
News --> NewsItem["Source (Named Link)"]
Radio --> RadioItem["Source (Named Link)"]
Audio --> AudioItem["Source (Named Link)"]
Video --> VideoItem["Source (Named Link)"]