CSS named colour
Light Green
#90ee90
A CSS named colour: lightgreen is valid anywhere a colour is expected.
- RGB
- rgb(144 238 144)
- HSL
- 120°, 73%, 75%
- OKLCh
- 86.8% 0.156 144.1
Light Green in every format
Web & CSSThe everyday formats for stylesheets and design tools.
| Hex | #90ee90 | |
|---|---|---|
| RGB | rgb(144 238 144) | |
| RGB legacy | rgb(144, 238, 144) | |
| RGB percent | rgb(56.47% 93.33% 56.47%) | |
| HSL | hsl(120 73.4% 74.9%) | |
| HSL legacy | hsl(120, 73.4%, 74.9%) | |
| HSV / HSB | hsv(120, 39.5%, 93.3%) | |
| HWB | hwb(120 56.5% 6.7%) | |
| Nearest name | lightgreen | |
| CMYK | cmyk(39.5%, 0%, 39.5%, 6.7%)Naive conversion. Real print work needs an ICC profile. |
Perceptual & wide gamutModern CSS colour spaces for uniform scales and P3 displays.
| OKLCh | oklch(86.8% 0.1558 144.088)Modern CSS colour space for even palettes — better than HSL when building scales. | |
|---|---|---|
| OKLab | oklab(86.8% -0.12618 0.09138) | |
| CIE LCh | lch(86.598% 56.346 139.766) | |
| CIE Lab | lab(86.598% -43.015 36.394) | |
| Display P3 | color(display-p3 0.6509 0.9241 0.6018) | |
| Rec. 2020 | color(rec2020 0.6823 0.8998 0.5678) | |
| srgb-linear | color(srgb-linear 0.2789 0.855 0.2789)Light-linear sRGB — the same numbers a shader wants for maths. | |
| CIE XYZ (D65) | color(xyz-d65 0.4711 0.6909 0.3724) |
ShadersGLSL, HLSL and WGSL vectors in both encoded and linear form.
| GLSL vec3 — sRGB | vec3(0.565, 0.933, 0.565)Encoded values. Use when writing straight to the framebuffer. | |
|---|---|---|
| GLSL vec3 — linear | vec3(0.279, 0.855, 0.279)Light-linear values. Use for lighting, blending and mixing. | |
| GLSL vec4 — sRGB | vec4(0.565, 0.933, 0.565, 1.0) | |
| GLSL vec4 — linear | vec4(0.279, 0.855, 0.279, 1.0) | |
| GLSL ivec3 | ivec3(144, 238, 144) | |
| HLSL float3 — sRGB | float3(0.565, 0.933, 0.565) | |
| HLSL float3 — linear | float3(0.279, 0.855, 0.279) | |
| HLSL float4 — sRGB | float4(0.565, 0.933, 0.565, 1.0) | |
| HLSL half4 — sRGB | half4(0.565, 0.933, 0.565, 1.0) | |
| WGSL vec3f — sRGB | vec3f(0.565, 0.933, 0.565) | |
| WGSL vec4f — sRGB | vec4f(0.565, 0.933, 0.565, 1.0) | |
| WGSL vec3<f32> — linear | vec3<f32>(0.279, 0.855, 0.279) |
Engines & appsConstructors for Unity, Unreal, Godot, Flutter, SwiftUI and Android.
| Unity Color | new Color(0.565f, 0.933f, 0.565f, 1.0f)Color for everyday scripting (0–1). Color32 when you need whole numbers from 0 to 255. | |
|---|---|---|
| Unity Color32 | new Color32(144, 238, 144, 255) | |
| Unreal FLinearColor | FLinearColor(0.2789f, 0.855f, 0.2789f, 1.0f)FLinearColor for materials and lighting. FColor when you need whole numbers from 0 to 255. | |
| Unreal FColor | FColor(144, 238, 144, 255)Whole numbers from 0 to 255 — use when an API asks for FColor, not FLinearColor. | |
| Godot Color | Color(0.565, 0.933, 0.565, 1) | |
| Flutter Color | Color(0xFF90EE90)Packed ARGB, so alpha comes first. | |
| Android Color | Color.rgb(144, 238, 144) | |
| SwiftUI Color | Color(red: 0.565, green: 0.933, blue: 0.565) | |
| UIKit UIColor | UIColor(red: 0.565, green: 0.933, blue: 0.565, alpha: 1) |
Raw valuesPacked integers and plain arrays.
| 0x hex | 0x90EE90 | |
|---|---|---|
| 0x hex (ARGB) | 0xFF90EE90 | |
| Array 0–1 | [0.565, 0.933, 0.565] | |
| Array 0–255 | [144, 238, 144] | |
| Decimal integer | 9498256 |
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 Green on white | 1.42:1 | Fail | Lc 20 | Not usable for text |
| Light Green on black | 14.82:1 | AAA | Lc 84 | Body text, 18px and up |
Light Green text on a white background
Light Green text on a black background
White text on Light Green
Black text on Light Green
Tonal scale
Hue held fixed while lightness walks OKLCh, ready to use as a design system ramp.
- 50#d7ffd6
- 100#bbffba
- 200#a6f3a5
- 300#8add8a
- 400#68c169
- 500#45a348
- 600#2a8730
- 700#116e1c
- 800#005909
- 900#004700
- 950#002a00
Tints and shades
Mixed perceptually toward white and black, so the steps feel evenly spaced.
- Tint 1#a5f1a3
- Tint 2#b8f5b6
- Tint 3#caf8c9
- Tint 4#dcfadb
- Tint 5#eefded
- Shade 1#70bb70
- Shade 2#518a51
- Shade 3#345c34
- Shade 4#1a321a
- Shade 5#040d04
Colours that work with Light Green
Complementary, triadic and analogous partners, rotated in OKLCh so they keep the same apparent brightness.
- #ffb0ff
- #b7d4ff
- #ffbcb6
- #d2df5a
- #34f4cc
Closest CSS names
lightgreenexact matchpalegreenΔEok 0.036mediumspringgreenΔEok 0.065aquamarineΔEok 0.081springgreenΔEok 0.083greenyellowΔEok 0.101