v1.0.0

Installation

Get Veritheme — a pure-CSS component library with utility classes and design tokens.

CDN

Include Veritheme directly via CDN — no build step, no install.

Drop a <link> and <script> tag into your HTML. The JS bundle auto-initializes all interactive components.

jsDelivr

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/veritheme/veritheme.min.css">
<script src="https://cdn.jsdelivr.net/npm/veritheme/veritheme.min.js"></script>

unpkg

<link rel="stylesheet" href="https://unpkg.com/veritheme/veritheme.min.css">
<script src="https://unpkg.com/veritheme/veritheme.min.js"></script>

npm

Install Veritheme as a package and import the CSS in your build.

npm install veritheme

Then import the stylesheet in your entry file:

import 'veritheme/veritheme.min.css';
View on npm

shadcn CLI

Pull individual components into any project through the shadcn registry — only the CSS you need.

Every component is published as a shadcn registry item at veritheme.com/r/{name}.json. The CLI writes the component CSS to styles/veritheme/ and pulls dependencies (tokens, utilities, used components) automatically.

npx shadcn@latest add https://veritheme.com/r/button.json

Or register the @veritheme namespace once in your components.json:

{
  "registries": {
    "@veritheme": "https://veritheme.com/r/{name}.json"
  }
}
npx shadcn@latest add @veritheme/button

The full index lives at /r/registry.json. Import styles/veritheme/base.css once, then each component file after it.

Download ZIP

Download a pre-built ZIP with compiled CSS, minified CSS, theme files, and a readme.

Download the compiled bundle — ready to drop into any project. No build step required.

veritheme.css expanded CSS bundle (~70 KB)
veritheme.min.css minified CSS bundle (~58 KB)
veritheme.js expanded JS bundle (~35 KB)
veritheme.min.js minified JS bundle (~25 KB)
themes/ theme JSON files + manifest
Download ZIP

Source Files

Clone the repository and build Veritheme from source.

bash

Clone the GitHub repository to access source files, Sass/SCSS, and build scripts. Requires Node.js.

View on GitHub
git clone https://github.com/tarasenko-by/veritheme.git