CHEAT SHEET

CSS Color Codes Cheat Sheet: HEX, RGB, HSL, RGBA

Copy the most common CSS color formats with examples for HEX, RGB, HSL, RGBA, transparent colors and currentColor.

UseValueNote
HEX#2563ebCompact format used in most design specs.
RGBrgb(37 99 235)Readable red, green and blue channels.
RGBArgb(37 99 235 / 70%)Modern CSS alpha syntax for overlays.
HSLhsl(221 83% 53%)Useful for generated tints and shades.
NamedrebeccapurpleCSS named colors supported by browsers.

Copy snippet

.card {
  color: #0f172a;
  background: rgb(248 250 252);
  border-color: rgb(15 23 42 / 12%);
  box-shadow: 0 12px 28px rgb(15 23 42 / 10%);
}
Color pickerHEX to RGBCSS color formats guide