[SOLVED] How to add custom side panel background color?

I’d like to choose the background color I prefer, not the black theme or white theme, for side panels, but how do I do that?

you must add on page-content div a new custom class:

<div class="panel panel-left panel-cover">
	<div class="view">
		<div class="page">
			<div class="navbar">
				<div class="navbar-inner">
					<div class="title"></div>
				</div>
			</div>
			<div class="page-content panel-custom">
			....
			</div>
		</div>
	</div>
</div>

then you add a class to your app.css:
.panel-custom{
background: rgb(157, 109, 163);
}

works for me:

2 Likes

Thanks a lot.
It worked absolutely correctly.