Skip to content

puikinsh/Adminator-admin-dashboard

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

207 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Adminator β€” 2026 Admin Dashboard Template (v4.0.0)

Adminator 4.0 is a vanilla-JS admin dashboard template with a token-driven CSS-variable design system, dark mode, and zero framework dependencies. No jQuery. No Bootstrap. Just clean HTML, modern CSS, and ~700 KB of production JS for the entire 18-page template.

Heads up β€” v4.0.0 is a ground-up rewrite. New design system, new shell architecture, Bootstrap removed. If you prefer the previous design, the v3 codebase lives on the legacy-v3 branch and will continue to receive security updates.

Live Demo β†’ Β· Looking for premium templates? Visit DashboardPack β†’

Preview

Light mode

Adminator 2026 β€” Light Mode

Dark mode

Adminator 2026 β€” Dark Mode

A few of the 18 pages

Email
Email β€” 3-pane inbox
Calendar
Calendar β€” full FullCalendar
Charts
Charts β€” themed Chart.js
Forms
Forms β€” inputs, switches
Data Table
Data Table β€” sort, filter, paginate
Sign In
Sign In β€” split-screen auth

Upgrade to a Premium Dashboard

Need advanced features, dedicated support, and production-ready code? Explore our handpicked collection of professional admin templates on DashboardPack.

TailPanel β€” modern React and Tailwind CSS admin panel
TailPanel
React + TypeScript + Tailwind CSS + Vite. 9 dashboard designs, dark and light themes.
Admindek β€” feature-rich Bootstrap 5 dashboard with dark mode
Admindek
Bootstrap 5 + vanilla JS. 100+ components, dark/light modes, RTL support, 10 color presets.
Adminty β€” Bootstrap 5 admin template with 160+ pages
Adminty
Bootstrap 5. 160+ ready-made pages, full UI component library for rapid development.
ArchitectUI β€” modular Bootstrap admin with 250+ widgets
ArchitectUI
Bootstrap 5. 250+ components, modular architecture, 9 unique dashboard layouts.
Kero β€” Bootstrap 5 dashboard with horizontal and sidebar layouts
Kero
Bootstrap 5 + Webpack. Dual layout system (horizontal + sidebar), SASS theming.
Cryptocurrency Dashboard β€” ICO and Bitcoin admin panel
Cryptocurrency Dashboard
Bootstrap. Built specifically for ICO platforms, Bitcoin tracking, and crypto portfolios.

View All Premium Templates

Table of Contents

What's New in v4.0.0

A ground-up redesign and rewrite. The whole template is built around a single CSS-variable token system, with a JS shell that renders the sidebar, topbar, and footer once for all 18 pages. Bootstrap is gone. Production JS dropped from ~4.5 MB to ~700 KB β€” an 85% reduction.

Highlights

  • Token-driven design system. All colors, typography, spacing, and shadows live in _tokens.scss as CSS variables with light + dark variants. Edit one variable, every component updates.
  • Real dark mode. A single data-theme attribute on <html> swaps the entire UI β€” including Chart.js, FullCalendar, and jsvectormap, which all re-render via a MutationObserver to read the new token values.
  • Zero framework CSS. No Bootstrap. No utility-class soup. Every UI primitive (buttons, dropdowns, alerts, badges, modals, tabs, accordions, switches, progress bars) is custom-built and theme-aware.
  • Single JS shell. Sidebar/topbar/footer render from a single NAV manifest in Shell.js. Pages declare <body data-active="..." data-crumbs="..."> and three placeholders. Add a nav item by editing one array.
  • Real, themed library integrations. Chart.js (6 chart types), FullCalendar (all four views, 24 seed events), jsvectormap (world map with 10 markers). All read CSS variables and re-render on theme toggle.
  • All 18 pages redesigned: Dashboard, Email, Calendar, Chat, Compose, Charts, Forms, UI Elements, Buttons, Basic Table, Data Table, Google Maps, Vector Maps, Blank, Sign In, Sign Up, 404, 500.

Bundle size

Metric v3.0.0 v4.0.0 Ξ”
Production JS (total) ~4.5 MB ~700 KB βˆ’85%
Production CSS ~280 KB 90 KB βˆ’68%
Top-level npm dependencies 16 8 βˆ’50%

