CSS named colour
Lime Green
#32cd32
A CSS named colour: limegreen is valid anywhere a colour is expected.
- RGB
- rgb(50 205 50)
- HSL
- 120°, 61%, 50%
- OKLCh
- 74.2% 0.229 142.8
Lime Green in every format
Web & CSSThe everyday formats for stylesheets and design tools.
| Hex | #32cd32 | |
|---|---|---|
| RGB | rgb(50 205 50) | |
| RGB legacy | rgb(50, 205, 50) | |
| RGB percent | rgb(19.61% 80.39% 19.61%) | |
| HSL | hsl(120 60.8% 50%) | |
| HSL legacy | hsl(120, 60.8%, 50%) | |
| HSV / HSB | hsv(120, 75.6%, 80.4%) | |
| HWB | hwb(120 19.6% 19.6%) | |
| Nearest name | limegreen | |
| CMYK | cmyk(75.6%, 0%, 75.6%, 19.6%)Naive conversion. Real print work needs an ICC profile. |
Perceptual & wide gamutModern CSS colour spaces for uniform scales and P3 displays.
| OKLCh | oklch(74.187% 0.22865 142.835)Modern CSS colour space for even palettes — better than HSL when building scales. | |
|---|---|---|
| OKLab | oklab(74.187% -0.18221 0.13813) | |
| CIE LCh | lch(72.673% 86.225 135.848) | |
| CIE Lab | lab(72.673% -61.866 60.061) | |
| Display P3 | color(display-p3 0.4025 0.7926 0.3011) | |
| Rec. 2020 | color(rec2020 0.4596 0.7502 0.259) | |
| srgb-linear | color(srgb-linear 0.0319 0.6105 0.0319)Light-linear sRGB — the same numbers a shader wants for maths. | |
| CIE XYZ (D65) | color(xyz-d65 0.2372 0.4457 0.1037) |
ShadersGLSL, HLSL and WGSL vectors in both encoded and linear form.
| GLSL vec3 — sRGB | vec3(0.196, 0.804, 0.196)Encoded values. Use when writing straight to the framebuffer. | |
|---|---|---|
| GLSL vec3 — linear | vec3(0.032, 0.61, 0.032)Light-linear values. Use for lighting, blending and mixing. | |
| GLSL vec4 — sRGB | vec4(0.196, 0.804, 0.196, 1.0) | |
| GLSL vec4 — linear | vec4(0.032, 0.61, 0.032, 1.0) | |
| GLSL ivec3 | ivec3(50, 205, 50) | |
| HLSL float3 — sRGB | float3(0.196, 0.804, 0.196) | |
| HLSL float3 — linear | float3(0.032, 0.61, 0.032) | |
| HLSL float4 — sRGB | float4(0.196, 0.804, 0.196, 1.0) | |
| HLSL half4 — sRGB | half4(0.196, 0.804, 0.196, 1.0) | |
| WGSL vec3f — sRGB | vec3f(0.196, 0.804, 0.196) | |
| WGSL vec4f — sRGB | vec4f(0.196, 0.804, 0.196, 1.0) | |
| WGSL vec3<f32> — linear | vec3<f32>(0.032, 0.61, 0.032) |
Engines & appsConstructors for Unity, Unreal, Godot, Flutter, SwiftUI and Android.
| Unity Color | new Color(0.196f, 0.804f, 0.196f, 1.0f)Color for everyday scripting (0–1). Color32 when you need whole numbers from 0 to 255. | |
|---|---|---|
| Unity Color32 | new Color32(50, 205, 50, 255) | |
| Unreal FLinearColor | FLinearColor(0.0319f, 0.6105f, 0.0319f, 1.0f)FLinearColor for materials and lighting. FColor when you need whole numbers from 0 to 255. | |
| Unreal FColor | FColor(50, 205, 50, 255)Whole numbers from 0 to 255 — use when an API asks for FColor, not FLinearColor. | |
| Godot Color | Color(0.196, 0.804, 0.196, 1) | |
| Flutter Color | Color(0xFF32CD32)Packed ARGB, so alpha comes first. | |
| Android Color | Color.rgb(50, 205, 50) | |
| SwiftUI Color | Color(red: 0.196, green: 0.804, blue: 0.196) | |
| UIKit UIColor | UIColor(red: 0.196, green: 0.804, blue: 0.196, alpha: 1) |
Raw valuesPacked integers and plain arrays.
| 0x hex | 0x32CD32 | |
|---|---|---|
| 0x hex (ARGB) | 0xFF32CD32 | |
| Array 0–1 | [0.196, 0.804, 0.196] | |
| Array 0–255 | [50, 205, 50] | |
| Decimal integer | 3329330 |
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 |
|---|---|---|---|---|
| Lime Green on white | 2.12:1 | Fail | Lc 41 | Non-text elements only |
| Lime Green on black | 9.91:1 | AAA | Lc 61 | Headings and large text |
Lime Green text on a white background
Lime Green text on a black background
White text on Lime Green
Black text on Lime Green
Tonal scale
Hue held fixed while lightness walks OKLCh, ready to use as a design system ramp.
- 50#d8ffd4
- 100#b3ffad
- 200#89fc83
- 300#67e663
- 400#38ca37
- 500#00ab00
- 600#008d00
- 700#007100
- 800#005a00
- 900#004800
- 950#002a00
Tints and shades
Mixed perceptually toward white and black, so the steps feel evenly spaced.
- Tint 1#64d75f
- Tint 2#88e083
- Tint 3#a8e8a3
- Tint 4#c6f0c2
- Tint 5#e3f8e1
- Shade 1#25a025
- Shade 2#197619
- Shade 3#0d4e0d
- Shade 4#042904
- Shade 5#000900
Colours that work with Lime Green
Complementary, triadic and analogous partners, rotated in OKLCh so they keep the same apparent brightness.
- #ec6efd
- #76a9ff
- #ff7574
- #aeb600
- #00cca1
Closest CSS names
limegreenexact matchyellowgreenΔEok 0.085mediumseagreenΔEok 0.109springgreenΔEok 0.137mediumspringgreenΔEok 0.138limeΔEok 0.141