ui

To use the Luminescent UI Tailwind Library, you need to install the package from npm.

pnpm install @luminescent/ui

Once installed, include the following to your tailwind css file

@import "@luminescent/ui";
@plugin "@luminescent/ui/lum-bg";

Once finished, you can use the classes included, shown in the documentation.

Luminescent UI also provides default formatting for various elements

This is mainly for people who would like to easily format Markdown elements, you can add it to your tailwind css file

@import "@luminescent/ui/formatting";

To use the Luminescent UI Qwik Library, you need to install the qwik package from npm in addition to the main package.

pnpm install @luminescent/ui-qwik

Once installed, include the following to your tailwind css file after the previous imports

@config "@luminescent/ui-qwik/config";
@source "../node_modules/@luminescent/ui-qwik";

To use the Luminescent UI React Library, you need to install the react package from npm in addition to the main package.

pnpm install @luminescent/ui-react

Once installed, include the following to your tailwind css file after the previous imports

@source "../node_modules/@luminescent/ui-react";