Skip to content

Colors

Nexgen’s palette is driven entirely by CSS variables. Recolor the template by editing a handful of values in assets/css/default.css — no find-and-replace across dozens of files.

Colors are declared on :root. Each one has a clear, descriptive name so you always know what it affects:

assets/css/default.css
:root {
/* Brand */
--primary-color: #4a6cf7;
--secondary-color: #1d2144;
/* Text */
--heading-color: #1d2144;
--text-color: #637381;
/* Neutrals */
--white-color: #ffffff;
--dark-color: #090e34;
}

The palette is structured like this (example values shown):

  • Primary#4a6cf7
  • Secondary#1d2144
  • Text#637381
  • Dark#090e34