Quickstart
Install the Abstract Data Starlight theme and have a branded documentation site running in under five minutes.
Installation
Section titled “Installation”Add the theme to your Astro project as a Starlight plugin. The package ships fully configured — drop it in astro.config.mjs and the brand surfaces apply automatically.
# add the themebun add @abstractdata/starlight-themeThen register the plugin in your Starlight config:
import { defineConfig } from 'astro/config';import starlight from '@astrojs/starlight';import abstractData from '@abstractdata/starlight-theme';
export default defineConfig({ integrations: [ starlight({ title: 'Acme Docs', plugins: [ abstractData({ motion: 'full', // 'full' | 'calm' credit: 'auto', // 'auto' | 'hide' }), ], }), ],});Verify the install
Section titled “Verify the install”Run the dev server and navigate to localhost:4321. You should see the HUD surface with your project’s title in the top bar.
bun devWhat’s next
Section titled “What’s next”- Configure your brand colors (or accept the Abstract Data defaults).
- Switch to Calm mode for client projects that want less visual energy.
- Wire up GitHub Pages deployment.
Built by Abstract Data