#E2FF2B Electric Lime

rgb(226, 255, 43)

Color conversions

HEX
#E2FF2B
RGB
rgb(226, 255, 43)
RGBA
rgba(226, 255, 43, 1)
HSL
hsl(68, 100%, 58%)
HSV / HSB
hsv(68, 83%, 100%)
CMYK
cmyk(11%, 0%, 83%, 0%)

Wide-gamut spaces

XYZ
xyz(67.562, 87.864, 15.685)
LAB
lab(95.1 -32.67 86.71)
LCH
lch(95.1 92.66 110.64)
OKLAB
oklab(94.67% -0.0993 0.187)
OKLCH
oklch(94.67% 0.2117 117.96)
Nearest name
Electric Lime

Shades, tints and tones

Shades

Tints

Tones

Color harmonies

Complementary

The hue directly opposite on the color wheel. Maximum contrast, ideal for a single accent against a dominant brand color.

Analogous

Neighbouring hues that share a temperature. The safest harmony for calm, cohesive interfaces.

Triadic

Three hues evenly spaced 120 degrees apart. Vibrant and balanced — use one as dominant and the other two sparingly.

Split Complementary

The complement split into two adjacent hues. Nearly the contrast of complementary with noticeably less tension.

Square (Tetradic)

Four hues at 90-degree intervals. A rich set for illustration, data visualisation, and category coding.

Rectangle (Tetradic)

Two complementary pairs offset by 60 degrees. Gives two warm and two cool options in one system.

Monochromatic

A single hue across five lightness levels. The foundation of most UI scales and the most accessible starting point.

Similar colors

Closest matches

Opacity variations

#e2ff2b1a

#e2ff2b33

#e2ff2b4d

#e2ff2b66

#e2ff2b80

#e2ff2b99

#e2ff2bb3

#e2ff2bcc

#e2ff2be6

#e2ff2bff

Accessibility and contrast

On white

1.13:1

Body text Fail · Large text Fail

On black

18.57:1

Body text AAA · Large text AA

White-on-color contrast is 1.13:1.

Color blindness preview

Protanopia

No red cones — ~1% of men

Protanomaly

Reduced red sensitivity — ~1% of men

Deuteranopia

No green cones — ~1% of men

Deuteranomaly

Reduced green sensitivity — ~5% of men

Tritanopia

No blue cones — very rare

Tritanomaly

Reduced blue sensitivity — very rare

Achromatopsia

No color perception — ~1 in 30,000

Achromatomaly

Partial color perception — rare

Meaning, psychology and brand usage

Optimism that demands careful contrast handling

Yellow is the most luminous hue, which makes it excellent for highlights and terrible for text. Its very high relative luminance means yellow type on white almost never reaches WCAG AA — always pair it with a dark surface or use it as a fill behind dark text.

Sunshine, caution, and intellect in most markets. In parts of Latin America it carries mourning associations, and in Japan it historically signalled courage.

Yellow ochre sits alongside red as one of the earliest pigments. Chrome yellow, beloved by Van Gogh, was toxic and prone to browning — modern replacements are stable but chemically unrelated.

Best as an accent or brand signature rather than a UI primary. When used at scale, anchor it with near-black type and generous white space so it reads confident rather than cheap.

Common industries: Retail, Energy, Children's products, Delivery, Agriculture. Pairs well with near-black for legibility, deep violet for a modern contrast, white for airiness.

Code exports

CSS

:root {
  --color-electric-lime: #e2ff2b;
  --color-electric-lime-rgb: 226 255 43;
  --color-electric-lime-hsl: 68 100% 58%;
  --color-electric-lime-oklch: 94.67% 0.2117 117.96;
}

.element {
  color: #e2ff2b;
  background-color: hsl(68, 100%, 58%);
  border: 1px solid rgb(226 255 43 / 40%);
}

SCSS

$electric-lime: #e2ff2b;
$electric-lime-light: #f1ff95;
$electric-lime-dark: #718016;

.element {
  color: $electric-lime;
  background: rgba($electric-lime, 0.12);

  &:hover {
    color: darken($electric-lime, 8%);
  }
}

LESS

@electric-lime: #e2ff2b;
@electric-lime-light: lighten(@electric-lime, 12%);
@electric-lime-dark: darken(@electric-lime, 12%);

.element {
  color: @electric-lime;
  background: fade(@electric-lime, 12%);
}

Tailwind CSS

/* Tailwind v4 — src/styles.css */
@theme {
  --color-electric-lime-50: #f9ffd5;
  --color-electric-lime-100: #f6ffbf;
  --color-electric-lime-200: #f3ffaa;
  --color-electric-lime-300: #eeff80;
  --color-electric-lime-400: #e8ff55;
  --color-electric-lime-500: #e2ff2b;
  --color-electric-lime-600: #cbe627;
  --color-electric-lime-700: #9eb31e;
  --color-electric-lime-800: #718016;
  --color-electric-lime-900: #444d0d;
}

/* Usage */
<div class="bg-electric-lime-500 text-electric-lime-50 ring-electric-lime-600" />

/* Arbitrary value, no config needed */
<div class="bg-[#e2ff2b]" />

Bootstrap

// Bootstrap 5 — _variables.scss (before importing bootstrap)
$electric-lime: #e2ff2b;
$primary: $electric-lime;

$theme-colors: map-merge($theme-colors, (
  "electric-lime": $electric-lime
));

// Generates .text-electric-lime, .bg-electric-lime, .btn-electric-lime
@import "bootstrap/scss/bootstrap";

Flutter

import 'package:flutter/material.dart';

const Color electricLime = Color(0xFFE2FF2B);

// As a MaterialColor swatch
const MaterialColor electricLimeSwatch = MaterialColor(0xFFE2FF2B, <int, Color>{
  50: Color(0xFFF9FFD5),
  100: Color(0xFFF6FFBF),
  200: Color(0xFFF3FFAA),
  300: Color(0xFFEEFF80),
  400: Color(0xFFE8FF55),
  500: Color(0xFFE2FF2B),
  600: Color(0xFFCBE627),
  700: Color(0xFF9EB31E),
  800: Color(0xFF718016),
  900: Color(0xFF444D0D),
});

Swift / SwiftUI

import SwiftUI

extension Color {
    /// #e2ff2b — Electric Lime
    static let electricLime = Color(
        red: 0.8863,
        green: 1,
        blue: 0.1686
    )
}

// UIKit
extension UIColor {
    static let electricLime = UIColor(
        red: 0.8863,
        green: 1,
        blue: 0.1686,
        alpha: 1.0
    )
}

Android

<!-- res/values/colors.xml -->
<resources>
    <color name="electric_lime">#E2FF2B</color>
    <color name="electric_lime_translucent">#80E2FF2B</color>
</resources>

<!-- Jetpack Compose -->
val ElectricLime = Color(0xFFE2FF2B)

JavaScript

export const ELECTRIC_LIME = {
  hex: "#e2ff2b",
  rgb: [226, 255, 43],
  hsl: [68, 100, 58],
  oklch: "oklch(94.67% 0.2117 117.96)",
};

JSON tokens

{
  "$schema": "https://design-tokens.org/schema.json",
  "electric-lime": {
    "$type": "color",
    "$value": "#e2ff2b",
    "$description": "Electric Lime — generated by ColorVerse AI"
  }
}