Everything you need to build futuristic interfaces
Production-ready components from Buttons to Command Palettes, all with the FUI aesthetic baked in.
Cyber Dark and Cyber Light presets with full CSS variable theming system. Build your own themes.
Built-in animations for every component. Entrance, hover, and exit transitions with reduced motion support.
Accessible by default. Built on Radix UI primitives for keyboard navigation, screen readers, and ARIA.
Custom Tailwind plugin with spectre-ui design tokens, HUD corners, grid backgrounds, and glow effects.
Full TypeScript support with exported interfaces, generic components, and IntelliSense-friendly APIs.
Ship faster with our MCP server. Your AI coding assistant gets full access to spectre-ui docs, component APIs, design tokens, and prompt templates.
Get up and running in under a minute
import { SpectreThemeProvider, Button, Card } from "@spectre-ui/core";
import "@spectre-ui/core/styles.css";
function App() {
return (
<SpectreThemeProvider defaultTheme="dark">
<Card variant="hud">
<Button variant="primary">
Launch Mission
</Button>
</Card>
</SpectreThemeProvider>
);
}