match sidebar background color to editor base theme

This commit is contained in:
jess 2026-04-06 00:55:23 -07:00
parent 1f610cb798
commit b2670d2acb
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ struct SidebarView: View {
.listStyle(.plain)
}
}
.background(Color(ns: Theme.current.mantle))
.background(Color(ns: Theme.current.base))
.onAppear { state.refreshNoteList() }
}
}