Lust Color Codes
Lust is a mid-tone, saturated red with the hex code #E62020, RGB values of 230, 32, 32 and an HSL value of hsl(0, 80%, 51%).
| HEX | #E62020 |
|---|---|
| RGB | 230, 32, 32 |
| HSL | hsl(0, 80%, 51%) |
| HSV | 0°, 86%, 90% |
| CMYK | 0%, 86%, 86%, 10% |
| LAB | 49.45, 70.75, 51.95 |
| CIELCHuv | 49.45, 151.52, 12.17° |
- Nearest Pantone
- PMS 1788 C ΔE 4.3 · approximate
- Nearest CSS name
-
redΔE 18.3
Community source color-name-list, community color-name index
Lust Color Hex Code
The Lust color hex code is #E62020. Those six digits are three pairs, E6 for red, 20 for green and 20 for blue, which is the same triplet a browser reads from the CSS value below.
#E62020
Lust Color RGB Code
The Lust RGB code is rgb(230, 32, 32). Red carries the most light at 230 of 255, which is what puts this color where it sits on the wheel.
rgb(230, 32, 32)
Lust Color HSV Code
The Lust HSV code is 0°, 86%, 90%. Read it as a hue of 0 degrees, 86% saturation and 90% value, which is the form most color pickers use because moving one number changes one thing.
0°, 86%, 90%
Lust Color CIELChuv Code
The Lust CIELCHuv code is 49.45, 151.52, 12.17°. Unlike hex or RGB this one is perceptual: lightness 49 means mid-toned to the eye rather than to the screen, and chroma 152 is how far it sits from grey.
49.45, 151.52, 12.17°
Tonal scale
What are Lust Color Palettes?
A shade mixes toward black, a tint toward white, a tone toward grey. Every step keeps the hue and is copy-ready.
Shades, toward black
Tints, toward white
Tones, toward grey
Palettes
What are Lust Color Palette Codes?
Each of these is a hue rotation from #E62020. They are generated, not curated, so they are exact.
Complementary
Directly opposite sits #20E6E6, a light, saturated teal. No other pairing separates two hues further, so this is the one to reach for when a single element has to win attention. Both are saturated, so give the complement much less area than the base or the two will fight.
Analogous
#E62083 and #E68320 sit 30 degrees either side. All three share most of their hue, so the set reads as one family instead of three separate decisions. Good for backgrounds and for state variations that should not announce themselves.
Triadic
#20E620 and #2020E6 complete an even 120 degree split. Three fully independent hues, so one has to lead: keep this base dominant and let the other two appear in small quantities.
Split-complementary
Instead of the direct complement, this takes the two hues either side of it: #20E683 and #2083E6. Almost the same contrast, without the edge shimmer a true complementary pair produces at high saturation.
Tetradic
Two complementary pairs forming a rectangle: this base with #20E6E6, and #83E620 with #8320E6. The richest of the five and the hardest to balance, so treat this base as the lead and hold the other three well back.
Accessibility
Contrast checker: is Lust accessible?
Measured against white and against black, with a separate verdict for each element type. Small text, large text and UI components have different thresholds, so one pass or fail for the whole color would be wrong roughly a third of the time.
White background
4.57:14.57
contrast ratio on white background
| Element | AA | AAA |
|---|---|---|
| Small text needs 4.5:1 / 7:1 | Passes | Fails |
| Large text needs 3:1 / 4.5:1 | Passes | Passes |
| UI component needs 3:1 | Passes | n/a |
Black background
4.59:14.59
contrast ratio on black background
| Element | AA | AAA |
|---|---|---|
| Small text needs 4.5:1 / 7:1 | Passes | Fails |
| Large text needs 3:1 / 4.5:1 | Passes | Passes |
| UI component needs 3:1 | Passes | n/a |
Lust clears WCAG AA against white at 4.57:1, so it is safe for body copy as well as headings. Text placed on it should be black, which gives 4.59:1.
Color vision
How Lust looks with color blindness
Around 300 million people see color differently from the way it is specified. Each card shows the actual color beside how it appears, and how common that form of vision is.
Protanopia
About 1% of men#B4B220
Lust changes substantially here. ΔE 89.6
No working red cones. Reds darken sharply and drift toward the same muddy olive as green.
Deuteranopia
About 1% of men#BCC520
Lust changes substantially here. ΔE 97.9
No working green cones. With the milder deuteranomaly at nearer 6% of men, this is by far the most common form, and the one worth designing around.
Tritanopia
About 1 in 10,000#E12020
Lust holds up almost unchanged here. ΔE 2.1
No working blue cones. Blues shift toward green and yellows toward pink. Rare, and unlike the others it is not sex-linked, so it affects men and women equally.
Achromatopsia
About 1 in 30,000#767676
Lust changes substantially here. ΔE 87.8
No color vision at all. Also a fair proxy for how the color survives a greyscale print or a failing screen.
To a deuteranope, the most common form, Lust reads as #BCC520. That is a shift of ΔE 97.9, so it is a different color to roughly one man in sixteen. It sits in the red end of the spectrum, which is exactly where red-green deficiency does its damage. Never pair it with a green of similar lightness to signal a difference in meaning: to a large minority the two become one color. The widest shift is under deuteranopia, at ΔE 97.9. The rule this leads to needs no simulator: never let color be the only thing carrying a message. Add a label, an icon, or a clear difference in lightness, and the problem disappears for everyone.
Snippets
Using Lust in code
:root {
--lust: #E62020;
}
.example {
color: var(--lust);
}
// tailwind.config.js
theme: {
extend: {
colors: {
'lust': '#E62020',
},
},
}
// SwiftUI takes 0–1 components, not 0–255.
let lust = Color(
red: 0.902,
green: 0.125,
blue: 0.125
)
<!-- res/values/colors.xml -->
<color name="lust">#E62020</color>
// Flutter wants ARGB: FF for full opacity, then the hex.
const lust = Color(0xFFE62020);