starlight-theme-sparkium
v0.1.6
Published
Starlight theme for documenting courses and lessons.
Downloads
7
Maintainers
Readme
starlight-theme-sparkium
A theme for documenting classes and courses. This is a fork of the Starlight Theme Rapide.
Usage
Initialize a new Astro Starlight project:
pnpm create astro --template starlightAdd the theme to your project:
pnpm add starlight-theme-sparkiumUpdate your
starlight.config.mjsto use the theme:import starlight from '@astrojs/starlight' import { defineConfig } from 'astro/config' import starlightThemeSparkium from 'starlight-theme-sparkium' export default defineConfig({ integrations: [ starlight({ plugins: [starlightThemeSparkium()], title: 'My Course', }), ], })
