Getting Started
A Starlight plugin to theme your site in the Rosé Pine Palette.
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”-
starlight-theme-rose-pineis a Starlight plugin. Install it by running the following command in your terminal:Terminal window npm install starlight-theme-rose-pineTerminal window pnpm add starlight-theme-rose-pineTerminal window yarn add starlight-theme-rose-pine -
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 starlightRosePine from 'starlight-theme-rose-pine'export default defineConfig({integrations: [starlight({plugins: [starlightRosePine()],title: 'My Docs',}),],}) -
Start the development server to preview the theme in action.