#0F766E color
The swatch above shows #0F766E with its hex code written on it in white and in black, so you can see which of the two is legible before reading the measured ratios below.
#0F766E is a dark, vivid cyan, closest to the CSS named color teal (#008080).
It is also a Tailwind CSS default: teal-700. That means you can write bg-teal-700 or text-teal-700 directly, with no arbitrary-value brackets and no entry in your theme config.
Color values
| HEX | #0F766E |
| RGB | rgb(15, 118, 110) |
| HSL | hsl(175, 77%, 26%) |
| CMYK | cmyk(87%, 0%, 7%, 54%) |
| Decimal | 1013358 |
| CSS | color: #0F766E; |
| Android | 0xFF0F766E |
| Swift | UIColor(red: 0.059, green: 0.463, blue: 0.431, alpha: 1) |
Accessibility and contrast
| White text on #0F766E | 5.47:1 — AA pass · AA large pass · AAA fail |
| Black text on #0F766E | 3.84:1 — AA fail · AA large pass · AAA fail |
| Recommended text color | white |
WCAG 2.1 asks for at least 4.5:1 for body text and 3:1 for large text (18 pt, or 14 pt bold).
Tints and shades of #0F766E
Each swatch keeps the hue and saturation of #0F766E and varies only lightness — the quickest way to build a usable scale from a single brand color.
Colors that go with #0F766E
Harmonies generated by rotating the hue on the color wheel while holding saturation and lightness constant.
Using #0F766E in code
/* CSS */
.element { color: #0F766E; background-color: #0F766E; }
.element { color: rgb(15 118 110); }
.element { color: hsl(175 77% 26%); }
/* Tailwind */
<div class="bg-teal-700 text-white">
/* SCSS variable */
$brand: #0F766E;
Frequently asked questions
What color is #0F766E?
#0F766E is a dark, vivid cyan. Its hue sits at 175° on the color wheel, with 77% saturation and 26% lightness.
What is #0F766E in RGB?
#0F766E converts to rgb(15, 118, 110) — 15 red, 118 green and 110 blue.
What is #0F766E in CMYK?
Approximately cmyk(87%, 0%, 7%, 54%). Print output depends on the ICC profile of the press and paper, so treat this as a starting point rather than an exact match.
Should text on #0F766E be white or black?
White gives the better contrast ratio (5.47:1 versus 3.84:1).
What is the complementary color of #0F766E?
#750F18 — the hue directly opposite #0F766E on the color wheel.