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

@auliyapal/minimalis-ui-system

v1.0.0

Published

Minimalis UI Design System - Dark Blue Theme

Readme

🎨 Minimalis UI System

Sebuah Design System berbasis JavaScript (Vanilla JS) dengan konsep minimalis modern dan tema Dark Blue & Black, dibuat untuk memenuhi Tugas UAS Design System.

Project ini berisi kumpulan komponen UI reusable yang sederhana, konsisten, dan mudah dikembangkan tanpa framework tambahan.


📌 Identitas Proyek

  • Nama Proyek : Minimalis UI System
  • Mata Kuliah : Design System
  • Jenis Tugas : UAS
  • Teknologi : Vanilla JavaScript + HTML + CSS (inline style)
  • Build Tool : tsup

✨ Fitur Utama

  • 🎯 Desain minimalis & konsisten
  • 🌙 Tema warna Dark Blue & Hitam
  • ♻️ Komponen reusable
  • ⚡ Tanpa framework (React/Vue)
  • 📦 Build siap distribusi (dist/)

🧩 Komponen UI

Project ini memiliki 5 komponen utama:

  1. Button Tombol utama dengan gaya modern dan hover effect.

  2. Input Field input dengan border halus dan warna gelap.

  3. Card Container konten dengan judul dan deskripsi.

  4. Alert Notifikasi sukses dengan warna kontras.

  5. Badge Label status berbentuk pill.


🎨 Tema Warna

| Elemen | Warna | | ---------------- | --------- | | Background utama | #020617 | | Biru utama | #2563eb | | Biru hover | #1d4ed8 | | Teks utama | #f8fafc | | Teks sekunder | #cbd5f5 | | Border | #1e293b |


📂 Struktur Folder

minimalis-ui-system/
├── src/
│   ├── components/
│   │   ├── Button.js
│   │   ├── Input.js
│   │   ├── Card.js
│   │   ├── Alert.js
│   │   └── Badge.js
│   └── index.js
├── dist/
│   ├── index.js
│   └── index.cjs
├── demo.html
├── tsup.config.js
├── package.json
└── README.md

🚀 Cara Menjalankan Project

1️⃣ Install Dependencies

npm install

2️⃣ Build Project

npm run build

Output build akan tersedia di folder dist/.


👀 Cara Melihat Tampilan (Demo)

Buka file berikut langsung di browser:

demo.html

File ini menampilkan seluruh komponen UI dengan tema Dark Blue secara visual.


🧪 Contoh Penggunaan

import { Button, Input, Card, Alert, Badge } from "./dist/index.js";

const container = document.createElement("div");
container.append(
  Button({ label: "Primary Button" }),
  Input({ placeholder: "Nama pengguna" }),
  Card({
    title: "Design System",
    content: "Tema biru hitam minimalis"
  }),
  Alert({ message: "Data berhasil disimpan" }),
  Badge({ label: "ACTIVE" })
);

document.body.append(container);

📚 Tujuan Pembelajaran

  • Memahami konsep Design System
  • Menerapkan konsistensi visual
  • Membuat komponen UI reusable
  • Menggunakan build tool modern (tsup)

📝 Catatan

  • Project ini dibuat tanpa framework untuk fokus pada konsep dasar.
  • Semua styling menggunakan JavaScript agar mudah dikembangkan.

🙌 Penutup

Terima kasih telah melihat project ini. Semoga project Minimalis UI System dapat menjadi contoh sederhana namun rapi dalam penerapan Design System.

✨ Dibuat dengan penuh semangat belajar ✨