#2CB4DA Deep Sky Blue

rgb(44, 180, 218)

Color conversions

HEX
#2CB4DA
RGB
rgb(44, 180, 218)
RGBA
rgba(44, 180, 218, 1)
HSL
hsl(193, 70%, 51%)
HSV / HSB
hsv(193, 80%, 85%)
CMYK
cmyk(80%, 17%, 0%, 15%)

Wide-gamut spaces

XYZ
xyz(30.01, 38.236, 72.115)
LAB
lab(68.19 -22.44 -29.17)
LCH
lch(68.19 36.8 232.43)
OKLAB
oklab(71.66% -0.0911 -0.0818)
OKLCH
oklch(71.66% 0.1224 221.91)
Nearest name
Deep Sky Blue

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

#2cb4da1a

#2cb4da33

#2cb4da4d

#2cb4da66

#2cb4da80

#2cb4da99

#2cb4dab3

#2cb4dacc

#2cb4dae6

#2cb4daff

Accessibility and contrast

On white

2.43:1

Body text Fail · Large text Fail

On black

8.65:1

Body text AAA · Large text AA

White-on-color contrast is 2.43: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-deep-sky-blue: #2cb4da;
  --color-deep-sky-blue-rgb: 44 180 218;
  --color-deep-sky-blue-hsl: 193 70% 51%;
  --color-deep-sky-blue-oklch: 71.66% 0.1224 221.91;
}

.element {
  color: #2cb4da;
  background-color: hsl(193, 70%, 51%);
  border: 1px solid rgb(44 180 218 / 40%);
}

SCSS

$deep-sky-blue: #2cb4da;
$deep-sky-blue-light: #96daed;
$deep-sky-blue-dark: #165a6d;

.element {
  color: $deep-sky-blue;
  background: rgba($deep-sky-blue, 0.12);

  &:hover {
    color: darken($deep-sky-blue, 8%);
  }
}

LESS

@deep-sky-blue: #2cb4da;
@deep-sky-blue-light: lighten(@deep-sky-blue, 12%);
@deep-sky-blue-dark: darken(@deep-sky-blue, 12%);

.element {
  color: @deep-sky-blue;
  background: fade(@deep-sky-blue, 12%);
}

Tailwind CSS

/* Tailwind v4 — src/styles.css */
@theme {
  --color-deep-sky-blue-50: #d5f0f8;
  --color-deep-sky-blue-100: #c0e9f4;
  --color-deep-sky-blue-200: #abe1f0;
  --color-deep-sky-blue-300: #80d2e9;
  --color-deep-sky-blue-400: #56c3e1;
  --color-deep-sky-blue-500: #2cb4da;
  --color-deep-sky-blue-600: #28a2c4;
  --color-deep-sky-blue-700: #1f7e99;
  --color-deep-sky-blue-800: #165a6d;
  --color-deep-sky-blue-900: #0d3641;
}

/* Usage */
<div class="bg-deep-sky-blue-500 text-deep-sky-blue-50 ring-deep-sky-blue-600" />

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

Bootstrap

// Bootstrap 5 — _variables.scss (before importing bootstrap)
$deep-sky-blue: #2cb4da;
$primary: $deep-sky-blue;

$theme-colors: map-merge($theme-colors, (
  "deep-sky-blue": $deep-sky-blue
));

// Generates .text-deep-sky-blue, .bg-deep-sky-blue, .btn-deep-sky-blue
@import "bootstrap/scss/bootstrap";

Flutter

import 'package:flutter/material.dart';

const Color deepSkyBlue = Color(0xFF2CB4DA);

// As a MaterialColor swatch
const MaterialColor deepSkyBlueSwatch = MaterialColor(0xFF2CB4DA, <int, Color>{
  50: Color(0xFFD5F0F8),
  100: Color(0xFFC0E9F4),
  200: Color(0xFFABE1F0),
  300: Color(0xFF80D2E9),
  400: Color(0xFF56C3E1),
  500: Color(0xFF2CB4DA),
  600: Color(0xFF28A2C4),
  700: Color(0xFF1F7E99),
  800: Color(0xFF165A6D),
  900: Color(0xFF0D3641),
});

Swift / SwiftUI

import SwiftUI

extension Color {
    /// #2cb4da — Deep Sky Blue
    static let deepSkyBlue = Color(
        red: 0.1725,
        green: 0.7059,
        blue: 0.8549
    )
}

// UIKit
extension UIColor {
    static let deepSkyBlue = UIColor(
        red: 0.1725,
        green: 0.7059,
        blue: 0.8549,
        alpha: 1.0
    )
}

Android

<!-- res/values/colors.xml -->
<resources>
    <color name="deep_sky_blue">#2CB4DA</color>
    <color name="deep_sky_blue_translucent">#802CB4DA</color>
</resources>

<!-- Jetpack Compose -->
val DeepSkyBlue = Color(0xFF2CB4DA)

JavaScript

export const DEEP_SKY_BLUE = {
  hex: "#2cb4da",
  rgb: [44, 180, 218],
  hsl: [193, 70, 51],
  oklch: "oklch(71.66% 0.1224 221.91)",
};

JSON tokens

{
  "$schema": "https://design-tokens.org/schema.json",
  "deep-sky-blue": {
    "$type": "color",
    "$value": "#2cb4da",
    "$description": "Deep Sky Blue — generated by ColorVerse AI"
  }
}