@openscript-ch/starlight-theme
v0.1.32
Published
Starlight theme of openscript Ltd.
Readme
@openscript-ch/starlight-theme
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 @openscript-ch/starlight-themeUpdate your
starlight.config.mjsto use the theme:import starlight from '@astrojs/starlight' import openscriptTheme from '@openscript-ch/starlight-theme' import { defineConfig } from 'astro/config' export default defineConfig({ integrations: [ starlight({ plugins: [openscriptTheme()], title: 'My Course', }), ], })
