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.
The color variables
Section titled “The color variables”Colors are declared on :root. Each one has a clear, descriptive name so you always know what it affects:
: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):
Next: Background ColorsGive individual sections their own background color.