Install Theme
-
Install the theme package to your project with your preferred package manager:
Terminal window npm i starlight-theme-gruvboxTerminal window yarn add starlight-theme-gruvboxTerminal window pnpm add starlight-theme-gruvbox -
Add the theme to your Starlight config.
astro.config.mjs import gruvbox from "starlight-theme-gruvbox";export default defineConfig({// ...integrations: [starlight({// ...plugins: [gruvbox()]})]})