Download
Get VelinStyle via CDN for the fastest setup, install it with npm for build-tool integration, or download the compiled files directly.
CDN
Use the unpkg CDN to load VelinStyle without any download or installation. Simply add these
tags to your document's <head>:
<!-- VelinStyle CSS -->
<link rel="stylesheet"
href="https://unpkg.com/@birdapi/velinstyle@0.8.0/dist/velinstyle.min.css">
<!-- VelinStyle Web Components (optional, IIFE) -->
<script
src="https://unpkg.com/@birdapi/velinstyle@0.8.0/dist/velinstyle-components.iife.js"></script>
You can also use jsDelivr as an alternative CDN:
<link rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@birdapi/velinstyle@0.8.0/dist/velinstyle.min.css">
npm
Install VelinStyle as a dependency in your Node.js project to integrate it with your build pipeline (Vite, Webpack, Rollup, etc.):
# npm
npm install @birdapi/velinstyle
# yarn
yarn add @birdapi/velinstyle
# pnpm
pnpm add @birdapi/velinstyle
Then import the CSS in your entry file:
// Import all of VelinStyle CSS
import '@birdapi/velinstyle/dist/velinstyle.min.css';
// Optional: import Web Components
import '@birdapi/velinstyle/dist/velinstyle-components.min.js';
Compiled CSS & JS
Download the ready-to-use compiled files. The archive contains minified and unminified versions, theme presets, and the Web Components bundle.
Contains CSS, JS components, theme presets, and plain CSS source modules.
Source Files
If you want to compile VelinStyle yourself or customize the CSS source, clone the repository and build from source:
git clone https://github.com/SkyliteDesign/velinstyle.git
cd velinstyle
npm install
npm run build