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

chae-ui

v0.2.1

Published

한국 전통 건축 양식 기반 React UI 컴포넌트 — Korean traditional architecture-inspired React components built on shadcn/ui

Readme

채 UI (Chae UI)

한국 전통 건축 양식에서 영감을 얻은 shadcn/ui 기반 React UI 라이브러리.

npm

소개 사이트 보기

설치

npm install chae-ui

React 18 이상, Pretendard + 나눔명조 웹폰트가 필요합니다.

<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/variable/pretendardvariable.min.css" />
<link href="https://fonts.googleapis.com/css2?family=Nanum+Myeongjo:wght@400;700;800&display=swap" rel="stylesheet" />

사용법

import { Button, Card, Badge } from "chae-ui";

function App() {
  return (
    <Card variant="changho">
      <Badge>청</Badge>
      <Button variant="accent">확인</Button>
    </Card>
  );
}

CSS 변수는 chae-ui import 시 자동 포함됩니다. 테마 상수만 별도로 사용하려면:

import { dancheong, nature } from "chae-ui/theme";

채(채)란

는 두 가지 의미를 동시에 품고 있습니다.

  • (채색 채) — 고운 빛깔, 채색. 단청의 오방색처럼 건축에 색을 입히는 행위.
  • (고유어) — 한옥에서 건물 한 동을 세는 단위. 안채, 사랑채, 별채.

디자인 원천

| 소재 | UI 매핑 | 구현 | |------|---------|------| | 단청 | 컬러 시스템, 색띠, Alert 위계 | CSS variables, flexbox bands | | 창호 | 격자 레이아웃, Card 프레임, Dialog | border, background-image | | 한지 | 배경 질감, 반투명 오버레이 | SVG noise filter, backdrop-filter | | 목재 | 테두리, 사이드바, 구분선 | border-color, background | | 석탑 | Stepper, 직각 요소 | border-radius: 0, stacking | | 황토 | Warm neutral, secondary 팔레트 | --secondary variable |

컴포넌트 (22개)

| 카테고리 | 컴포넌트 | |----------|----------| | 일반 | Button, Card, Badge, Avatar, Separator | | 입력 | Input, Textarea, Select, Checkbox, RadioGroup, Switch | | 피드백 | Alert, Toast, Progress, Skeleton | | 내비게이션 | Tabs, Breadcrumb, Stepper, Accordion | | 데이터 | Table | | 오버레이 | Dialog | | 장식 | DancheongStripe |

디자인 원칙

  1. 단청은 그라디언트가 아님 — 명확한 색띠로 구분
  2. 오방색 위계 — 청(일반), 황(주의), 적(경고)
  3. 창호의 구조감 — 목재 테두리 3px, --changho-border 변수
  4. 한지의 따뜻함 — 배경은 순백이 아닌 #FAF6EF (한지색)
  5. 석의 비활성 — disabled 상태는 석(石) 색상으로 표현

웹폰트

  • 본문/UI: Pretendard — Inter 기반 한글 최적화
  • 제목/디스플레이: 나눔명조 — 전통 붓글씨 획 처리

프로젝트 구조

chae-ui/
├── src/
│   ├── styles/tokens.css     # CSS 변수 (오방색, 자연소재, 시맨틱)
│   ├── lib/theme.js          # JS 테마 상수, 단청 프리셋
│   ├── components/           # 22개 React 컴포넌트
│   └── index.js              # Barrel export
├── site/                     # GitHub Pages 소개 사이트
├── vite.config.js            # 라이브러리 빌드 설정
└── package.json

라이선스

MIT