From 880b9a97597aa58c07df7843dde478c7362c99fa Mon Sep 17 00:00:00 2001 From: KorbsStudio Date: Sat, 11 Feb 2023 11:03:51 -0500 Subject: [PATCH] Add options for tab theming --- astro/config.ts | 5 +++++ astro/styles/index.scss | 10 +++++++--- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/astro/config.ts b/astro/config.ts index 1f25654..d1025d5 100644 --- a/astro/config.ts +++ b/astro/config.ts @@ -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 = [ { diff --git a/astro/styles/index.scss b/astro/styles/index.scss index 073acbc..378b5f0 100644 --- a/astro/styles/index.scss +++ b/astro/styles/index.scss @@ -1,12 +1,16 @@ -* { - outline: none; -} +/////////////////////////////////////////// +// Configuration for Theming // +///////////////////////////////////////// :root { --TabActiveBackground: #8FECFB; --TabActiveText: black; } +/////////////////////////////////////////// + +* {outline: none} + body { background: transparent; color: white;