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;