Quick Start
Install via npm, load from a CDN, or just link the files — no build step required.
1 · Install via npm
npm install arekui
2 · Link the files
<link rel="stylesheet" href="node_modules/arekui/arekui.css">
<script src="node_modules/arekui/arekui.js"></script>
Or copy arekui.css + arekui.js into your project and link them like any static file.
3 · Or load from CDN
<link rel="stylesheet" href="https://unpkg.com/arekui/arekui.css">
<script src="https://unpkg.com/arekui/arekui.js"></script>
4 · Bundlers (Vite / webpack)
import "arekui/arekui.css";
Add arekui.js with a <script> tag before </body> — all behaviors are attribute-driven (data-ar-*).
5 · Choose a theme
<html data-theme="light"> <!-- light | dark | neo | pixel -->
No attribute set? Falls back to system preference. Your pick is saved to localStorage("arekui-theme").