CSS named colour
Light Pink
#ffb6c1
A CSS named colour: lightpink is valid anywhere a colour is expected.
- RGB
- rgb(255 182 193)
- HSL
- 351°, 100%, 86%
- OKLCh
- 84.7% 0.086 9.1
Light Pink in every format
Web & CSSThe everyday formats for stylesheets and design tools.
| Hex | #ffb6c1 | |
|---|---|---|
| RGB | rgb(255 182 193) | |
| RGB legacy | rgb(255, 182, 193) | |
| RGB percent | rgb(100% 71.37% 75.69%) | |
| HSL | hsl(351 100% 85.7%) | |
| HSL legacy | hsl(351, 100%, 85.7%) | |
| HSV / HSB | hsv(351, 28.6%, 100%) | |
| HWB | hwb(351 71.4% 0%) | |
| Nearest name | lightpink | |
| CMYK | cmyk(0%, 28.6%, 24.3%, 0%)Naive conversion. Real print work needs an ICC profile. |
Perceptual & wide gamutModern CSS colour spaces for uniform scales and P3 displays.
| OKLCh | oklch(84.739% 0.08579 9.087)Modern CSS colour space for even palettes — better than HSL when building scales. | |
|---|---|---|
| OKLab | oklab(84.739% 0.08472 0.01355) | |
| CIE LCh | lch(81.301% 28.901 11.085) | |
| CIE Lab | lab(81.301% 28.361 5.557) | |
| Display P3 | color(display-p3 0.9573 0.7257 0.7589) | |
| Rec. 2020 | color(rec2020 0.8975 0.7093 0.7304) | |
| srgb-linear | color(srgb-linear 1 0.4678 0.5333)Light-linear sRGB — the same numbers a shader wants for maths. | |
| CIE XYZ (D65) | color(xyz-d65 0.6759 0.5857 0.582) |
ShadersGLSL, HLSL and WGSL vectors in both encoded and linear form.
| GLSL vec3 — sRGB | vec3(1.0, 0.714, 0.757)Encoded values. Use when writing straight to the framebuffer. | |
|---|---|---|
| GLSL vec3 — linear | vec3(1.0, 0.468, 0.533)Light-linear values. Use for lighting, blending and mixing. | |
| GLSL vec4 — sRGB | vec4(1.0, 0.714, 0.757, 1.0) | |
| GLSL vec4 — linear | vec4(1.0, 0.468, 0.533, 1.0) | |
| GLSL ivec3 | ivec3(255, 182, 193) | |
| HLSL float3 — sRGB | float3(1.0, 0.714, 0.757) | |
| HLSL float3 — linear | float3(1.0, 0.468, 0.533) | |
| HLSL float4 — sRGB | float4(1.0, 0.714, 0.757, 1.0) | |
| HLSL half4 — sRGB | half4(1.0, 0.714, 0.757, 1.0) | |
| WGSL vec3f — sRGB | vec3f(1.0, 0.714, 0.757) | |
| WGSL vec4f — sRGB | vec4f(1.0, 0.714, 0.757, 1.0) | |
| WGSL vec3<f32> — linear | vec3<f32>(1.0, 0.468, 0.533) |
Engines & appsConstructors for Unity, Unreal, Godot, Flutter, SwiftUI and Android.
| Unity Color | new Color(1.0f, 0.714f, 0.757f, 1.0f)Color for everyday scripting (0–1). Color32 when you need whole numbers from 0 to 255. | |
|---|---|---|
| Unity Color32 | new Color32(255, 182, 193, 255) | |
| Unreal FLinearColor | FLinearColor(1.0f, 0.4678f, 0.5333f, 1.0f)FLinearColor for materials and lighting. FColor when you need whole numbers from 0 to 255. | |
| Unreal FColor | FColor(255, 182, 193, 255)Whole numbers from 0 to 255 — use when an API asks for FColor, not FLinearColor. | |
| Godot Color | Color(1, 0.714, 0.757, 1) | |
| Flutter Color | Color(0xFFFFB6C1)Packed ARGB, so alpha comes first. | |
| Android Color | Color.rgb(255, 182, 193) | |
| SwiftUI Color | Color(red: 1, green: 0.714, blue: 0.757) | |
| UIKit UIColor | UIColor(red: 1, green: 0.714, blue: 0.757, alpha: 1) |
Raw valuesPacked integers and plain arrays.
| 0x hex | 0xFFB6C1 | |
|---|---|---|
| 0x hex (ARGB) | 0xFFFFB6C1 | |
| Array 0–1 | [1, 0.714, 0.757] | |
| Array 0–255 | [255, 182, 193] | |
| Decimal integer | 16758465 |
Contrast and accessibility
WCAG 2 ratios are what audits and legislation reference. APCA is shown alongside because WCAG 2 is known to misjudge mid-tone backgrounds, and it is the basis of the WCAG 3 draft.
| Pairing | WCAG 2 ratio | Level | APCA | Suitable for |
|---|---|---|---|---|
| Light Pink on white | 1.65:1 | Fail | Lc 29 | Not usable for text |
| Light Pink on black | 12.71:1 | AAA | Lc 74 | Headings and large text |
Light Pink text on a white background
Light Pink text on a black background
White text on Light Pink
Black text on Light Pink
Tonal scale
Hue held fixed while lightness walks OKLCh, ready to use as a design system ramp.
- 50#ffeff3
- 100#ffe0e6
- 200#ffc9d2
- 300#f3b1bb
- 400#d7949e
- 500#b97580
- 600#9b5c67
- 700#804751
- 800#69363f
- 900#552830
- 950#351219
Tints and shades
Mixed perceptually toward white and black, so the steps feel evenly spaced.
- Tint 1#ffc2cb
- Tint 2#ffced5
- Tint 3#ffdbe0
- Tint 4#ffe7ea
- Tint 5#fff3f4
- Shade 1#c88e97
- Shade 2#94686f
- Shade 3#634449
- Shade 4#362426
- Shade 5#0f0708
Colours that work with Light Pink
Complementary, triadic and analogous partners, rotated in OKLCh so they keep the same apparent brightness.
- #87dfd8
- #bbd89d
- #a1d2ff
- #f3b8e0
- #ffbaa4
Closest CSS names
lightpinkexact matchpinkΔEok 0.024thistleΔEok 0.063lightgrayΔEok 0.088lightsalmonΔEok 0.089silverΔEok 0.094