#2FCFBF Turquoise
rgb(47, 207, 191)
Color conversions
- HEX
- #2FCFBF
- RGB
- rgb(47, 207, 191)
- RGBA
- rgba(47, 207, 191, 1)
- HSL
- hsl(174, 63%, 50%)
- HSV / HSB
- hsv(174, 77%, 81%)
- CMYK
- cmyk(77%, 0%, 8%, 19%)
Wide-gamut spaces
- XYZ
- xyz(32.884, 48.987, 57.002)
- LAB
- lab(75.44 -43.14 -3.53)
- LCH
- lch(75.44 43.29 184.68)
- OKLAB
- oklab(77.25% -0.1271 -0.0102)
- OKLCH
- oklch(77.25% 0.1275 184.61)
- Nearest name
- Turquoise
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
#2fcfbf1a
#2fcfbf33
#2fcfbf4d
#2fcfbf66
#2fcfbf80
#2fcfbf99
#2fcfbfb3
#2fcfbfcc
#2fcfbfe6
#2fcfbfff
Accessibility and contrast
On white
1.94:1
Body text Fail · Large text Fail
On black
10.8:1
Body text AAA · Large text AA
White-on-color contrast is 1.94: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-turquoise: #2fcfbf;
--color-turquoise-rgb: 47 207 191;
--color-turquoise-hsl: 174 63% 50%;
--color-turquoise-oklch: 77.25% 0.1275 184.61;
}
.element {
color: #2fcfbf;
background-color: hsl(174, 63%, 50%);
border: 1px solid rgb(47 207 191 / 40%);
}SCSS
$turquoise: #2fcfbf;
$turquoise-light: #97e7df;
$turquoise-dark: #186860;
.element {
color: $turquoise;
background: rgba($turquoise, 0.12);
&:hover {
color: darken($turquoise, 8%);
}
}LESS
@turquoise: #2fcfbf;
@turquoise-light: lighten(@turquoise, 12%);
@turquoise-dark: darken(@turquoise, 12%);
.element {
color: @turquoise;
background: fade(@turquoise, 12%);
}Tailwind CSS
/* Tailwind v4 — src/styles.css */
@theme {
--color-turquoise-50: #d5f5f2;
--color-turquoise-100: #c1f1ec;
--color-turquoise-200: #acece5;
--color-turquoise-300: #82e2d9;
--color-turquoise-400: #59d9cc;
--color-turquoise-500: #2fcfbf;
--color-turquoise-600: #2abaac;
--color-turquoise-700: #219186;
--color-turquoise-800: #186860;
--color-turquoise-900: #0e3e39;
}
/* Usage */
<div class="bg-turquoise-500 text-turquoise-50 ring-turquoise-600" />
/* Arbitrary value, no config needed */
<div class="bg-[#2fcfbf]" />Bootstrap
// Bootstrap 5 — _variables.scss (before importing bootstrap)
$turquoise: #2fcfbf;
$primary: $turquoise;
$theme-colors: map-merge($theme-colors, (
"turquoise": $turquoise
));
// Generates .text-turquoise, .bg-turquoise, .btn-turquoise
@import "bootstrap/scss/bootstrap";Flutter
import 'package:flutter/material.dart';
const Color turquoise = Color(0xFF2FCFBF);
// As a MaterialColor swatch
const MaterialColor turquoiseSwatch = MaterialColor(0xFF2FCFBF, <int, Color>{
50: Color(0xFFD5F5F2),
100: Color(0xFFC1F1EC),
200: Color(0xFFACECE5),
300: Color(0xFF82E2D9),
400: Color(0xFF59D9CC),
500: Color(0xFF2FCFBF),
600: Color(0xFF2ABAAC),
700: Color(0xFF219186),
800: Color(0xFF186860),
900: Color(0xFF0E3E39),
});Swift / SwiftUI
import SwiftUI
extension Color {
/// #2fcfbf — Turquoise
static let turquoise = Color(
red: 0.1843,
green: 0.8118,
blue: 0.749
)
}
// UIKit
extension UIColor {
static let turquoise = UIColor(
red: 0.1843,
green: 0.8118,
blue: 0.749,
alpha: 1.0
)
}Android
<!-- res/values/colors.xml -->
<resources>
<color name="turquoise">#2FCFBF</color>
<color name="turquoise_translucent">#802FCFBF</color>
</resources>
<!-- Jetpack Compose -->
val Turquoise = Color(0xFF2FCFBF)JavaScript
export const TURQUOISE = {
hex: "#2fcfbf",
rgb: [47, 207, 191],
hsl: [174, 63, 50],
oklch: "oklch(77.25% 0.1275 184.61)",
};JSON tokens
{
"$schema": "https://design-tokens.org/schema.json",
"turquoise": {
"$type": "color",
"$value": "#2fcfbf",
"$description": "Turquoise — generated by ColorVerse AI"
}
}