Skip to content

Commit dbf8d6c

Browse files
committed
force light mode
1 parent d4116a4 commit dbf8d6c

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

astro.config.mjs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,11 @@ export default defineConfig({
1010
react(),
1111
starlight({
1212
title: 'llms.py',
13+
defaultColorScheme: 'light',
1314
logo: {
1415
src: './src/assets/logo.svg',
1516
alt: 'llms.py logo'
16-
},
17+
},
1718
social: [
1819
{ icon: 'github', label: 'GitHub', href: 'https://github.com/ServiceStack/llms' }
1920
],

src/components/Header.astro

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import LanguageSelect from '@astrojs/starlight/components/LanguageSelect.astro';
44
import Search from '@astrojs/starlight/components/Search.astro';
55
import SiteTitle from './SiteTitle.astro';
66
import SocialIcons from '@astrojs/starlight/components/SocialIcons.astro';
7-
import ThemeSelect from '@astrojs/starlight/components/ThemeSelect.astro';
87
---
98

109
<div class="header sl-flex">
@@ -18,7 +17,6 @@ import ThemeSelect from '@astrojs/starlight/components/ThemeSelect.astro';
1817
<div class="sl-flex social-icons">
1918
<SocialIcons {...Astro.props} />
2019
</div>
21-
<ThemeSelect {...Astro.props} />
2220
<LanguageSelect {...Astro.props} />
2321
</div>
2422
</div>

0 commit comments

Comments
 (0)