#09C8BB Tiffany Blue
rgb(9, 200, 187)
Color conversions
- HEX
- #09C8BB
- RGB
- rgb(9, 200, 187)
- RGBA
- rgba(9, 200, 187, 1)
- HSL
- hsl(176, 91%, 41%)
- HSV / HSB
- hsv(176, 96%, 78%)
- CMYK
- cmyk(96%, 0%, 7%, 22%)
Wide-gamut spaces
- XYZ
- xyz(29.732, 44.951, 54.113)
- LAB
- lab(72.86 -43.6 -5.21)
- LCH
- lch(72.86 43.91 186.82)
- OKLAB
- oklab(75% -0.1295 -0.0148)
- OKLCH
- oklch(75% 0.1303 186.54)
- Nearest name
- Tiffany Blue
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
#09c8bb1a
#09c8bb33
#09c8bb4d
#09c8bb66
#09c8bb80
#09c8bb99
#09c8bbb3
#09c8bbcc
#09c8bbe6
#09c8bbff
Accessibility and contrast
On white
2.1:1
Body text Fail · Large text Fail
On black
9.99:1
Body text AAA · Large text AA
White-on-color contrast is 2.1: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
Clean, technical, and effortlessly modern
Cyan and teal sit between blue's trust and green's calm, reading as clinical and precise. They perform well in data visualisation because they remain distinguishable for most forms of colour vision deficiency.
Water, hygiene, and clarity almost universally. Teal specifically carries a mid-century and medical association in Western design history.
Cyan entered common vocabulary through four-colour printing, where it is one of the process inks. Egyptian blue and later cerulean gave artists the closest historical equivalents.
Excellent for healthcare, SaaS, and fintech seeking approachability without blue's ubiquity. Deepen it for text use — bright cyan rarely reaches AA on white.
Common industries: Healthcare, SaaS, Travel, Water & utilities, Beauty. Pairs well with coral for warmth, deep navy for hierarchy, soft gray for restraint.
Code exports
CSS
:root {
--color-tiffany-blue: #09c8bb;
--color-tiffany-blue-rgb: 9 200 187;
--color-tiffany-blue-hsl: 176 91% 41%;
--color-tiffany-blue-oklch: 75% 0.1303 186.54;
}
.element {
color: #09c8bb;
background-color: hsl(176, 91%, 41%);
border: 1px solid rgb(9 200 187 / 40%);
}SCSS
$tiffany-blue: #09c8bb;
$tiffany-blue-light: #84e4dd;
$tiffany-blue-dark: #05645e;
.element {
color: $tiffany-blue;
background: rgba($tiffany-blue, 0.12);
&:hover {
color: darken($tiffany-blue, 8%);
}
}LESS
@tiffany-blue: #09c8bb;
@tiffany-blue-light: lighten(@tiffany-blue, 12%);
@tiffany-blue-dark: darken(@tiffany-blue, 12%);
.element {
color: @tiffany-blue;
background: fade(@tiffany-blue, 12%);
}Tailwind CSS
/* Tailwind v4 — src/styles.css */
@theme {
--color-tiffany-blue-50: #cef4f1;
--color-tiffany-blue-100: #b5efeb;
--color-tiffany-blue-200: #9de9e4;
--color-tiffany-blue-300: #6bded6;
--color-tiffany-blue-400: #3ad3c9;
--color-tiffany-blue-500: #09c8bb;
--color-tiffany-blue-600: #08b4a8;
--color-tiffany-blue-700: #068c83;
--color-tiffany-blue-800: #05645e;
--color-tiffany-blue-900: #033c38;
}
/* Usage */
<div class="bg-tiffany-blue-500 text-tiffany-blue-50 ring-tiffany-blue-600" />
/* Arbitrary value, no config needed */
<div class="bg-[#09c8bb]" />Bootstrap
// Bootstrap 5 — _variables.scss (before importing bootstrap)
$tiffany-blue: #09c8bb;
$primary: $tiffany-blue;
$theme-colors: map-merge($theme-colors, (
"tiffany-blue": $tiffany-blue
));
// Generates .text-tiffany-blue, .bg-tiffany-blue, .btn-tiffany-blue
@import "bootstrap/scss/bootstrap";Flutter
import 'package:flutter/material.dart';
const Color tiffanyBlue = Color(0xFF09C8BB);
// As a MaterialColor swatch
const MaterialColor tiffanyBlueSwatch = MaterialColor(0xFF09C8BB, <int, Color>{
50: Color(0xFFCEF4F1),
100: Color(0xFFB5EFEB),
200: Color(0xFF9DE9E4),
300: Color(0xFF6BDED6),
400: Color(0xFF3AD3C9),
500: Color(0xFF09C8BB),
600: Color(0xFF08B4A8),
700: Color(0xFF068C83),
800: Color(0xFF05645E),
900: Color(0xFF033C38),
});Swift / SwiftUI
import SwiftUI
extension Color {
/// #09c8bb — Tiffany Blue
static let tiffanyBlue = Color(
red: 0.0353,
green: 0.7843,
blue: 0.7333
)
}
// UIKit
extension UIColor {
static let tiffanyBlue = UIColor(
red: 0.0353,
green: 0.7843,
blue: 0.7333,
alpha: 1.0
)
}Android
<!-- res/values/colors.xml -->
<resources>
<color name="tiffany_blue">#09C8BB</color>
<color name="tiffany_blue_translucent">#8009C8BB</color>
</resources>
<!-- Jetpack Compose -->
val TiffanyBlue = Color(0xFF09C8BB)JavaScript
export const TIFFANY_BLUE = {
hex: "#09c8bb",
rgb: [9, 200, 187],
hsl: [176, 91, 41],
oklch: "oklch(75% 0.1303 186.54)",
};JSON tokens
{
"$schema": "https://design-tokens.org/schema.json",
"tiffany-blue": {
"$type": "color",
"$value": "#09c8bb",
"$description": "Tiffany Blue — generated by ColorVerse AI"
}
}