Skip to content

speakeasy-api/moonshine

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

πŸ₯ƒ Moonshine πŸ₯ƒ

NPM

Speakeasy's design system.

Installation & Setup

1. Install the package and dependencies

pnpm add @speakeasy-api/moonshine

Make sure you install Lucide as it is a peer dependency of this package:

pnpm add lucide-react

2. Configure Tailwind CSS

Add this to the top of your project's CSS file where you configure Tailwind:

/* This must come BEFORE your Tailwind imports */
@reference "../node_modules/@speakeasy-api/moonshine/src/global.css";

/* Your Tailwind setup */
@import 'tailwindcss';

Note: The @reference directive is required for Tailwind v4 to recognize Moonshine's custom utilities and make them available in your project.

3. Import Moonshine's Compiled CSS

In your main app file (or root layout):

import '@speakeasy-api/moonshine/moonshine.css'

4. Set up the Provider

Wrap your application in the MoonshineConfigProvider component:

import { MoonshineConfigProvider } from '@speakeasy-api/moonshine'
;<MoonshineConfigProvider themeElement={document.documentElement}>
  <App />
</MoonshineConfigProvider>

5. Configure Custom Fonts (Optional)

Moonshine uses custom fonts (Diatype, Tobias). If you have licenses for these fonts, add them to your project:

