1.4.3 • Published 5 months ago

shadcn-theme-editor v1.4.3

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

Next.js React TypeScript

git-last-commit GitHub commit activity GitHub top language

minified size

NPM Version GitHub


šŸ“ Overview

Shadcn Theme Editor is a user-friendly component designed to simplify the process of managing and customizing theme colors in Shadcn-based projects. This package provides an intuitive UI with buttons for different color properties, allowing developers to easily adjust and preview theme colors in real-time. Although the package is optimized for ease of use, its build size is substantial, so it is recommended to install it as a development dependency. This tool empowers developers to create consistent, visually appealing themes without diving into complex CSS, making it an essential addition to your Shadcn toolkit.


šŸš€ Getting Started

Installation

To install the package as a development dependency, use one of the following commands:

npm:

npm install shadcn-theme-editor --save-dev
yarn add shadcn-theme-editor --dev
pnpm add shadcn-theme-editor --save-dev

šŸ“– Usage

import default and add in app/layout.tsx file

import ShadcnThemeEditor from "shadcn-theme-editor";

or (in this way, it doesn't include the component in the production build)

let ShadcnThemeEditor: any;
if (process.env.NODE_ENV === 'development') {
  import('shadcn-theme-editor').then(module => {
    ShadcnThemeEditor = module.default; // or module, depending on the module's export
  });
} else {
  // eslint-disable-next-line react/display-name
  ShadcnThemeEditor = ()=>null
}

and use

<ShadcnThemeEditor />

Screenshots

How to Use the UI

usage.md

Upcoming Features

Special Thanks

I would like to extend my heartfelt thanks to the following individuals and projects:

šŸ“„ License

This project is licensed under the ā„¹ļø MIT License.

1.4.0-alpha.2

8 months ago

1.4.0-alpha.3

8 months ago

1.4.3

5 months ago

1.4.2

6 months ago

1.4.2-beta

6 months ago

1.4.1

8 months ago

1.4.0

8 months ago

1.4.0-alpha.4

8 months ago

1.4.0-alpha.1

10 months ago

1.3.3

10 months ago

1.3.2

10 months ago

1.3.1

11 months ago

1.3.0

11 months ago

1.3.0-beta

11 months ago

1.3.0-alpha.4

11 months ago

1.3.0-alpha.3

11 months ago

1.3.0-alpha.2

11 months ago

1.2.0-alpha.1

11 months ago

1.2.0

11 months ago

1.1.0

11 months ago

1.0.0

11 months ago

0.1.0

11 months ago

0.0.11

11 months ago

0.0.10

11 months ago

0.0.9

11 months ago

0.0.8

11 months ago

0.0.7

11 months ago

0.0.6

11 months ago

0.0.5

11 months ago

0.0.4

11 months ago

0.0.3

11 months ago

0.0.2

11 months ago

0.0.1

11 months ago