@untitled-theme/colors
TypeScript icon, indicating that this package has built-in type declarations

0.2.0 • Public • Published

@untitled-theme/colors

Untitled UI colors

Installation

npm install @untitled-theme/colors

Usage

// tailwind.config.ts
import colors from '@untitled-theme/colors';
import type {Config} from 'tailwindcss';

const config: Config = {
  theme: {
    extend: {
      colors,
    },

    // 👇🏽 or this, to remove tailwind's default colors and use only untitled ui's
    colors,
  },
};

export default config;

for Panda

// panda.config.ts
import colors from '@untitled-theme/colors/panda';
import {defineConfig} from '@pandacss/dev';

export const config = defineConfig({
  theme: {
    extend: {
      tokens: {
        colors,
      },
    },
  },
});

Package Sidebar

Install

npm i @untitled-theme/colors

Weekly Downloads

68

Version

0.2.0

License

MIT

Unpacked Size

175 kB

Total Files

10

Last publish

Collaborators

  • calvojp