UI Style Kit CSS is a CSS-only theme and UI style preset library for accessible websites, dashboards, admin interfaces, and customer-facing pages.
It is separate from, but complementary to, Interactive Surface CSS. Use UI Style Kit CSS for visual identity, color themes, UI presets, layout mood, and native HTML styling. Use Interactive Surface CSS for interaction-state animation systems and surface behavior.
v2.2.0 adds the shared 12-token semantic producer contract and a manifest-backed 29-selector .ui-* component API across all 11 presets. Existing default and focused entrypoints remain compatible, including their deprecated structural helpers, and parser-based minification remains exactly pinned.
UI Style Kit CSS owns visual identity: themes, semantic .ui-* component paint, native HTML styling, and the advanced prefixed class API. It can be used alone, or paired with the sibling libraries when a project needs structural layout primitives or richer interaction-state behavior.
flowchart LR
App["Application markup"] --> Attrs["data-ui + data-theme + data-mode"]
Attrs --> USK["ui-style-kit-css"]
USK --> Themes["Shared --usk-* theme roles"]
USK --> Components["Prefixed component classes"]
USK --> Native["Scoped native HTML fallback"]
Layout["layout-style-css"] --> App
Surface["interactive-surface-css"] --> Bridge["Optional bridge bundle"]
Bridge --> USK
Components --> UI["Branded UI surface"]
Native --> UI
Themes --> UI
flowchart TB
Theme["styles/theme-colors.css"] --> Rgb["Concrete --usk-*-rgb channels"]
Rgb --> Modes["Light, dark, and contrast modes"]
Modes --> Prefixes["Per-style prefixed aliases"]
Prefixes --> Rules["Component, utility, and native rules"]
Demo["Demo token workbench"] --> Overrides["Copyable :where([data-ui][data-theme][data-mode]) override block"]
Overrides --> Rgb
The demo page documents this flow directly: it shows computed RGB color tokens for the active theme and mode, lets developers edit them live, and copies the exact override block to drop into an app stylesheet.
These libraries stay standalone, but the current aligned set is:
| Library | Aligned version | Owns |
|---|---|---|
ui-style-kit-css@2.2.0 |
current package version | visual identity, color themes, UI paint, native HTML styling, content wrapping, and bridge tokens |
interactive-surface-css@1.6.0 |
published release | interaction-state primitives, surface behavior, state layers, and input affordances |
layout-style-css@3.0.1 |
published release | structural wrappers, grids, sections, app shells, and layout recipes |
The current combination is ui-style-kit-css@2.2.0, interactive-surface-css@1.6.0, and layout-style-css@3.0.1. UI Style Kit 2.2.0 is the current package version, and the release pipeline treats it as the active candidate only while that exact npm version is absent. Interactive Surface 1.6.0 and Layout Style 3.0.1 are published releases. The validated minimum remains ui-style-kit-css@2.1.0, interactive-surface-css@1.5.0, and layout-style-css@3.0.0.
Use one, two, or all three depending on the project. UI Style Kit does not require the sibling libraries, and the optional bridge only maps shared --usk-* roles into Interactive Surface tokens when consumers import it.
Every UI Style Kit visual or preset entrypoint also publishes a small, fully typed --ui-* semantic handshake. These tokens let companion libraries and third-party themes share paint, control geometry, focus, and default motion without depending on preset-specific names. They are optional fallbacks for consumers: package-specific tokens still take precedence, and standalone packages keep their existing legacy and literal defaults when the handshake is absent. See the token contract for the exact 12-token inventory.
A third-party producer can load its semantic token stylesheet before interactive-surface-css/standalone-preset.css. UI Style Kit's visual entrypoints support the same portable composition; keep the canonical theme bridge with state-core.css when specialized variant, level, and icon-role mappings are required.
For import order, ownership boundaries, and adoption paths, see the Ecosystem guide.
- 11 UI style systems
- 10 shared color schemes
light,dark, andcontrastmodes- Combined CSS bundle and per-style production imports
- Visual-only full and focused entrypoints for consumer-owned layouts
- Machine-readable
manifest.jsonpreset, theme, mode, class, and native-part capabilities - Shared
theme-colors.css,native-elements.css, andcontent-overflow.csslayers for all UI systems - Scoped native HTML element coverage, including semantic containers and inline text elements
- Visible
:focus-visibledefaults - Skip-link and visually-hidden helpers per style prefix
- Compact shared palette -> prefixed alias -> UI-rule token model
- Theme-driven card, panel, control, page-background, and spinner defaults
- Visible tooltip classes and native
[role="tooltip"]styling inside each UI scope - Font-family override variables for body, headings, controls, and mono text
- Canonical token-and-paint-only theme bridge for
interactive-surface-css/state-core.css - Deprecated stateful bridge exports retained for backward compatibility
- Reduced-motion, high-contrast, forced-colors, and print support
- Cascade-layered CSS for easier consumer overrides
- No runtime dependencies
npm install ui-style-kit-cssThe default bundle remains unchanged for all v2 releases. The root package and canonical . export resolve to the readable dist/ui-style-kit.css; the canonical ./min.css export resolves to the minified dist/ui-style-kit.min.css. The focused visual/<preset>.css entrypoints remain available for applications fixed to one visual system.
ui-style-kit-css/visual.css is the recommended entrypoint when consumers own layout. Making visual.css the package default remains only a v3 proposal; no v2 export is redirected as part of that proposal.
The ./css, ./css.css, and ./min exports are redundant deprecated compatibility aliases. They remain available throughout v2 with their existing targets: ./css and ./css.css match ., while ./min matches ./min.css. New integrations should use the canonical exports.
Use the generated default bundle for semantic components that can switch across every preset at runtime:
import "ui-style-kit-css";Use ui-style-kit-css/visual.css for the same 29-selector semantic runtime API without the deprecated prefixed layout selectors. The generated default, visual, and with-bridge bundles all support all 11 data-ui values.
Applications fixed to one preset can use a generated focused visual entrypoint. It includes semantic aliases scoped to that preset only:
import "ui-style-kit-css/visual/minimal-saas.css";The exact preset, theme, mode, class, and native-part capability matrix is available from ui-style-kit-css/manifest.json.
The standalone preset exports and longer styles/* paths remain advanced compatibility entrypoints. They preserve the prefixed API and do not promise multi-preset semantic switching:
import "ui-style-kit-css/minimal-saas.css";
// Equivalent raw source export:
import "ui-style-kit-css/styles/minimal-saas.css";In v2.1.0, legacy standalone style files continue to import the shared color-scheme, native-element fallback, and content-overflow layers. Bundlers that understand CSS @import resolve them automatically. If your build pipeline does not resolve CSS imports, import the shared dependencies before the style file:
import "ui-style-kit-css/theme-colors.css";
import "ui-style-kit-css/native-elements.css";
import "ui-style-kit-css/content-overflow.css";
import "ui-style-kit-css/minimal-saas.css";The explicit distribution path is also available for runtime switching:
import "ui-style-kit-css/dist/ui-style-kit.css";For the canonical all-three integration, import visual paint, the token-only theme bridge, Interactive Surface state mechanics, and Layout structure in this order:
import "ui-style-kit-css/visual.css";
import "ui-style-kit-css/interactive-surface-theme.css";
import "interactive-surface-css/state-core.css";
import "layout-style-css";The older stateful bridge and combined bundle remain public, deprecated compatibility paths. See the bridge migration guide when upgrading an existing v2 integration.
The default and visual-only bundles do not include either bridge. That keeps UI paint independent and prevents accidental duplicate bridge imports.
When the bridge is attached, add .interactive-surface to interactable elements and use data-surface-variant plus data-surface-level="1", "2", or "3" to opt into the visible rest, hover, active, and focus treatments. The bridge inherits from shared --usk-* roles instead of duplicating per-theme or per-preset token maps.
| Import | Raw | Gzip | Best for |
|---|---|---|---|
ui-style-kit-css/dist/ui-style-kit.min.css |
~357 KB | ~44 KB | Compatible runtime UI-system switchers and demos |
ui-style-kit-css/visual.min.css |
~348 KB | ~43 KB | Runtime visual switching with consumer-owned layout |
ui-style-kit-css/with-bridge.css |
~431 KB | ~52 KB | Deprecated runtime switcher plus stateful bridge |
ui-style-kit-css/theme-colors.css |
~25 KB | ~3 KB | Shared color schemes for standalone style imports |
ui-style-kit-css/native-elements.css |
~22 KB | ~4 KB | Shared native HTML fallback styling |
ui-style-kit-css/content-overflow.css |
~7 KB | ~1 KB | Shared long-text containment for standalone style imports |
ui-style-kit-css/interactive-surface-theme.css |
~8 KB | ~1 KB | Canonical token-and-paint bridge for Interactive Surface state core |
| Single style imports | ~26-28 KB | ~5-6 KB | Production apps with one visual system |
Use the latest published NPM package:
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/ui-style-kit-css@latest/dist/ui-style-kit.min.css" />For production, pin the exact approved release rather than relying on latest:
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/ui-style-kit-css@2.2.0/dist/ui-style-kit.min.css" /><body data-ui="minimal-saas" data-theme="arctic-indigo" data-mode="light">
<main>
<article class="ui-card">
<h1>UI Style Kit CSS</h1>
<p>Switch UI systems, themes, and modes without changing component classes.</p>
<button class="ui-button" data-ui-variant="primary">Primary Action</button>
<span class="ui-spinner" role="status" aria-label="Loading"></span>
</article>
</main>
</body>document.body.dataset.ui = "cyberpunk";
document.body.dataset.theme = "midnight-gold";
document.body.dataset.mode = "dark";This changes the semantic components' visual preset without replacing their DOM nodes or rewriting their .ui-* classes.
manifest.json#semanticComponentApi is the authoritative specification for the implemented generic component API. Its 29 selectors keep the same class names while data-ui changes across all 11 presets. implementationStatus records the two retained .ui-spinner and .ui-tooltip hooks, the 27 generated semantic aliases, and an empty pending set.
| Role | Generic selectors | Switching coverage |
|---|---|---|
| Buttons | .ui-button, .ui-icon-button |
all 11 presets |
| Card | .ui-card |
all 11 presets |
| Forms | .ui-field, .ui-label, .ui-help-text, .ui-input, .ui-select, .ui-textarea |
all 11 presets |
| Choice controls | .ui-check, .ui-check-control, .ui-radio, .ui-radio-control, .ui-switch, .ui-switch-track, .ui-switch-thumb |
all 11 presets |
| Badge | .ui-badge |
all 11 presets |
| Alert | .ui-alert, .ui-alert-title, .ui-alert-body |
all 11 presets |
| Navigation | .ui-nav, .ui-nav-link |
all 11 presets |
| Table | .ui-table, .ui-table-wrap |
all 11 presets |
| Progress | .ui-progress, .ui-progress-bar |
all 11 presets |
| Toolbar | .ui-toolbar |
all 11 presets |
| Existing generic hooks | .ui-spinner, .ui-tooltip |
all 11 presets |
The only new attribute is context-constrained data-ui-variant. Omit it for the neutral treatment.
| Selector | data-ui-variant values |
|---|---|
.ui-button |
primary, secondary, danger, ghost |
.ui-badge |
primary, secondary, success, warning, danger |
.ui-alert |
success, warning, danger |
<body data-ui="minimal-saas" data-theme="arctic-indigo" data-mode="light">
<button class="ui-button" data-ui-variant="primary">Save</button>
<article class="ui-card">...</article>
</body>Modal and dialog roles deliberately use a neutral native <dialog> fallback. There is no .ui-modal or .ui-dialog selector. The semantic API also does not define data-ui-state, data-ui-size, or data-ui-placement; continue to use native and ARIA state hooks, .is-active, and [data-ui-tooltip-anchor] where supported.
Preset-prefixed classes remain supported compatibility and advanced APIs. Partial preset extras, typography and paint utilities, surface/size/placement helpers, shape and accessibility utilities, and the deprecated page, container, section, grid, stack, cluster, and split structural aliases remain prefix-bound rather than entering the generic contract.
For example, a fixed Minimal SaaS integration may continue to use <button class="saas-button saas-button-primary">. Prefer .ui-button plus data-ui-variant="primary" when markup must survive runtime preset changes.
| UI style | data-ui |
Class prefix | Best for |
|---|---|---|---|
| Minimal SaaS | minimal-saas |
saas |
dashboards, admin tools, SaaS apps |
| Bento UI | bento |
bento |
landing pages, feature sections, showcases |
| Maximalist / Playful | maximalist |
max |
creators, entertainment, bold client sites |
| Bauhaus / Swiss Modern | bauhaus |
bau |
agencies, editorial layouts, design-forward brands |
| Skeuomorphic / Tactile | tactile |
tactile |
premium tactile interfaces, control panels |
| Neumorphism | neumorphism |
neo |
soft dashboards, experimental UI |
| Retrofuturism | retrofuturism |
retro |
futuristic portfolios and product pages |
| Brutalism | brutalism |
brutal |
bold creative websites |
| Cyberpunk | cyberpunk |
cyber |
security, gaming, encryption, tech demos |
| Y2K | y2k |
y2k |
nostalgic, playful, fashion/music/event sites |
| Retro Glass | retro-glass |
rg |
futuristic glass dashboards and hero sections |
midnight-gold
ocean-steel
forest-moss
sunset-ember
royal-plum
graphite-cyan
desert-sage
rose-quartz
cyber-lime
arctic-indigoColor schemes are defined once in styles/theme-colors.css as shared --usk-* RGB roles. Each UI style maps those shared roles back to its public prefix, so existing component rules still consume variables such as --saas-primary, --bau-surface, and --rg-on-primary.
light
dark
contraststyles/native-elements.css owns the shared native selectors under [data-ui][data-theme][data-mode]. Each style system maps those selectors to its visual identity through --usk-native-* tokens, so native controls keep the same coverage while inheriting each preset's radius, shadows, borders, typography, and color surfaces.
styles/content-overflow.css owns the shared text containment contract under [data-ui][data-theme][data-mode]. It keeps headings, paragraphs, links, table cells, controls, badges, nav links, and common UI wrappers from widening their parent wrapper when content contains long words, hashes, URLs, or copyable tokens.
The shared native layer covers common native elements, including:
- semantic containers:
main,section,header,footer,nav,article,aside,address - headings, paragraphs, links, lists, definition lists, blockquotes, code, pre, mark, abbr
- inline semantics:
strong,b,em,i,cite,var,q,ins,del,s,sub,sup,output,time,data,dfn,ruby,rt,rp - images, media, figures, captions,
audio,picture,object,embed, andmath - forms, fieldsets, labels, inputs, textareas, selects, checkboxes, radios, range, color, file inputs
- buttons and submit/reset controls
- tables and captions
details,summary,dialog,progress,meter,menu,search,optgroup, andoption- loading indicators through
<prefix>-spinner,<prefix>-loading-spinner, and busy native buttons witharia-busy="true" - tooltip surfaces through
<prefix>-tooltip,<prefix>-tooltip-arrow,.ui-tooltip,[role="tooltip"], and[data-tooltip]
CSS improves accessibility presentation, but it cannot guarantee accessibility by itself. Use semantic HTML, real labels, keyboard-safe JavaScript, meaningful link/button text, and correct ARIA state management.
Semantic text utilities such as saas-text-primary, saas-text-warning, and saas-text-danger use the active theme palette directly. Filled UI such as buttons, badges, and busy states use compact on-* aliases like --saas-on-primary and --saas-on-danger.
For the full native-element and subpart support contract, including platform-owned picker and popup limitations, see Native Element Coverage.
Every style includes theme-driven spinner utilities:
<span class="saas-spinner" aria-label="Loading"></span>
<span class="saas-loading-spinner saas-spinner-sm" aria-hidden="true"></span>
<button class="saas-button saas-button-primary" aria-busy="true">Saving</button>Spinner track, stroke, and accent colors come from the active data-theme and data-mode. The generic .ui-spinner, .loading-spinner, and [data-loading-spinner] hooks are also themed inside any [data-ui="..."] scope.
Every style includes visible tooltip utilities with the same API and preset-specific visual treatment:
<span class="saas-tooltip" role="tooltip">
Helpful context
<span class="saas-tooltip-arrow" aria-hidden="true"></span>
</span>Inside a [data-ui="..."] scope, generic .ui-tooltip, [role="tooltip"], and [data-tooltip] hooks inherit the active UI system.
Each style exposes backward-compatible base font variables plus more granular aliases:
[data-ui="minimal-saas"] {
--saas-font-sans: Inter, system-ui, sans-serif;
--saas-font-display: Inter, system-ui, sans-serif;
--saas-font-body: var(--saas-font-sans);
--saas-font-heading: var(--saas-font-display);
--saas-font-control: var(--saas-font-display);
--saas-font-mono: "JetBrains Mono", ui-monospace, monospace;
}Override --<prefix>-font-sans and --<prefix>-font-display for the broadest changes, or override --<prefix>-font-body, --<prefix>-font-heading, --<prefix>-font-control, and --<prefix>-font-mono for targeted typography control.
The library styles are wrapped in @layer ui-style-kit.*. Unlayered consumer CSS can override the library without specificity fights:
The declared order is theme_colors, native_elements, components, presets, then compat_layout. Visual-only entrypoints leave the final compatibility layer empty of deprecated structural selectors.
[data-ui="minimal-saas"][data-theme="arctic-indigo"] {
--saas-radius-md: 1rem;
--saas-font-sans: Inter, system-ui, sans-serif;
--saas-font-display: Inter, system-ui, sans-serif;
--saas-font-body: var(--saas-font-sans);
--saas-font-heading: var(--saas-font-display);
--saas-font-control: var(--saas-font-display);
}
:where([data-ui][data-theme="arctic-indigo"][data-mode="light"]) {
--usk-primary-rgb: 72 91 255;
--usk-primary-hover-rgb: 55 75 230;
--usk-primary-text-rgb: 255 255 255;
}The color model is intentionally small: shared --usk-* RGB variables feed prefixed aliases such as --<prefix>-bg, --<prefix>-text, --<prefix>-surface, and --<prefix>-border. Filled components use --<prefix>-on-primary, --<prefix>-on-secondary, --<prefix>-on-success, --<prefix>-on-warning, and --<prefix>-on-danger for readable text over filled surfaces.
ui-style-kit-css/
package.json
manifest.json
README.md
LICENSE
CHANGELOG.md
STYLE-MAP.md
dist/
ui-style-kit.css
ui-style-kit.min.css
ui-style-kit.visual.css
ui-style-kit.visual.min.css
ui-style-kit.with-bridge.css
ui-style-kit.with-bridge.min.css
visual/
minimal-saas.css
...
styles/
theme-colors.css
native-elements.css
components.css
compat-layout.css
content-overflow.css
minimal-saas.css
bento.css
maximalist.css
bauhaus.css
tactile.css
neumorphism.css
retrofuturism.css
brutalism.css
cyberpunk.css
y2k.css
retro-glass.css
interactive-surface-theme.css
interactive-surface-bridge.css
docs/
TOKENS.md
STYLE-GUIDE.md
PUBLISHING.mdThe checked-in demo, favicon pack, and social preview image stay in the repository for GitHub Pages, but they are intentionally excluded from the npm tarball so installs only receive the CSS library, docs, and metadata.
npm run check
npm run test:e2e
npm run test:axe
npm run test:visual
npm run test:matrix
npm run pack:dry-runnpm run check rebuilds the bundles, runs stylelint, verifies package metadata, checks the documented class API, and validates contrast for base text/link pairs and filled component on-* pairs. Browser release gates add all-engine Playwright coverage, representative Axe scans, curated visual smoke checks, and the sharded 11 presets x 10 themes x 3 modes x 3 engines matrix.
- Prefer
visual.cssorvisual/<preset>.csswhen Layout Style CSS or application CSS owns structure. - Existing root, minified, focused preset,
interactive-surface-bridge, andwith-bridgeentrypoints preserve their v2 behavior. - Treat
page,container,section,grid,stack,cluster, andsplitsuffixes as deprecated compatibility helpers; their removal is reserved for v3. - Prefer
interactive-surface-theme.csswithinteractive-surface-css/state-core.css. The old stateful bridge exports remain deprecated compatibility paths.
The v2.0.1 release line removes duplicated per-UI color-scheme blocks. Color schemes now live in theme-colors.css as shared --usk-* roles, native HTML fallback styling lives in native-elements.css, and each UI style aliases those shared roles back to its prefix.
- Use
--usk-*-rgbwhen defining or overriding a color scheme. - Continue using prefixed functional tokens such as
--saas-primary,--neo-card-bg, and--rg-on-primaryinside components. - Import
ui-style-kit-css/theme-colors.css,ui-style-kit-css/native-elements.css, andui-style-kit-css/content-overflow.cssbefore standalone style files if your bundler does not follow CSS@import. - Existing v2.0.1 integrations can keep using
ui-style-kit-css/interactive-surface-bridgeorui-style-kit-css/with-bridge.css; those stateful compatibility paths are deprecated in v2.1.0. New integrations should compose the visual, theme-bridge, and state-core entrypoints documented above.
MIT