See CHANGELOG.md for the full release notes, including the migration guide.

Quick Start

Prerequisites

  • Node.js 18.12 or higher
  • npm 9 or higher (ships with Node.js)

Install and run

# Clone the repo
git clone https://github.com/puikinsh/Adminator-admin-dashboard.git adminator
cd adminator

# Install dependencies
npm install

# Start the dev server (http://localhost:4000)
npm start

Build commands

# Development server with HMR
npm start

# Production build (extracted CSS, minified)
npm run release:minified

# Default build (extracted CSS, unminified β€” useful for debugging)
npm run build

# Lint everything (JS + SCSS) β€” must be 0/0 to ship
npm run lint

# Bundle size analyzer
npm run build:analyze

# Wipe dist/
npm run clean

Install via npm

npm install adminator-admin-dashboard

The package ships both src/ and a pre-built dist/.

Pages Included

All 18 pages share the same shell (sidebar + topbar + footer) and theme system. Standalone pages (auth, errors) skip the shell.

Page Description
Dashboard KPIs, real Chart.js monthly chart, regional stats, todo, weather
Email 3-pane inbox with folders, message list, reader pane, attachments
Calendar Real FullCalendar (Day/Week/Month/Agenda) with seed events
Chat 2-pane conversation list + thread with typing indicator
Compose Rich-text email composer with attachments and scheduling
Charts 6 themed Chart.js examples (line, bar, doughnut, radar, area, stack)
Forms Inputs, selects, switches, checkboxes, validation states
UI Elements Alerts, badges, progress, spinners, tabs, accordion, modal, tooltips
Buttons Solid/soft/outline/ghost variants, sizes, icons, button groups
Basic Table Striped table with status tags and trend indicators
Data Table Sortable + paginated table with filters, search, row selection
Google Maps Embedded Google Map with offices table
Vector Maps Real jsvectormap with city markers and continent KPIs
Blank Starter page with hero + empty card
Sign In / Sign Up Split-screen auth with social buttons
404 / 500 Themed error pages with gradient codes

Architecture

The full architecture is documented in CLAUDE.md. The short version:

src/
β”œβ”€β”€ *.html                       # 18 pages, ~500 lines each
└── assets/
    β”œβ”€β”€ scripts/2026/            # The only JS β€” 6 modules
    β”‚   β”œβ”€β”€ index.js             # entry: imports SCSS, mounts shell, runs init
    β”‚   β”œβ”€β”€ Shell.js             # NAV manifest + sidebar/topbar/footer renderers
    β”‚   β”œβ”€β”€ init.js              # theme toggle, dropdowns, accordions, tabs, etc.
    β”‚   β”œβ”€β”€ charts.js            # Chart.js seeds, theme-aware
    β”‚   β”œβ”€β”€ calendar.js          # FullCalendar, theme-aware
    β”‚   └── maps.js              # jsvectormap, theme-aware
    └── styles/2026/             # The only SCSS β€” 18 partials
        β”œβ”€β”€ index.scss           # entry, @use's everything below
        β”œβ”€β”€ _tokens.scss         # CSS variables (light + dark)
        β”œβ”€β”€ _shell.scss          # sidebar, topbar, footer chrome
        β”œβ”€β”€ _components.scss     # buttons, cards, hero, table, tag
        β”œβ”€β”€ _ui.scss             # alerts, badges, progress, tabs, modal
        β”œβ”€β”€ _forms.scss          # inputs, select, switch, check, radio
        β”œβ”€β”€ _auth.scss / _error.scss / _chat.scss / _data.scss / _charts.scss
        β”œβ”€β”€ _dashboard.scss / _email.scss / _calendar.scss
        β”œβ”€β”€ _fullcalendar.scss   # FullCalendar token overrides
        └── _responsive.scss     # all media queries in one place

Every shell page follows the same anatomy:

<body data-active="dashboard" data-crumbs="Workspace | Dashboard">
  <div class="shell">
    <div data-shell-sidebar></div>      <!-- rendered by Shell.js -->
    <div class="main">
      <div data-shell-topbar></div>     <!-- rendered by Shell.js -->
      <main class="content">
        <!-- page-specific content -->
      </main>
      <div data-shell-footer></div>     <!-- rendered by Shell.js -->
    </div>
  </div>
