#BED033 Acid Green
rgb(190, 208, 51)
Color conversions
- HEX
- #BED033
- RGB
- rgb(190, 208, 51)
- RGBA
- rgba(190, 208, 51, 1)
- HSL
- hsl(67, 63%, 51%)
- HSV / HSB
- hsv(67, 75%, 82%)
- CMYK
- cmyk(9%, 0%, 75%, 18%)
Wide-gamut spaces
- XYZ
- xyz(44.39, 56.299, 11.66)
- LAB
- lab(79.78 -24.93 70.17)
- LCH
- lch(79.78 74.47 109.56)
- OKLAB
- oklab(81.72% -0.0757 0.1541)
- OKLCH
- oklch(81.72% 0.1717 116.16)
- Nearest name
- Acid Green
Shades, tints and tones
Color harmonies
The hue directly opposite on the color wheel. Maximum contrast, ideal for a single accent against a dominant brand color.
Neighbouring hues that share a temperature. The safest harmony for calm, cohesive interfaces.
Three hues evenly spaced 120 degrees apart. Vibrant and balanced — use one as dominant and the other two sparingly.
The complement split into two adjacent hues. Nearly the contrast of complementary with noticeably less tension.
Four hues at 90-degree intervals. A rich set for illustration, data visualisation, and category coding.
Two complementary pairs offset by 60 degrees. Gives two warm and two cool options in one system.
Similar colors
Opacity variations
#bed0331a
#bed03333
#bed0334d
#bed03366
#bed03380
#bed03399
#bed033b3
#bed033cc
#bed033e6
#bed033ff
Accessibility and contrast
On white
1.71:1
Body text Fail · Large text Fail
On black
12.26:1
Body text AAA · Large text AA
White-on-color contrast is 1.71: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-acid-green: #bed033;
--color-acid-green-rgb: 190 208 51;
--color-acid-green-hsl: 67 63% 51%;
--color-acid-green-oklch: 81.72% 0.1717 116.16;
}
.element {
color: #bed033;
background-color: hsl(67, 63%, 51%);
border: 1px solid rgb(190 208 51 / 40%);
}SCSS
$acid-green: #bed033;
$acid-green-light: #dfe899;
$acid-green-dark: #5f681a;
.element {
color: $acid-green;
background: rgba($acid-green, 0.12);
&:hover {
color: darken($acid-green, 8%);
}
}LESS
@acid-green: #bed033;
@acid-green-light: lighten(@acid-green, 12%);
@acid-green-dark: darken(@acid-green, 12%);
.element {
color: @acid-green;
background: fade(@acid-green, 12%);
}Tailwind CSS
/* Tailwind v4 — src/styles.css */
@theme {
--color-acid-green-50: #f2f6d6;
--color-acid-green-100: #ecf1c2;
--color-acid-green-200: #e5ecad;
--color-acid-green-300: #d8e385;
--color-acid-green-400: #cbd95c;
--color-acid-green-500: #bed033;
--color-acid-green-600: #abbb2e;
--color-acid-green-700: #859224;
--color-acid-green-800: #5f681a;
--color-acid-green-900: #393e0f;
}
/* Usage */
<div class="bg-acid-green-500 text-acid-green-50 ring-acid-green-600" />
/* Arbitrary value, no config needed */
<div class="bg-[#bed033]" />Bootstrap
// Bootstrap 5 — _variables.scss (before importing bootstrap)
$acid-green: #bed033;
$primary: $acid-green;
$theme-colors: map-merge($theme-colors, (
"acid-green": $acid-green
));
// Generates .text-acid-green, .bg-acid-green, .btn-acid-green
@import "bootstrap/scss/bootstrap";Flutter
import 'package:flutter/material.dart';
const Color acidGreen = Color(0xFFBED033);
// As a MaterialColor swatch
const MaterialColor acidGreenSwatch = MaterialColor(0xFFBED033, <int, Color>{
50: Color(0xFFF2F6D6),
100: Color(0xFFECF1C2),
200: Color(0xFFE5ECAD),
300: Color(0xFFD8E385),
400: Color(0xFFCBD95C),
500: Color(0xFFBED033),
600: Color(0xFFABBB2E),
700: Color(0xFF859224),
800: Color(0xFF5F681A),
900: Color(0xFF393E0F),
});Swift / SwiftUI
import SwiftUI
extension Color {
/// #bed033 — Acid Green
static let acidGreen = Color(
red: 0.7451,
green: 0.8157,
blue: 0.2
)
}
// UIKit
extension UIColor {
static let acidGreen = UIColor(
red: 0.7451,
green: 0.8157,
blue: 0.2,
alpha: 1.0
)
}Android
<!-- res/values/colors.xml -->
<resources>
<color name="acid_green">#BED033</color>
<color name="acid_green_translucent">#80BED033</color>
</resources>
<!-- Jetpack Compose -->
val AcidGreen = Color(0xFFBED033)JavaScript
export const ACID_GREEN = {
hex: "#bed033",
rgb: [190, 208, 51],
hsl: [67, 63, 51],
oklch: "oklch(81.72% 0.1717 116.16)",
};JSON tokens
{
"$schema": "https://design-tokens.org/schema.json",
"acid-green": {
"$type": "color",
"$value": "#bed033",
"$description": "Acid Green — generated by ColorVerse AI"
}
}