Nintex brand icons
This origin serves the canonical Nintex icon set at fixed root paths, so any consumer that resolves an icon from the host name alone finds the right mark. Everything here is static, cacheable, and unauthenticated.
Theme behaviour
favicon-light.svgFixed purple. Brand colour on light surfaces.
favicon-dark.svgFixed off-white. For dark surfaces.
favicon.svgFollows your OS theme right now. Recolours live.
Head block
<link rel="icon" href="/favicon.ico" sizes="32x32">
<link rel="icon" href="/favicon.svg" type="image/svg+xml" sizes="any">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<link rel="manifest" href="/site.webmanifest">
<meta name="theme-color" content="#8439a6" media="(prefers-color-scheme: light)">
<meta name="theme-color" content="#1c1420" media="(prefers-color-scheme: dark)">
<script src="/nintex-favicon.js" defer></script>
Paths
| Path | Type | Purpose |
|---|---|---|
/favicon.ico | image/x-icon | 16, 32 and 48px, opaque white backdrop. The path every crawler tries first, whether or not the HTML declares it. |
/favicon.svg | image/svg+xml | Theme-adaptive via prefers-color-scheme inside the file. |
/favicon-light.svg | image/svg+xml | Fixed purple. |
/favicon-dark.svg | image/svg+xml | Fixed off-white. |
/favicon-16x16.png | image/png | Opaque raster fallback. |
/favicon-32x32.png | image/png | Opaque raster fallback. |
/apple-touch-icon.png | image/png | 180px, opaque. iOS composites a transparent touch icon onto black, so this one carries its own background. |
/android-chrome-192x192.png | image/png | Manifest icon. |
/android-chrome-512x512.png | image/png | Manifest icon, also the largest square for cards and previews. |
/site.webmanifest | application/manifest+json | Declares the icon set and brand colours. |
/nintex-favicon.js | text/javascript | Swaps the SVG on theme change for Chrome and Edge. |
What honours what
| Consumer | SVG favicon | prefers-color-scheme inside it | Result |
|---|---|---|---|
| Firefox | Yes | Yes | favicon.svg adapts on its own. |
| Safari 16.4+ | Yes | Yes | favicon.svg adapts on its own. |
| Chrome, Edge | Yes | No, light scheme only | Needs nintex-favicon.js to swap files. |
| Older Safari | No | n/a | Falls back to the PNG and ICO. |
| Crawlers and icon services | Varies | Usually no | Most fetch /favicon.ico and composite it onto a background of their own choosing, which the asset cannot influence. |
Palette
| Token | Hex | Use |
|---|---|---|
| Nintex purple | #8439a6 | The mark on light surfaces. theme_color. |
| Warm off-white | #fff9f4 | The mark on dark surfaces. |
| Nintex orange | #ff6600 | The corner square. Constant in both themes. |