Change Color

Can anyone help me how to change the color.
No description
2 Replies
Hugo
Hugo5mo ago
I tried to apply the color directly to the class from my theme.css like so
.fi-topbar{
@apply bg-black;
}
.fi-topbar{
@apply bg-black;
}
but with no success. So I guess you could use js and access the element and change its style to whatever color you want.
Hussain4real
Hussain4real5mo ago
use
.fi-topbar>nav{
@apply bg-black;
}
.fi-topbar>nav{
@apply bg-black;
}
to include the sidebar header:
.fi-topbar>nav,.fi-sidebar-header{
@apply bg-black;
}
.fi-topbar>nav,.fi-sidebar-header{
@apply bg-black;
}