Baker-Miller Pink

HEX: #FF91AF | Modern Palette

On White
2.12:1
FAIL
On Black
9.92:1
PASS

Color Specifications

HEX
#FF91AF
RGB
255, 145, 175
HSL
343°, 43% ,100%
CMYK
0, 43.14, 31.37, 0

About Baker-Miller Pink

Baker-Miller Pink (#FF91AF) is a color with RGB(255, 145, 175) and HSL(343.64°, 43.14%, 100%). In design, it fits Warm styles and is suitable for Text, Background, Print. Its complementary color is #91FFE1, which creates strong contrast. Its triadic palette includes #AFFF91 and #91AFFF. The name comes from Baker-Miller Pink (English).

  • HEX: #FF91AF
  • RGB: 255, 145, 175
  • HSL: 343.64°, 43.14%, 100%
  • Style: Warm
  • Use case: Text, Background, Print
  • Complementary color: #91FFE1
  • Triadic colors: #AFFF91, #91AFFF
  • The name comes from Baker-Miller Pink (English).

Live Components

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

Color Harmonies

Complementary

The color directly opposite on the color wheel — creates maximum contrast and vibrance.

Analogous

Colors adjacent on the wheel — naturally harmonious and pleasing to the eye.

Triadic

Three colors equally spaced 120° apart — bold, balanced, and visually rich.

Split-Complementary

Two colors flanking the complement — high contrast with less tension than full complementary.

Tetradic (Square)

Four colors at 90° intervals — rich variety, best when one color dominates.

Monochromatic

Shades and tints of the same hue — cohesive, elegant, and easy to work with.

Shades & Tints

A seamless scale of #FF91AF from deepest shade to lightest tint.

Color Characteristics

Mood
Style
Warm
Use case
Text Background Print

Accessibility Simulation

Deuteranopia #BABAAC
Protanopia #A2A2B0
Tritanopia #FD9595
Achromatopsia #B2B2B2

Frequently Asked Questions

Baker-Miller Pink (#FF91AF) is a color with RGB(255, 145, 175) and HSL(343.64°, 43.14%, 100%).

#FF91AF pairs strongly with #91FFE1 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#FF91AF is suitable for Text, Background, Print and works well with Warm styles.

The name Baker-Miller Pink is linked to Baker-Miller Pink from English, meaning A specific shade of pink (hex #ff91af) named after the researchers who studied its effects..

Name, History & Etymology

Origin Word Baker-Miller Pink
Meaning A specific shade of pink (hex #ff91af) named after the researchers who studied its effects.
Language English
First Recorded Use Late 1970s

History

Baker-Miller Pink, also known as P-618 or 'Drunk Tank Pink', was developed by researchers Alexander G. Schauss, Ph.D., and later studied by Navy Lieutenant Commander Frank Miller and Chief Warrant Officer John Baker. In 1979, Schauss published a paper on the color's effects, suggesting it could reduce aggression and anxiety. Miller and Baker, working at the Naval Correctional Facility in Seattle, painted a holding cell this specific shade of pink and observed a significant reduction in aggressive behavior among inmates. They found that after exposure to the color, inmates were less likely to act out and had reduced physical strength. The color was named after them due to their practical application and study of its effects.

First Recorded Use

1979

Cultural Associations

Baker-Miller Pink gained notoriety for its purported calming effects and was adopted in various institutional settings, including prisons, psychiatric facilities, and even some sports locker rooms (where opponents' locker rooms were painted pink to supposedly reduce their aggression). While initial studies showed promising results, subsequent research has yielded mixed findings, with some studies failing to replicate the calming effects. Despite the scientific debate, the color remains a popular topic in color psychology and design, often cited for its historical association with mood alteration. It has also appeared in popular culture as a reference to its calming or subduing properties.

Similar Named Colors

Flamingo Pink #FC8EAC ΔE 0.80
Pink Sherbet #F78FA7 ΔE 1.94
Tickle Me Pink #FC89AC ΔE 1.94
Vanilla Ice #F38FA9 ΔE 2.07

Code Snippets

/* Background */
.element {
    background-color: #FF91AF;
}

/* Text */
.element {
    color: #FF91AF;
}

/* Border */
.element {
    border: 1px solid #FF91AF;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #FF91AF,
        #FFFFFF
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #FF91AF,
        #FFFFFF
    );
}

// SCSS variable
$baker-miller-pink: #FF91AF;

// With RGB channels (useful for rgba() usage)
$baker-miller-pink-r: 255;
$baker-miller-pink-g: 145;
$baker-miller-pink-b: 175;

// Usage
.element {
    background-color: $baker-miller-pink;
    color: rgba($baker-miller-pink-r, $baker-miller-pink-g, $baker-miller-pink-b, 0.8);
}