#76DCD3 Medium Turquoise

rgb(118, 220, 211)

Color conversions

HEX
#76DCD3
RGB
rgb(118, 220, 211)
RGBA
rgba(118, 220, 211, 1)
HSL
hsl(175, 59%, 66%)
HSV / HSB
hsv(175, 46%, 86%)
CMYK
cmyk(46%, 0%, 4%, 14%)

Wide-gamut spaces

XYZ
xyz(44.818, 59.737, 70.784)
LAB
lab(81.7 -31.93 -4.82)
LCH
lch(81.7 32.29 188.58)
OKLAB
oklab(83.04% -0.0958 -0.0135)
OKLCH
oklch(83.04% 0.0968 188.02)
Nearest name
Medium Turquoise

Shades, tints and tones

Shades

Tints

Tones

Color harmonies

Complementary

The hue directly opposite on the color wheel. Maximum contrast, ideal for a single accent against a dominant brand color.

Analogous

Neighbouring hues that share a temperature. The safest harmony for calm, cohesive interfaces.

Triadic

Three hues evenly spaced 120 degrees apart. Vibrant and balanced — use one as dominant and the other two sparingly.

Split Complementary

The complement split into two adjacent hues. Nearly the contrast of complementary with noticeably less tension.

Square (Tetradic)

Four hues at 90-degree intervals. A rich set for illustration, data visualisation, and category coding.

Rectangle (Tetradic)

Two complementary pairs offset by 60 degrees. Gives two warm and two cool options in one system.

Monochromatic

A single hue across five lightness levels. The foundation of most UI scales and the most accessible starting point.

Similar colors

Closest matches

Opacity variations

#76dcd31a

#76dcd333

#76dcd34d

#76dcd366

#76dcd380

#76dcd399

#76dcd3b3

#76dcd3cc

#76dcd3e6

#76dcd3ff

Accessibility and contrast

On white

1.62:1

Body text Fail · Large text Fail

On black

12.95:1

Body text AAA · Large text AA

White-on-color contrast is 1.62: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-medium-turquoise: #76dcd3;
  --color-medium-turquoise-rgb: 118 220 211;
  --color-medium-turquoise-hsl: 175 59% 66%;
  --color-medium-turquoise-oklch: 83.04% 0.0968 188.02;
}

.element {
  color: #76dcd3;
  background-color: hsl(175, 59%, 66%);
  border: 1px solid rgb(118 220 211 / 40%);
}

SCSS

$medium-turquoise: #76dcd3;
$medium-turquoise-light: #bbeee9;
$medium-turquoise-dark: #3b6e6a;

.element {
  color: $medium-turquoise;
  background: rgba($medium-turquoise, 0.12);

  &:hover {
    color: darken($medium-turquoise, 8%);
  }
}

LESS

@medium-turquoise: #76dcd3;
@medium-turquoise-light: lighten(@medium-turquoise, 12%);
@medium-turquoise-dark: darken(@medium-turquoise, 12%);

.element {
  color: @medium-turquoise;
  background: fade(@medium-turquoise, 12%);
}

Tailwind CSS

/* Tailwind v4 — src/styles.css */
@theme {
  --color-medium-turquoise-50: #e4f8f6;
  --color-medium-turquoise-100: #d6f5f2;
  --color-medium-turquoise-200: #c8f1ed;
  --color-medium-turquoise-300: #adeae5;
  --color-medium-turquoise-400: #91e3dc;
  --color-medium-turquoise-500: #76dcd3;
  --color-medium-turquoise-600: #6ac6be;
  --color-medium-turquoise-700: #539a94;
  --color-medium-turquoise-800: #3b6e6a;
  --color-medium-turquoise-900: #23423f;
}

/* Usage */
<div class="bg-medium-turquoise-500 text-medium-turquoise-50 ring-medium-turquoise-600" />

/* Arbitrary value, no config needed */
<div class="bg-[#76dcd3]" />

Bootstrap

// Bootstrap 5 — _variables.scss (before importing bootstrap)
$medium-turquoise: #76dcd3;
$primary: $medium-turquoise;

$theme-colors: map-merge($theme-colors, (
  "medium-turquoise": $medium-turquoise
));

// Generates .text-medium-turquoise, .bg-medium-turquoise, .btn-medium-turquoise
@import "bootstrap/scss/bootstrap";

Flutter

import 'package:flutter/material.dart';

const Color mediumTurquoise = Color(0xFF76DCD3);

// As a MaterialColor swatch
const MaterialColor mediumTurquoiseSwatch = MaterialColor(0xFF76DCD3, <int, Color>{
  50: Color(0xFFE4F8F6),
  100: Color(0xFFD6F5F2),
  200: Color(0xFFC8F1ED),
  300: Color(0xFFADEAE5),
  400: Color(0xFF91E3DC),
  500: Color(0xFF76DCD3),
  600: Color(0xFF6AC6BE),
  700: Color(0xFF539A94),
  800: Color(0xFF3B6E6A),
  900: Color(0xFF23423F),
});

Swift / SwiftUI

import SwiftUI

extension Color {
    /// #76dcd3 — Medium Turquoise
    static let mediumTurquoise = Color(
        red: 0.4627,
        green: 0.8627,
        blue: 0.8275
    )
}

// UIKit
extension UIColor {
    static let mediumTurquoise = UIColor(
        red: 0.4627,
        green: 0.8627,
        blue: 0.8275,
        alpha: 1.0
    )
}

Android

<!-- res/values/colors.xml -->
<resources>
    <color name="medium_turquoise">#76DCD3</color>
    <color name="medium_turquoise_translucent">#8076DCD3</color>
</resources>

<!-- Jetpack Compose -->
val MediumTurquoise = Color(0xFF76DCD3)

JavaScript

export const MEDIUM_TURQUOISE = {
  hex: "#76dcd3",
  rgb: [118, 220, 211],
  hsl: [175, 59, 66],
  oklch: "oklch(83.04% 0.0968 188.02)",
};

JSON tokens

{
  "$schema": "https://design-tokens.org/schema.json",
  "medium-turquoise": {
    "$type": "color",
    "$value": "#76dcd3",
    "$description": "Medium Turquoise — generated by ColorVerse AI"
  }
}