Skip to content

Getting Started

This is a clean documentation page. All styling comes from Starlight’s theme system automatically. No hardcoded colors.

Regular paragraphs, bold text, italic text, and inline code all work automatically.

  • Bullet lists work
  • No custom styling needed
  • They inherit theme colors
  1. Numbered lists too
  2. Everything is themed
  3. Automatically
function example() {
return "Code blocks are automatically styled";
}
FeatureStatusNotes
MarkdownWorksAuto-themed
ComponentsWorksAuto-themed
Custom HTMLAvoidNeeds manual colors

Simple Card

Cards are great for feature highlights. They automatically use theme colors.

Another Card

No need to specify colors - everything inherits from the theme.

Download the .dmg file and drag to Applications.

  1. Connect your data

    Upload a file or connect to a database.

  2. Ask a question

    Type your question in plain English.

  3. Get insights

    Review the analysis and visualizations.

Status: Stable

Version: v2.0


Don’t do this in new docs:

// ❌ BAD - Hardcoded colors that bypass theming
<div class="bg-violet-900/20 border-purple-700 text-emerald-200">
Custom styled content
</div>

Instead, use Starlight components or standard markdown which automatically inherit theme colors.

For sustainable docs that respect the theme:

  1. Use standard markdown for text, lists, code, tables
  2. Use Starlight components for callouts, cards, tabs, steps
  3. Avoid custom HTML with hardcoded Tailwind colors