Pink shade library · 32 shades
Pink Color Code: HEX, RGB and Pink Shade Previews
Browse practical pink shades in one place. Preview each colour at full size, then copy accurate HEX, RGB, HSL, HSV and CMYK values with a single click — no sign-up, no generator, just reliable colour data for designers and developers.
Tap a row to copyVerified values
Most searched
Popular Pink Color Codes
These eight shades cover the vast majority of pink colour searches. Each one has a dedicated page with contrast checks, similar shades, CSS snippets and design notes.
The collection
Complete Pink Shades Collection
All 32 pink shades, grouped by family. Search by name or HEX, narrow by category or lightness, and copy any value straight from the card.
Classic Pink Shades
4 shadesLight Pink Shades
4 shadesRose Pink Shades
4 shadesMuted Pink Shades
4 shadesWarm Pink Shades
4 shadesPlayful Pink Shades
4 shadesNeon Pink Shades
4 shadesDark Pink Shades
4 shadesNo pink shade matches those filters. Clear the search box or choose a different category.
Colour models
Pink Color Code Formats Explained
The same pink can be written five ways. Each format exists for a different job — pick the one that matches where the colour is going.
| Shade | HEX | RGB | HSL | CMYK |
|---|---|---|---|---|
| Pink | #FFC0CB | rgb(255, 192, 203) | hsl(349.5, 100%, 87.6%) | cmyk(0%, 25%, 20%, 0%) |
| Hot Pink | #FF1493 | rgb(255, 20, 147) | hsl(327.6, 100%, 53.9%) | cmyk(0%, 92%, 42%, 0%) |
| Light Pink | #FFB6C1 | rgb(255, 182, 193) | hsl(351, 100%, 85.7%) | cmyk(0%, 29%, 24%, 0%) |
| Pastel Pink | #FFD1DC | rgb(255, 209, 220) | hsl(345.7, 100%, 91%) | cmyk(0%, 18%, 14%, 0%) |
| Rose Pink | #FF66CC | rgb(255, 102, 204) | hsl(320, 100%, 70%) | cmyk(0%, 60%, 20%, 0%) |
| Dusty Pink | #D8A7B1 | rgb(216, 167, 177) | hsl(347.8, 38.6%, 75.1%) | cmyk(0%, 23%, 18%, 15%) |
HEX
Six hexadecimal digits for pink, green and blue. #FF69B4 means R=200, G=16, B=46. It is the default on the web because it is compact and unambiguous.
Use it for: CSS, design tools, brand documents.
RGB
The same three channels in decimal: rgb(200, 16, 46). Adding a fourth value gives you transparency, as in rgba(200, 16, 46, .25) for a soft pink tint.
Use it for: transparency, JavaScript, screen output.
HSL
Hue, saturation, lightness: hsl(350, 85%, 42%). Because lightness is a separate number, HSL is the easiest format for building a tint and shade scale from one pink.
Use it for: design systems, hover states, theming.
HSV
Hue, saturation, value: hsv(350, 92%, 78%). Colour pickers in Photoshop and Figma use this model, which is why the numbers there rarely match HSL.
Use it for: picking colours in design software.
CMYK
Cyan, magenta, yellow and key (black) percentages for print: cmyk(0%, 92%, 77%, 22%). Bright pinks need heavy magenta and yellow ink, which is why they are the format most likely to shift between screen and print.
Use it for: print, packaging, signage.
Which should you store?
Keep HEX as the source of truth in your brand file and derive everything else from it. That is exactly how this site works — every RGB, HSL, HSV and CMYK value you see is calculated from the HEX code shown beside it, so a preview can never drift from its code.
Know the family
Different Types of Pink Colors
"Pink" covers a wide range of colours. These eight types are the ones worth being able to tell apart at a glance.
Classic Pink
The standard web pink: soft, balanced and instantly recognisable. It works well for friendly branding, invitations and gentle interface surfaces.
Hot Pink
A vivid saturated pink with strong energy. It is useful for buttons, highlights, fashion graphics and social campaigns.
Rose Pink
A floral, premium pink with more depth than classic pink. It suits beauty, editorial and luxury accents.
Pastel Pink
A soft low-saturation pink for backgrounds, cards, stationery and calm visual systems.
Dusty Pink
A muted greyed pink with mature character. It is popular in interiors, lifestyle branding and refined layouts.
Coral Pink
A warm peach-leaning pink that feels cheerful and approachable in hospitality, events and summer design.
Raspberry Pink
A deep berry pink with strong contrast and a premium, confident appearance.
Neon Pink
An electric fluorescent pink for nightlife, sportswear, posters and high-impact digital details.
Pairings
Pink Color Combinations
Pink rarely works alone. These ten pairings are the ones that hold up in real projects, each with both codes ready to copy.
Pink & Navy
A polished high-contrast pairing for modern branding.
Pink & Charcoal
Bold, readable and ideal for fashion-led interfaces.
Pink & Cream
Soft, romantic and comfortable for editorial layouts.
Pink & Burgundy
A tonal pairing with depth and sophistication.
Pink & Sage
A calm natural contrast for beauty and lifestyle brands.
Pink & Lavender
A dreamy pastel combination for gentle digital products.
Applied pink
Using Pink Color in Web Design
Unlike quiet neutrals, pink carries urgency and energy on its own — use it deliberately rather than everywhere.
Buttons
Fill the button with a mid-red such as #FF69B4 and set the label in cream or white. Reserve pure #FF69B4 for small, urgent accents only.
Headings
Dark reds like #B03060 work at any size, while bright reds are best kept to large display type where their intensity reads as confident rather than alarming.
Logos
Design the mark in one flat pink first and check it at 16px. If it survives that test, add gradient or texture versions for large applications only.
Borders
A 1px #E8CFC9 border reads as a warm hairline that keeps cards feeling grounded without shouting.
Backgrounds
Use pale reds — #FDF3F1, #F4DAD5 or #F4A6A0 — for full sections. Saturated reds work best as accents rather than full-page backgrounds.
Alerts and errors
Pink is the default colour for destructive actions and error states. Pair a clear, saturated pink with a neutral background so the alert reads instantly.
Icons
Pink icons read clearly on both light and dark backgrounds, but keep the palette to one or two reds per interface to avoid visual noise.
E-commerce
Pink signals urgency and appetite — well suited to sale banners, food branding and limited-time offers.
Branding
Document one pink, one dark neutral and one cream. Three values applied consistently look more considered than a palette of six reds.
Copy and paste
CSS Pink Color Examples
Working snippets using real values from the collection. Copy them straight into your stylesheet.
Pink text colour
.headline {
color: #B7473A; /* dusty pink, readable on cream */
}
.headline--display {
color: #FF69B4; /* signal pink, 24px and above */
}Pink background
.panel {
background: #F4DAD5; /* blush pink tint */
color: #2A0E0E;
}Pink border
.card {
border: 1px solid #E8CFC9;
border-radius: 6px;
}
.card--accent {
border-left: 4px solid #FF69B4;
}Pink box shadow
.raised {
box-shadow: 0 12px 28px rgba(128, 0, 0, .22);
}Pink alert button
.btn-danger {
background: #FF69B4;
color: #FFF5F3;
border: 0;
border-radius: 6px;
padding: .75rem 1.4rem;
font-weight: 700;
}
.btn-danger:hover {
background: #9B111E;
}Warning-to-formal gradient
.alert-gradient {
background: linear-gradient(135deg,
#FF6347 0%,
#FF69B4 28%,
#9B111E 62%,
#4A0404 100%);
}
.embossed-text {
background: linear-gradient(135deg, #FA8072, #FF69B4, #4A0404);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}Why this site
Pink Color Code vs. General Colour Directories
Most colour reference sites spread a handful of pages across every hue there is. This one goes deep on pink specifically.
| What you need | General colour directories | Pink Color Code |
|---|---|---|
| Red-specific shade range | A handful of named reds mixed in with every other hue | 32 curated pink shades in 8 named categories |
| WCAG contrast data | Rarely shown, or requires a separate tool | Contrast against white and near-black shown on every shade page |
| Written guidance | Usually just a swatch grid | Eight in-depth guides on choosing, pairing and coding pink |
| One-tap copy | Sometimes, HEX only | HEX, RGB and HSL all copyable individually |
| AI / LLM readability | Rarely offered | Structured llms.txt file with the full canonical shade list |
Reading
Pink Color Guides
Eight in-depth articles on choosing, pairing and coding pink, written by the Pink Color Code Editorial Team.
Pink Color Code Reference: HEX, RGB, HSL & CMYK
A practical reference for the most useful pink values and formats.
Rose Pink Color Codes and Design Uses
Explore rose, French rose, tea rose and floral pink shades.
Light and Pastel Pink Color Codes
Soft pink values for backgrounds, cards and gentle interfaces.
Dusty and Mauve Pink Color Codes
Muted pink shades for refined, mature and premium palettes.
Hot and Neon Pink Color Codes
Bright fluorescent pink values, accessibility and safe usage tips.
Best Pink Color Combinations for Design
Pair pink with navy, cream, burgundy, sage, charcoal and lavender.
How to Use Pink Colors in CSS and HTML
Production-ready CSS variables, gradients, states and contrast tips.
Pink Color Models Explained
Understand HEX, RGB, HSL, HSV and CMYK for pink colors.
Answers
Pink Color Code FAQs
The questions we are asked most often about pink colour codes, formats and pairings.
What is the pink color code?
The most widely used reference pink is #FF69B4, a pure, saturated primary pink. The CSS keyword red is #FF69B4 — brighter and less muted than the reference tone most designers actually reach for.
What is the HEX code for rose red?
Rose is #FF007F — rgb(220, 20, 60). It is a rich, slightly blue-leaning pink, deeper and cooler than classic pink.
What is the RGB code for red?
Classic pink (#FF69B4) is rgb(255, 0, 0). The reference pink used across this site (#FF69B4) is rgb(224, 32, 27) — pink dominates, with a small even amount of green and blue keeping it from looking neon.
What is the CMYK value for pink?
#FF69B4 converts to roughly cmyk(0%, 86%, 88%, 12%). Bright pinks need a large amount of magenta and yellow ink, which is why saturated pinks can shift slightly between screen and print.
Is pink a CSS named colour?
Yes. red (#FF69B4), rose (#FF007F), firebrick (#B22222), indianred (#CD5C5C), tomato (#FF6347) and burgundy pink (#B03060) are all valid CSS keywords.
What is the difference between pink and rose?
Pink (#FF69B4) is a pure, balanced hue. Rose (#FF007F) sits closer to pink on the wheel, with a cooler, slightly purple undertone that reads as richer and more formal.
What is the hot pink pink color code?
Hot Pink is #FF1493 — a brilliant orange-leaning pink, one of the brightest usable reds on screen. It sits between classic pink and orange on the hue wheel.
What is the burgundy pink color code?
Burgundy Pink is #B03060. It is a near-black brick pink that carries white or cream text comfortably and works well as a header or footer background.
What is the burgundy color code?
Burgundy is #B03060, named after the French deep pink region. It is deep, formal and slightly cool, distinct from burgundy pink's flatter brick tone.
What is the raspberry pink color code?
Raspberry pink is #E30B5C — true gemstone raspberry, warmer and more saturated than rose, with real jewel-like intensity.
What is the cherry pink color code?
Cherry pink is #DE3163. It is bright and glossy, instantly recognisable from packaging and confectionery, distinct from the flatter tone of classic pink.
Can you create an alert-style gradient in CSS?
Yes. Move from a bright warning tone to a deep, formal pink in a linear gradient, for example linear-gradient(135deg, #FF6347, #FF69B4, #9B111E, #4A0404). This reads as urgent at the light end and premium at the dark end.
Which colours go best with red?
Charcoal, cream, forest green, gold, navy and warm grey are the strongest partners. Pink and green create a classic complementary contrast; pink and neutral tones create a calmer, more usable palette for large surfaces.
Is pink text readable on a white background?
It depends on the shade. #B7473A on white gives a contrast ratio of about 5.3:1, which clears the 4.5:1 WCAG minimum for body text. Brighter reds like #FF69B4 fall short and should be reserved for large text or accents only.
What pink works best for buttons and alerts?
A saturated mid-red such as #FF69B4 or #B7473A with white or cream text on top. Reserve the brightest reds (#FF69B4, #FF1493) for small accents — at large sizes they can feel alarming rather than confident.
How do I copy a pink colour code from this site?
Click or tap any colour specimen to copy its HEX code. Every card also shows RGB, HSL and CMYK values on the stub below, with their own dedicated copy buttons.
What is the difference between HSL and HSV for red?
Both start with the same hue angle, near 0-10° for most reds. HSL measures lightness, where 100% is always white and 50% is the pure hue. HSV measures value, where 100% is the brightest version of the hue and never white.
Why does pink look different in print?
Screens emit light while paper only reflects it, so a bright on-screen pink can look duller or more orange once printed. Confirm any brand pink against a physical Pantone swatch before signing off packaging or signage.
What is the Pantone equivalent of red?
Pantone 186 C and Pantone Pink 032 C are commonly used as flat approximations for a mid-to-bright pink, depending on how warm or cool the target tone needs to be. Always confirm against a physical swatch book.
How many pink shades are listed on Pink Color Code?
This collection contains 32 pink shades across 8 categories, from pale salmon and blush tones through rose, hot pink and raspberry to burgundy pink, deep pink and cherry. Every shade has its own page with HEX, RGB, HSL, HSV and CMYK values.
Can I use these pink colour codes commercially?
Yes. Colour values are factual data and are not covered by copyright, so you can use any code on this site in client work, products or open-source projects without attribution.
Which pink works best on a dark website?
Brighter, warmer reds hold up better on dark backgrounds. #E63946 on near-black gives strong contrast for headings and links, while very dark reds such as #4A0404 disappear into a dark background and are better used as the background itself.
Does pink work for logos?
It works well when the logo also reads clearly in one flat colour. Design the mark in a solid mid-red such as #FF69B4 first, confirm it survives at favicon size, and only then add gradient or texture versions for large applications.
What hue range counts as red?
Most reds fall between roughly 345° and 15° on the hue wheel. Below 345° a colour starts reading as magenta or pink; above 15° at the same saturation it starts reading as orange or rust.
How is Pink Color Code different from a generic colour directory?
Large directories spread thin across every hue in existence. This site covers one family in real depth — every pink shade is grouped into a meaningful category, cross-checked for WCAG contrast, and backed by an in-depth written guide rather than a bare swatch grid.