Getting Started
A customized Astro Starlight theme combining modern and retro elements.
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-terminalis a Starlight plugin. Install it by running the following command in your terminal:Terminal window npm install starlight-theme-terminalTerminal window pnpm add starlight-theme-terminalTerminal window yarn add starlight-theme-terminal -
Configure the plugin in your Starlight configuration in the
astro.config.mjsfile.// astro.config.mjsimport starlight from '@astrojs/starlight'import { defineConfig } from 'astro/config'import starlightThemeTerminal from 'starlight-theme-terminal'export default defineConfig({integrations: [starlight({plugins: [starlightThemeTerminal()],title: 'My Docs',}),],}) -
Start the development server to preview the theme in action.