</body>

data-active matches a key in Shell.js's NAV manifest. data-crumbs is a |-separated breadcrumb (last segment is highlighted as the current page).

Adding a new page

  1. Create src/foo.html with the body anatomy above.
  2. Add 'foo': 'Adminator Β· Foo' to the titles map in webpack/plugins/htmlPlugin.js.
  3. Add a sidebar entry to NAV in src/assets/scripts/2026/Shell.js.
  4. Restart the dev server.

Theming

Every visual decision is a CSS variable in src/assets/styles/2026/_tokens.scss. Change one, the whole template updates.

:root[data-theme="light"] {
  --primary:       #2563EB;
  --primary-light: #3B82F6;
  --primary-dark:  #1D4ED8;
  --primary-soft:  #EFF6FF;

  --bg-body:    #F0F4F8;
  --bg-card:    #FFFFFF;
  --bg-hover:   #F8FAFC;

  --t-base:     #1E293B;   /* primary text */
  --t-muted:    #64748B;
  --t-light:    #94A3B8;

  /* ... plus success / warning / danger / info / purple / pink / teal / orange */
}

:root[data-theme="dark"] {
  /* dark variants of the same tokens */
}

Toggle theme programmatically:

// Set
document.documentElement.setAttribute('data-theme', 'dark');
localStorage.setItem('dash26-theme', 'dark');

Charts/maps re-render automatically β€” they observe the data-theme attribute.

Tech Stack

Build & tooling

  • Webpack 5 β€” bundler (Vite migration planned for v4.1)
  • Sass (modern @use syntax) β€” preprocessor
  • PostCSS β€” autoprefix + future-CSS
  • ESLint 9 (flat config) + Stylelint 17 β€” linting
  • Babel β€” ES2020+ transpilation

Runtime libraries

Fonts

All fonts loaded from Google Fonts via a single @import at the top of _base.scss.

Removed in v4.0

The following dependencies were dropped β€” none of them are used in the new design:

  • bootstrap, @popperjs/core β€” replaced with custom UI primitives
  • dayjs β€” replaced with native Intl.DateTimeFormat
  • perfect-scrollbar β€” native scrollbars styled via CSS
  • masonry-layout, load-google-maps-api, skycons, brand-colors β€” unused

Migrating from v3

v4 is a rewrite, not an upgrade. The class names, file paths, and JS APIs all changed. If you have a v3 project with custom work:

  1. Treat v4 as a fresh template. Don't try to merge β€” copy your custom content into the new shell.
  2. Move theme overrides from Bootstrap variables to _tokens.scss.
  3. Adopt the page anatomy (data-active, data-crumbs, three placeholder divs).
  4. Port custom JS from AdminatorApp / Sidebar / ChartComponent classes to the data-attribute pattern in init.js.

For a smoother path, stay on v3 β€” see below.

Staying on v3

If you've built on v3 and prefer the old design, the v3 codebase lives on the legacy-v3 branch and will continue to receive security updates for at least 12 months.

# Clone v3 directly
git clone -b legacy-v3 https://github.com/puikinsh/Adminator-admin-dashboard.git adminator-v3

# Or pin v3 from npm
npm install adminator-admin-dashboard@^3

Browser Support

Modern evergreen browsers β€” Chrome, Firefox, Safari, Edge (last 2 versions). The template uses color-mix(), CSS custom properties, aspect-ratio, container queries are not yet used. IE11 is not supported.

Changelog

See CHANGELOG.md for the full version history.

Latest releases

  • v4.0.0 (2026-04-27) β€” The 2026 redesign. New design system, Bootstrap dropped, ~85% bundle reduction. Details.
  • v3.0.0 (2026-01-13) β€” Architecture release. New utility modules, Vitest, code splitting, bundle analyzer.
  • v2.7.1 β€” Fully jQuery-free.
  • v2.6.0 β€” Dark mode system.

Adminator for Other Platforms

  • Adminator RTL β€” right-to-left languages (Arabic, Hebrew, Persian)

Authors

Colorlib

More Resources from Colorlib

License

Adminator is licensed under The MIT License. Use, copy, modify, merge, publish, distribute, sublicense, and sell copies β€” but always credit Colorlib as the original author.