Add options for tab theming
This commit is contained in:
parent
a2da2e4ec4
commit
880b9a9759
2 changed files with 12 additions and 3 deletions
|
@ -14,6 +14,11 @@ export const SPLASH = [
|
|||
]
|
||||
|
||||
// Sidebar
|
||||
/// Theming
|
||||
export const SIDEBARTHEMING = [{
|
||||
// Edit the "Configuration for Theming" section in the `styles/index.scss`.
|
||||
}]
|
||||
|
||||
/// Top tabs of your sidbears
|
||||
export const SIDEBARTOP = [
|
||||
{
|
||||
|
|
|
@ -1,12 +1,16 @@
|
|||
* {
|
||||
outline: none;
|
||||
}
|
||||
///////////////////////////////////////////
|
||||
// Configuration for Theming //
|
||||
/////////////////////////////////////////
|
||||
|
||||
:root {
|
||||
--TabActiveBackground: #8FECFB;
|
||||
--TabActiveText: black;
|
||||
}
|
||||
|
||||
///////////////////////////////////////////
|
||||
|
||||
* {outline: none}
|
||||
|
||||
body {
|
||||
background: transparent;
|
||||
color: white;
|
||||
|
|
Reference in a new issue