CSS named colour
Burly Wood
#deb887
A CSS named colour: burlywood is valid anywhere a colour is expected.
- RGB
- rgb(222 184 135)
- HSL
- 34°, 57%, 70%
- OKLCh
- 80.5% 0.078 73.4
Burly Wood in every format
Web & CSSThe everyday formats for stylesheets and design tools.
| Hex | #deb887 | |
|---|---|---|
| RGB | rgb(222 184 135) | |
| RGB legacy | rgb(222, 184, 135) | |
| RGB percent | rgb(87.06% 72.16% 52.94%) | |
| HSL | hsl(33.8 56.9% 70%) | |
| HSL legacy | hsl(33.8, 56.9%, 70%) | |
| HSV / HSB | hsv(33.8, 39.2%, 87.1%) | |
| HWB | hwb(33.8 52.9% 12.9%) | |
| Nearest name | burlywood | |
| CMYK | cmyk(0%, 17.1%, 39.2%, 12.9%)Naive conversion. Real print work needs an ICC profile. |
Perceptual & wide gamutModern CSS colour spaces for uniform scales and P3 displays.
| OKLCh | oklch(80.454% 0.07786 73.417)Modern CSS colour space for even palettes — better than HSL when building scales. | |
|---|---|---|
| OKLab | oklab(80.454% 0.02222 0.07462) | |
| CIE LCh | lch(77.33% 31.709 72.979) | |
| CIE Lab | lab(77.33% 9.282 30.32) | |
| Display P3 | color(display-p3 0.8466 0.7272 0.5543) | |
| Rec. 2020 | color(rec2020 0.7915 0.7011 0.5117) | |
| srgb-linear | color(srgb-linear 0.7305 0.4793 0.2423)Light-linear sRGB — the same numbers a shader wants for maths. | |
| CIE XYZ (D65) | color(xyz-d65 0.5164 0.5156 0.3015) |
ShadersGLSL, HLSL and WGSL vectors in both encoded and linear form.
| GLSL vec3 — sRGB | vec3(0.871, 0.722, 0.529)Encoded values. Use when writing straight to the framebuffer. | |
|---|---|---|
| GLSL vec3 — linear | vec3(0.73, 0.479, 0.242)Light-linear values. Use for lighting, blending and mixing. | |
| GLSL vec4 — sRGB | vec4(0.871, 0.722, 0.529, 1.0) | |
| GLSL vec4 — linear | vec4(0.73, 0.479, 0.242, 1.0) | |
| GLSL ivec3 | ivec3(222, 184, 135) | |
| HLSL float3 — sRGB | float3(0.871, 0.722, 0.529) | |
| HLSL float3 — linear | float3(0.73, 0.479, 0.242) | |
| HLSL float4 — sRGB | float4(0.871, 0.722, 0.529, 1.0) | |
| HLSL half4 — sRGB | half4(0.871, 0.722, 0.529, 1.0) | |
| WGSL vec3f — sRGB | vec3f(0.871, 0.722, 0.529) | |
| WGSL vec4f — sRGB | vec4f(0.871, 0.722, 0.529, 1.0) | |
| WGSL vec3<f32> — linear | vec3<f32>(0.73, 0.479, 0.242) |
Engines & appsConstructors for Unity, Unreal, Godot, Flutter, SwiftUI and Android.
| Unity Color | new Color(0.871f, 0.722f, 0.529f, 1.0f)Color for everyday scripting (0–1). Color32 when you need whole numbers from 0 to 255. | |
|---|---|---|
| Unity Color32 | new Color32(222, 184, 135, 255) | |
| Unreal FLinearColor | FLinearColor(0.7305f, 0.4793f, 0.2423f, 1.0f)FLinearColor for materials and lighting. FColor when you need whole numbers from 0 to 255. | |
| Unreal FColor | FColor(222, 184, 135, 255)Whole numbers from 0 to 255 — use when an API asks for FColor, not FLinearColor. | |
| Godot Color | Color(0.871, 0.722, 0.529, 1) | |
| Flutter Color | Color(0xFFDEB887)Packed ARGB, so alpha comes first. | |
| Android Color | Color.rgb(222, 184, 135) | |
| SwiftUI Color | Color(red: 0.871, green: 0.722, blue: 0.529) | |
| UIKit UIColor | UIColor(red: 0.871, green: 0.722, blue: 0.529, alpha: 1) |
Raw valuesPacked integers and plain arrays.
| 0x hex | 0xDEB887 | |
|---|---|---|
| 0x hex (ARGB) | 0xFFDEB887 | |
| Array 0–1 | [0.871, 0.722, 0.529] | |
| Array 0–255 | [222, 184, 135] | |
| Decimal integer | 14596231 |
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 |
|---|---|---|---|---|
| Burly Wood on white | 1.86:1 | Fail | Lc 35 | Non-text elements only |
| Burly Wood on black | 11.31:1 | AAA | Lc 68 | Headings and large text |
Burly Wood text on a white background
Burly Wood text on a black background
White text on Burly Wood
Black text on Burly Wood
Tonal scale
Hue held fixed while lightness walks OKLCh, ready to use as a design system ramp.
- 50#fff3d2
- 100#ffe8c1
- 200#f7d7ad
- 300#e2bf93
- 400#c6a274
- 500#a88455
- 600#8c6b3d
- 700#73542a
- 800#5d421a
- 900#4b320d
- 950#2e1b00
Tints and shades
Mixed perceptually toward white and black, so the steps feel evenly spaced.
- Tint 1#e4c49b
- Tint 2#e9d0af
- Tint 3#efdbc3
- Tint 4#f4e7d7
- Tint 5#faf3eb
- Shade 1#ae9069
- Shade 2#80694c
- Shade 3#554531
- Shade 4#2e2418
- Shade 5#0b0704
Colours that work with Burly Wood
Complementary, triadic and analogous partners, rotated in OKLCh so they keep the same apparent brightness.
- #9cc3f1
- #81cfcd
- #d1b1e3
- #ebaf97
- #c8c287
Closest CSS names
burlywoodexact matchtanΔEok 0.023sandybrownΔEok 0.058darkkhakiΔEok 0.063lightsalmonΔEok 0.071silverΔEok 0.078