Skip to content

Creating Aurora Themes

Aurora doesn’t have a theme registration system — customize via CSS variables instead.

There’s no plugin API for registering a custom Aurora theme — the built-in options are the 10 accent colors and 2 bases documented under Color Presets. If you need a look beyond those presets, override the CSS variables Aurora’s own styles read from, using Custom Admin CSS:

:root {
--aurora-accent: #ff5a36;
--aurora-accent-text: #ffffff;
--aurora-radius-lg: 6px;
}

Because this overrides variables rather than registering a real theme, it won’t appear as a named option in the Theme picker, and future Aurora releases may add, rename, or remove variables without notice.