CSS named colour
Honeydew
#f0fff0
A CSS named colour: honeydew is valid anywhere a colour is expected.
- RGB
- rgb(240 255 240)
- HSL
- 120°, 100%, 97%
- OKLCh
- 98.5% 0.025 145.4
Honeydew in every format
Web & CSSThe everyday formats for stylesheets and design tools.
| Hex | #f0fff0 | |
|---|---|---|
| RGB | rgb(240 255 240) | |
| RGB legacy | rgb(240, 255, 240) | |
| RGB percent | rgb(94.12% 100% 94.12%) | |
| HSL | hsl(120 100% 97.1%) | |
| HSL legacy | hsl(120, 100%, 97.1%) | |
| HSV / HSB | hsv(120, 5.9%, 100%) | |
| HWB | hwb(120 94.1% 0%) | |
| Nearest name | honeydew | |
| CMYK | cmyk(5.9%, 0%, 5.9%, 0%)Naive conversion. Real print work needs an ICC profile. |
Perceptual & wide gamutModern CSS colour spaces for uniform scales and P3 displays.
| OKLCh | oklch(98.484% 0.02521 145.381)Modern CSS colour space for even palettes — better than HSL when building scales. | |
|---|---|---|
| OKLab | oklab(98.484% -0.02075 0.01432) | |
| CIE LCh | lch(98.574% 8.911 142.584) | |
| CIE Lab | lab(98.574% -7.078 5.414) | |
| Display P3 | color(display-p3 0.952 0.9981 0.9456) | |
| Rec. 2020 | color(rec2020 0.9563 0.9949 0.94) | |
| srgb-linear | color(srgb-linear 0.8714 1 0.8714)Light-linear sRGB — the same numbers a shader wants for maths. | |
| CIE XYZ (D65) | color(xyz-d65 0.8742 0.9634 0.9643) |
ShadersGLSL, HLSL and WGSL vectors in both encoded and linear form.
| GLSL vec3 — sRGB | vec3(0.941, 1.0, 0.941)Encoded values. Use when writing straight to the framebuffer. | |
|---|---|---|
| GLSL vec3 — linear | vec3(0.871, 1.0, 0.871)Light-linear values. Use for lighting, blending and mixing. | |
| GLSL vec4 — sRGB | vec4(0.941, 1.0, 0.941, 1.0) | |
| GLSL vec4 — linear | vec4(0.871, 1.0, 0.871, 1.0) | |
| GLSL ivec3 | ivec3(240, 255, 240) | |
| HLSL float3 — sRGB | float3(0.941, 1.0, 0.941) | |
| HLSL float3 — linear | float3(0.871, 1.0, 0.871) | |
| HLSL float4 — sRGB | float4(0.941, 1.0, 0.941, 1.0) | |
| HLSL half4 — sRGB | half4(0.941, 1.0, 0.941, 1.0) | |
| WGSL vec3f — sRGB | vec3f(0.941, 1.0, 0.941) | |
| WGSL vec4f — sRGB | vec4f(0.941, 1.0, 0.941, 1.0) | |
| WGSL vec3<f32> — linear | vec3<f32>(0.871, 1.0, 0.871) |
Engines & appsConstructors for Unity, Unreal, Godot, Flutter, SwiftUI and Android.
| Unity Color | new Color(0.941f, 1.0f, 0.941f, 1.0f)Color for everyday scripting (0–1). Color32 when you need whole numbers from 0 to 255. | |
|---|---|---|
| Unity Color32 | new Color32(240, 255, 240, 255) | |
| Unreal FLinearColor | FLinearColor(0.8714f, 1.0f, 0.8714f, 1.0f)FLinearColor for materials and lighting. FColor when you need whole numbers from 0 to 255. | |
| Unreal FColor | FColor(240, 255, 240, 255)Whole numbers from 0 to 255 — use when an API asks for FColor, not FLinearColor. | |
| Godot Color | Color(0.941, 1, 0.941, 1) | |
| Flutter Color | Color(0xFFF0FFF0)Packed ARGB, so alpha comes first. | |
| Android Color | Color.rgb(240, 255, 240) | |
| SwiftUI Color | Color(red: 0.941, green: 1, blue: 0.941) | |
| UIKit UIColor | UIColor(red: 0.941, green: 1, blue: 0.941, alpha: 1) |
Raw valuesPacked integers and plain arrays.
| 0x hex | 0xF0FFF0 | |
|---|---|---|
| 0x hex (ARGB) | 0xFFF0FFF0 | |
| Array 0–1 | [0.941, 1, 0.941] | |
| Array 0–255 | [240, 255, 240] | |
| Decimal integer | 15794160 |
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 |
|---|---|---|---|---|
| Honeydew on white | 1.04:1 | Fail | Lc 0 | Not usable for text |
| Honeydew on black | 20.27:1 | AAA | Lc 105 | Body text at any size |
Honeydew text on a white background
Honeydew text on a black background
White text on Honeydew
Black text on Honeydew
Tonal scale
Hue held fixed while lightness walks OKLCh, ready to use as a design system ramp.
- 50#f0fbf0
- 100#e6f1e6
- 200#d4e0d4
- 300#bdcabd
- 400#a0aea0
- 500#829082
- 600#697669
- 700#535e53
- 800#414b41
- 900#323b32
- 950#1a211a
Tints and shades
Mixed perceptually toward white and black, so the steps feel evenly spaced.
- Tint 1#f3fff3
- Tint 2#f5fff5
- Tint 3#f8fff8
- Tint 4#fafffa
- Tint 5#fdfffd
- Shade 1#bcc8bc
- Shade 2#8b948b
- Shade 3#5d635d
- Shade 4#323632
- Shade 5#0d0f0d
Colours that work with Honeydew
Complementary, triadic and analogous partners, rotated in OKLCh so they keep the same apparent brightness.
- #fff5ff
- #f2faff
- #fff4f1
- #f9fde9
- #e9fff9
Closest CSS names
honeydewexact matchmintcreamΔEok 0.016ivoryΔEok 0.019azureΔEok 0.020floralwhiteΔEok 0.022lightcyanΔEok 0.026