/* In your global CSS */
@font-face {
  font-family: 'Diatype';
  src: url('/fonts/diatype/ABCDiatype-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: 'Diatype';
  src: url('/fonts/diatype/ABCDiatype-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: block;
}

/* Add other font weights and Tobias font-face declarations as needed */

If you don't have these fonts, the design system will fall back to system fonts.

6. Use Components and Utilities

import { Grid } from '@speakeasy-api/moonshine'

// Use semantic utility classes
;<div className="text-heading-lg bg-surface-primary">Hello Moonshine!</div>

TypeScript Support for Utility Classes

Moonshine provides TypeScript types for all available utility classes to improve your development experience:

import type { MoonshineClasses } from '@speakeasy-api/moonshine/types/utilities'

// Use for type-safe className props
interface MyComponentProps {
  className?: MoonshineClasses
}

// Get autocomplete for all available utilities
const styles: MoonshineClasses = 'text-heading-lg' // βœ… Autocompletes!

The types are automatically generated during the build process and include:

  • All custom utilities (text-heading-xl, bg-surface-primary, etc.)
  • All semantic color utilities (bg-warning, text-success, etc.)
  • Full IntelliSense support in your IDE

πŸ’‘ Tip: This prevents typos and helps you discover available utilities without leaving your editor!

The package is built with vite, and is distributed in both ESM and CommonJS formats.

Using Tailwind Merge

Moonshine exports a custom wrapper for Tailwind Merge to avoid unexpected clashes between semantic class names. This version should be used in favour of using tailwind merge directly.

import { cn } from '@speakeasy-api/moonshine'

return (
  <span
    className={cn('text-body-md', props.muted ? 'text-muted' : 'text-default')}
  >
    Lorem Ipsum
  </span>
)

Design System Architecture

Moonshine is a utility-first design system built on top of Tailwind CSS v4. It provides a curated set of design tokens and utilities that enforce consistency while preventing common pitfalls.

CSS Architecture

Our CSS is organized into three main files:

  1. base.css - Primitive design tokens (colors, fonts, spacing scales)

    • Contains raw values that should not be used directly in components
    • Defines theme-aware semantic tokens that adapt to light/dark mode
    • Houses base element styles and resets
  2. utilities.css - The public API of our design system

    • Exposes carefully crafted utility classes like text-heading-xl, bg-surface-primary
    • Enforces typography combinations to prevent arbitrary text styling
    • Provides semantic color utilities that automatically handle theming
  3. global.css - Orchestration and configuration

    • Imports Tailwind and configures plugins
    • Defines custom variants (dark mode, interaction states)
    • Sets up responsive utility generation

Design Principles

  • Constrained, not restrictive: We provide a curated set of utilities that make the right thing easy
  • Semantic, not arbitrary: Use text-heading-lg not text-[29px] leading-[1.5]
  • Theme-aware by default: Colors and styles automatically adapt to light/dark mode
  • Type-safe when possible: Utilities are designed to work with TypeScript autocomplete

Usage Guidelines

βœ… Do:

  • Use semantic utilities: bg-warning, text-body, border-error
  • Leverage pre-defined typography scales: text-heading-xl, text-body-sm
  • Stick to the exposed utility classes in utilities.css

❌ Don't:

  • Access raw color values: bg-[var(--color-neutral-200)]
  • Create arbitrary combinations: text-[1.813rem] leading-[1.5]
  • Override the design system without discussing with the team

For more technical details about the CSS architecture, see CLAUDE.md.

Troubleshooting

Utilities not working

Make sure you've added the @reference directive to your global CSS file. This is required for Tailwind v4 to pick up Moonshine's utility classes.

Fonts not loading

The custom fonts (Diatype, Tobias) require licenses. If you don't have them, the system will use fallback fonts. Ensure your font files are in the correct path if you do have licenses.

Dark mode not working

Ensure the themeElement prop in MoonshineConfigProvider points to the element where your dark class is applied (usually document.documentElement).

TypeScript types not found

Make sure you're importing from the correct path:

import type { MoonshineClasses } from '@speakeasy-api/moonshine/types/utilities'

Contributing

Setup

  1. Clone the repository
  2. Run pnpm install to install the dependencies
  3. Run pnpm build to build the package
  4. Run pnpm storybook to start the storybook server

If you'd like to develop Moonshine in tandem with another app, you can follow the steps outlined below in the Linking the library locally section.

Guidelines

  • We're using Storybook to develop the components.
  • Components should be added to the src/components directory.
  • Each component should have its own directory. e.g src/components/Box, src/components/Button etc.
  • Each component should have a corresponding Storybook story file located at src/components/{Your Component}/index.stories.tsx, with several stories for different use cases.
  • Shadcn components should not be exported directly from src/index.ts.

Workflow

We use Semantic Release to handle versioning and changelog generation.

The release workflow is as follows:

  1. Create a new branch for your changes
  2. Make your changes
  3. Add a commit with the conventional changelog message format (e.g feat(component-name): what the commit does)
  4. Push your changes to GitHub
  5. Merge the PR into the main branch
  6. A new version is released to NPM

Conventional changelog reference

Only certain commit types will trigger a release (noted below in bold).

  • feat: A new feature (triggers a minor release)
  • fix: A bug fix (triggers a patch release)
  • perf: A code change that improves performance (triggers a patch release)
  • refactor: A code change that neither fixes a bug nor adds a feature (no release)
  • docs: Documentation only changes (no release)
  • style: Changes that do not affect the meaning of the code (no release)
  • test: Adding missing tests (no release)
  • ci: Changes to CI configuration files and scripts (no release)
  • build: Changes that affect the build system or external dependencies (no release)
  • chore: Other changes that don't modify src or test files (no release)
Breaking changes

If a PR is a breaking change for consumers, then the commit message should use a bang (!) to signify a breaking change, which will trigger a major release:

feat(component-name)!: breaking change description
fix(component-name)!: breaking change description

Testing

We're using Vitest and @testing-library/react for testing components when necessary.

Run pnpm test to run the tests.

Linking the library locally

Run pnpm build:watch within Moonshine to build the library and watch for changes.

Then run pnpm link ../path/to/moonshine within the app that will use the library. For the registry webapp directory (assuming a standard cloning setup where moonshine is a sibling of the registry repo), it would be:

pnpm link ../path/to/moonshine

The lockfile file within your app should referenced the linked copy:

'@speakeasy-api/moonshine':
  specifier: ^0.43.1
  version: link:../../../../moonshine

About

Speakeasy's design system πŸ’…

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 11