npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@actabldesign/bellhop-styles

v0.0.4

Published

Shared CSS styles for Bellhop design system

Readme

Bellhop Styles

Shared CSS styles and design tokens for the Bellhop design system. This package provides framework-agnostic styles that can be used with Angular, React, or any other framework.

Installation

npm install @actabldesign/bellhop-styles

Usage

Import All Styles

Import the complete style package in your main CSS or TypeScript/JavaScript file:

@import '@actabldesign/bellhop-styles';

or in TypeScript/JavaScript:

import '@actabldesign/bellhop-styles';

Import Individual Style Modules

For more granular control, you can import individual style modules:

@import '@actabldesign/bellhop-styles/base/colors.css';
@import '@actabldesign/bellhop-styles/base/typography.css';
@import '@actabldesign/bellhop-styles/base/spacing.css';
@import '@actabldesign/bellhop-styles/base/shadows.css';
@import '@actabldesign/bellhop-styles/base/radius.css';

Using Design Tokens

All design tokens are available as CSS custom properties:

.my-component {
  /* Colors */
  background-color: var(--color-primary-500);
  color: var(--color-neutral-800);

  /* Spacing */
  padding: var(--spacing-4);
  margin: var(--spacing-2);

  /* Typography */
  font-family: var(--font-inter);
  font-size: var(--text-sm-size);
  line-height: var(--text-sm-line);

  /* Shadows */
  box-shadow: var(--shadow-md);

  /* Border Radius */
  border-radius: var(--radius-md);
}

Design Tokens Reference

Colors

Primary Colors

  • --color-primary-50 to --color-primary-900
  • --color-primary-500 (default brand color)

Neutral Colors

  • --color-neutral-50 to --color-neutral-900
  • --color-white, --color-black

Semantic Colors

  • Success: --color-success-50 to --color-success-900
  • Warning: --color-warning-50 to --color-warning-900
  • Error: --color-error-50 to --color-error-900
  • Info: --color-info-50 to --color-info-900

Typography

Font Families

  • --font-inter: Primary font family

Font Sizes

  • --text-xs-size (0.75rem)
  • --text-sm-size (0.875rem)
  • --text-base-size (1rem)
  • --text-lg-size (1.125rem)
  • --text-xl-size (1.25rem)
  • And more...

Font Weights

  • --font-light (300)
  • --font-normal (400)
  • --font-medium (500)
  • --font-semibold (600)
  • --font-bold (700)

Spacing

Spacing scale from 0.5 to 96 (in 0.25rem increments):

  • --spacing-0-5 (0.125rem)
  • --spacing-1 (0.25rem)
  • --spacing-2 (0.5rem)
  • --spacing-4 (1rem)
  • --spacing-8 (2rem)
  • And more...

Shadows

  • --shadow-xs: Extra small shadow
  • --shadow-sm: Small shadow
  • --shadow-md: Medium shadow
  • --shadow-lg: Large shadow
  • --shadow-xl: Extra large shadow

Border Radius

  • --radius-sm (0.125rem)
  • --radius-md (0.25rem)
  • --radius-lg (0.5rem)
  • --radius-xl (1rem)
  • --radius-full (9999px)

Component Styles

The package includes pre-built component styles that follow the Bellhop design system. These are automatically applied when using Bellhop components.

Layout Classes

.app-layout { /* Dashboard layout */ }
.app-sidebar { /* Sidebar container */ }
.app-main { /* Main content area */ }
.bellhop-content-container { /* Content wrapper */ }

Framework Integration

React

import '@actabldesign/bellhop-styles';

function App() {
  return (
    <div className="app-layout">
      {/* Your components */}
    </div>
  );
}

Angular

Add to your src/styles.css:

@import '@actabldesign/bellhop-styles';

Vanilla JavaScript/HTML

<link rel="stylesheet" href="node_modules/@actabldesign/bellhop-styles/index.css">

Development

This package is built using Rollup and PostCSS.

Building

npm run build:lib:styles

License

MIT