github-actions[bot] 161fd78643
chore(main): release 1.1.1 (#69)
Co-authored-by: TheOtterlord <64310361+TheOtterlord@users.noreply.github.com>
2026-01-25 11:46:34 +00:00
2026-01-25 11:46:34 +00:00
2025-04-18 14:58:38 +01:00
2024-10-19 19:54:34 +01:00
2024-10-19 19:54:34 +01:00
2025-04-18 18:17:38 +01:00
2025-04-22 02:03:50 +01:00

Logo
Catppuccin for Starlight

Previews

🌻 Latte
🪴 Frappé
🌺 Macchiato
🌿 Mocha

Usage

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

    npm install @catppuccin/starlight
    pnpm add @catppuccin/starlight
    yarn add @catppuccin/starlight
    
  2. Add the theme to your Starlight config.

    import catppuccin from "@catppuccin/starlight";
    
    export default defineConfig({
      // ...
      integrations: [
        starlight({
          // ...
          plugins: [catppuccin()],
        }),
      ],
    });
    
  3. (Optional) Customize your theme for light/dark mode using flavor and accent.

    import catppuccin from "@catppuccin/starlight";
    
    export default defineConfig({
      // ...
      integrations: [
        starlight({
          // ...
          plugins: [
            catppuccin({
              dark: { flavor: "macchiato", accent: "sky" },
              light: { flavor: "latte", accent: "sky" },
            }),
          ],
        }),
      ],
    });
    

Development

Important

catppuccin/whiskers is required to re-generate the themes directory.

pnpm install
pnpm build

💝 Thanks to

 

Copyright © 2021-present Catppuccin Org

Description
No description provided
Readme MIT 4.8 MiB
Languages
CSS 85.6%
MDX 11.2%
TypeScript 3.2%