Skip to content

Install Theme

  1. Install the theme package to your project with your preferred package manager:

    Terminal window
    npm i starlight-theme-gruvbox
  2. Add the theme to your Starlight config.

    astro.config.mjs
    import gruvbox from "starlight-theme-gruvbox";
    export default defineConfig({
    // ...
    integrations: [
    starlight({
    // ...
    plugins: [
    gruvbox()
    ]
    })
    ]
    })