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
|
// Sidebar
|
||||||
|
/// Theming
|
||||||
|
export const SIDEBARTHEMING = [{
|
||||||
|
// Edit the "Configuration for Theming" section in the `styles/index.scss`.
|
||||||
|
}]
|
||||||
|
|
||||||
/// Top tabs of your sidbears
|
/// Top tabs of your sidbears
|
||||||
export const SIDEBARTOP = [
|
export const SIDEBARTOP = [
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,12 +1,16 @@
|
||||||
* {
|
///////////////////////////////////////////
|
||||||
outline: none;
|
// Configuration for Theming //
|
||||||
}
|
/////////////////////////////////////////
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
--TabActiveBackground: #8FECFB;
|
--TabActiveBackground: #8FECFB;
|
||||||
--TabActiveText: black;
|
--TabActiveText: black;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///////////////////////////////////////////
|
||||||
|
|
||||||
|
* {outline: none}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
background: transparent;
|
background: transparent;
|
||||||
color: white;
|
color: white;
|
||||||
|
|
Reference in a new issue