Getting Started
A Starlight theme heavily inspired by the timeless design of the legacy Astro documentation. Check out the various examples to see the theme in action.
Prerequisites
Section titled “Prerequisites”You will need to have a Starlight website set up. If you don’t have one yet, you can follow the “Getting Started” guide in the Starlight docs to create one.
Installation
Section titled “Installation”-
The Starlight Vintage theme is a Starlight plugin that you can install using your favorite package manager:
Terminal window npm i starlight-theme-vintageTerminal window pnpm add starlight-theme-vintageTerminal window yarn add starlight-theme-vintageTerminal window ni starlight-theme-vintage -
Configure the plugin in your Starlight configuration in the
astro.config.mjsfile.astro.config.mjs import starlight from '@astrojs/starlight'import { defineConfig } from 'astro/config'import starlightThemeVintage from 'starlight-theme-vintage'export default defineConfig({integrations: [starlight({plugins: [starlightThemeVintage()],title: 'My Docs',}),],}) -
Start the development server to preview the theme in action.
That’s it! You should now see the Starlight Vintage theme applied to your Starlight website.