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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@runwell/toumana-brand-kit

v1.0.0

Published

Design tokens and theme for Jardins de Toumana - Mediterranean warmth with gold accent

Readme

@runwell/toumana-brand-kit

Design tokens and theme package for Jardins de Toumana - a boutique apart-hotel in Djerba, Tunisia.

Installation

npm install @runwell/toumana-brand-kit

Usage

CSS Variables

Import the CSS file for your theme:

/* Light theme (default) */
@import '@runwell/toumana-brand-kit/css/toumana.light.css';

/* Dark theme */
@import '@runwell/toumana-brand-kit/css/toumana.dark.css';

Then use CSS variables in your styles:

.button {
  background-color: var(--color-primary);
  color: var(--color-on-primary);
  border-radius: var(--radius-md);
}

Tailwind CSS

Add the preset to your tailwind.config.js:

const toumanaPreset = require('@runwell/toumana-brand-kit/tailwind/preset');

module.exports = {
  presets: [toumanaPreset],
  // ... your config
};

Then use the colors and tokens:

<button class="bg-gold-500 text-white rounded-md px-4 py-2">
  Reserver
</button>

Material UI

Import and use the pre-built themes:

import { lightTheme, darkTheme } from '@runwell/toumana-brand-kit/mui';
import { ThemeProvider } from '@mui/material/styles';

function App() {
  return (
    <ThemeProvider theme={lightTheme}>
      {/* Your app */}
    </ThemeProvider>
  );
}

Or customize the theme options:

import { lightThemeOptions } from '@runwell/toumana-brand-kit/mui/light';
import { createTheme } from '@mui/material/styles';

const customTheme = createTheme({
  ...lightThemeOptions,
  // Your customizations
});

JavaScript/TypeScript

Import types and utilities:

import { createThemeSwitcher, toumanaColors } from '@runwell/toumana-brand-kit';

// Create a theme switcher
const theme = createThemeSwitcher({
  defaultMode: 'light',
  onModeChange: (mode) => console.log(`Switched to ${mode} mode`),
});

theme.init(); // Apply initial theme

// Quick access to brand colors
console.log(toumanaColors.gold); // #E09900

Raw JSON Tokens

For custom integrations, access the raw tokens:

import lightTokens from '@runwell/toumana-brand-kit/json/toumana.light.json';
import darkTokens from '@runwell/toumana-brand-kit/json/toumana.dark.json';
import coreTokens from '@runwell/toumana-brand-kit/json/core.json';

Color Palette

Primary Colors

| Name | Hex | Usage | |------|-----|-------| | Toumana Gold | #E09900 | Primary accent, CTAs, links | | Toumana Teal | #004B56 | Footer, secondary, dark mode | | Mediterranean Cream | #F2E3C6 | Surface, backgrounds | | White | #FFFFFF | Primary background |

Color Scales

Each color includes a full scale from 50-900:

  • gold-50 to gold-900
  • teal-50 to teal-900
  • cream-50 to cream-900
  • gray-50 to gray-900

Semantic Colors

  • success: #10B981
  • warning: #F59E0B
  • error: #EF4444
  • info: #2EA3F2

Typography

  • Sans-serif (Headlines): Manrope
  • Serif (Elegant): Noto Serif
  • Body: Open Sans
  • Monospace: JetBrains Mono

Design Tokens

Spacing

4px base unit: 0, 1, 2, 3, 4, 5, 6, 8, 10, 12, 16, 20, 24, 32

Border Radius

Rounded corners for warm, welcoming aesthetic:

  • none: 0
  • sm: 3px
  • md: 6px
  • lg: 8px
  • xl: 12px
  • 2xl: 16px
  • full: 9999px

License

MIT