Find Color Codes

Video Games

Unity Color Codes

Unity works in black, hex #000000, on white. The Unity color codes in Hex, RGB and CMYK can be found below. David Helgason and two others started it in Copenhagen in 2004 and showed the first version at Apple's developer conference in 2005; the pitch was a game engine anyone could afford, and it now runs a large share of mobile and indie games. Its nearest peer on this site is Unreal Engine.

The Unity logo, shown for identification
The Unity logo, shown for identification. Unity is a trademark of its owner and this site is not affiliated with it.

Primary colors

What are Unity Primary Colors?

Unity's primary colors are black #000000, white #FFFFFF.

Unity runs a black-and-white identity; the values shown are black and white.

Unity Black

Hex#000000
RGB0, 0, 0
HSLhsl(0, 0%, 0%)
CMYK0%, 0%, 0%, 100%converted · approximate
PantonePMS 419 Cnearest match · not published by the brand

Unity White

Hex#FFFFFF
RGB255, 255, 255
HSLhsl(0, 0%, 100%)
CMYK0%, 0%, 0%, 0%converted · approximate
PantonePMS 656 Cnearest match · not published by the brand

Unity Hex Color Codes

Unity hex color codes are #000000 for black and #FFFFFF for white.

ColorHex
Black #000000
White #FFFFFF

Unity RGB Color Codes

Unity RGB color codes are 0, 0, 0 for black and 255, 255, 255 for white. Reach for RGB when a tool wants channel numbers or a CSS alpha value.

ColorRGB
Black rgb(0, 0, 0)
White rgb(255, 255, 255)

Unity HSL Color Codes

Unity HSL color codes are 0, 0%, 0% for black and 0, 0%, 100% for white. Change the third value for a lighter or darker version without moving the hue.

ColorHSL
Black hsl(0, 0%, 0%)
White hsl(0, 0%, 100%)

Unity CMYK Color Code

Unity CMYK color codes are conversions from the hex, because the brand publishes none. Check a printed proof before a full run.

ColorCMYK
Black 0%, 0%, 0%, 100%
White 0%, 0%, 0%, 0%

Unity Pantone Color Codes

Unity Pantone color codes are nearest matches by color distance, not brand specs. The table shows the closest swatch for every color.

ColorNearest Pantone
Black PMS 419 C
White PMS 656 C

Logo

Unity Logo Colors

Unity logo colors are black on white, a box mark with a corner pulled out.

Unity Logo Colors Palette

What the Unity Logo Colors Mean?

The Unity mark is a cube drawn with one face detached, meant to read as a piece slotting into place. It is kept in flat black and white because the engine sits under games with every possible art style, and a company color would pick a side. A 2023 refresh tidied the cube but did not add color.

Unity Logo Color History

Unity logo color history has been monochrome throughout, moving from an outlined cube to the current solid one. The company briefly leaned on a blue in marketing in the 2010s but the mark stayed black and white.

Unity Logo Fonts

Unity logo fonts are a custom sans, clean and slightly rounded. A geometric sans like Poppins is the closest match.

Unity Logo JPG

Unity logo in JPG. No transparency, so it is flattened onto white. Safe for documents and slide decks.

Unity logo, JPG format
Download JPG Trademark of its owner, shown for identification.

Unity Logo PNG

Unity logo in PNG, with a transparent background. Use it over a colored surface.

Unity logo, PNG format
Download PNG Trademark of its owner, shown for identification.

Unity Logo WebP

Unity logo in WebP. Same transparency as the PNG at about a third of the file size.

Unity logo, WEBP format
Download WEBP Trademark of its owner, shown for identification.

Unity Color Code Shades

Unity color code shades step evenly from the primary toward black, for hover states, borders and shadows.

These are interface steps, not Unity paint or trim names.

In code

Using the Unity palette

CSS custom properties

:root {
  --unity-black: #000000;
  --unity-white: #FFFFFF;
}

Contrast against white

Black 21.00:1AA ✓
White 1.00:1AA ×

Brand colors are chosen for recognition, not for legibility. A failing value here is normal. It means use it as a fill, not as text.