3.2.5 • Published 4 months ago

unocss-preset-prime v3.2.5

Weekly downloads
-
License
MIT
Repository
github
Last release
4 months ago

UnoCSS Preset Prime

UnoCSS preset for supporting Prime UI theme colors and icons.

Install

# npm
npm i -D unocss-preset-prime

# yarn
yarn add -D unocss-preset-prime

# pnpm
pnpm i -D unocss-preset-prime

:warning: Using PrimeIcons requires installing the @iconify-json/prime package and configuring presetIcons in your UnoCSS config file.

Initialize

// uno.config.ts

import { defineConfig, presetUno } from 'unocss';
import { presetPrime } from 'unocss-preset-prime';

export default defineConfig({
  presets: [presetUno(), presetPrime()],
});

// or with icon support

import { defineConfig, presetIcons, presetUno } from 'unocss';
import { presetPrime } from 'unocss-preset-prime';

export default defineConfig({
  presets: [
    presetUno(),
    presetIcons(),
    presetPrime({ icons: true }),
  ],
});

Options

presetPrime({
  /**
   * Use a preflight to set theme colors and font-family on body.
   *
   * @defaultValue `true`
   */
  preflight?: boolean;
  /**
   * Enable shortcuts for using `presetIcons` for PrimeIcons (ex. `pi-bars` and utilities like `pi-spin`).
   *
   * Requires installing the `@iconify-json/prime` package and configuring `presetIcons` in your UnoCSS config file.
   *
   * @defaultValue `false`
   */
  icons?: boolean;
});

Include Prime Components in Content Pipeline

To support parsing class names on internal Prime components, you can include the following in your UnoCSS config depending on your bundler and framework. Below is an example for Vite + PrimeReact. Be sure to include the default regex as well!

content: {
  pipeline: {
    include: [
      /(.*\/)primereact(.*)\.(c|m)?(js)(x?)$/, // PrimeReact
      /\.(vue|svelte|[jt]sx|mdx?|astro|elm|php|phtml|html)($|\?)/, // Default
    ],
  },
},

Extending

This preset exports helpful types and the generated theme colors directly for extending the theme to support application specific semantic colors.

// uno.config.ts

import { defineConfig, presetUno } from 'unocss';
import { presetPrime, primeThemeColors } from 'unocss-preset-prime';

export default defineConfig({
  presets: [presetUno(), presetPrime()],
  theme: {
    colors: {
      success: primeThemeColors.green[500],
      warning: primeThemeColors.yellow[500],
      error: primeThemeColors.red[500],
    },
  },
});
3.2.5

4 months ago

3.2.4

5 months ago

3.2.3

5 months ago

3.2.2

7 months ago

3.2.1

9 months ago

3.2.0

10 months ago

3.1.0

10 months ago

3.0.1

11 months ago

3.0.0

11 months ago

2.0.1

1 year ago

2.0.0

1 year ago

1.2.1

1 year ago

1.2.0

2 years ago

1.1.0

2 years ago

1.0.0

2 years ago