#2DFCEE Aqua
rgb(45, 252, 238)
Color conversions
- HEX
- #2DFCEE
- RGB
- rgb(45, 252, 238)
- RGBA
- rgba(45, 252, 238, 1)
- HSL
- hsl(176, 97%, 58%)
- HSV / HSB
- hsv(176, 82%, 99%)
- CMYK
- cmyk(82%, 0%, 6%, 1%)
Wide-gamut spaces
- XYZ
- xyz(51.318, 76.345, 92.904)
- LAB
- lab(90.02 -49.84 -6.9)
- LCH
- lch(90.02 50.31 187.89)
- OKLAB
- oklab(89.56% -0.1488 -0.0195)
- OKLCH
- oklch(89.56% 0.15 187.47)
- Nearest name
- Aqua
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
#2dfcee1a
#2dfcee33
#2dfcee4d
#2dfcee66
#2dfcee80
#2dfcee99
#2dfceeb3
#2dfceecc
#2dfceee6
#2dfceeff
Accessibility and contrast
On white
1.29:1
Body text Fail · Large text Fail
On black
16.27:1
Body text AAA · Large text AA
White-on-color contrast is 1.29: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-aqua: #2dfcee;
--color-aqua-rgb: 45 252 238;
--color-aqua-hsl: 176 97% 58%;
--color-aqua-oklch: 89.56% 0.15 187.47;
}
.element {
color: #2dfcee;
background-color: hsl(176, 97%, 58%);
border: 1px solid rgb(45 252 238 / 40%);
}SCSS
$aqua: #2dfcee;
$aqua-light: #96fef7;
$aqua-dark: #177e77;
.element {
color: $aqua;
background: rgba($aqua, 0.12);
&:hover {
color: darken($aqua, 8%);
}
}LESS
@aqua: #2dfcee;
@aqua-light: lighten(@aqua, 12%);
@aqua-dark: darken(@aqua, 12%);
.element {
color: @aqua;
background: fade(@aqua, 12%);
}Tailwind CSS
/* Tailwind v4 — src/styles.css */
@theme {
--color-aqua-50: #d5fefc;
--color-aqua-100: #c0fefa;
--color-aqua-200: #abfef8;
--color-aqua-300: #81fdf5;
--color-aqua-400: #57fdf1;
--color-aqua-500: #2dfcee;
--color-aqua-600: #29e3d6;
--color-aqua-700: #1fb0a7;
--color-aqua-800: #177e77;
--color-aqua-900: #0e4c47;
}
/* Usage */
<div class="bg-aqua-500 text-aqua-50 ring-aqua-600" />
/* Arbitrary value, no config needed */
<div class="bg-[#2dfcee]" />Bootstrap
// Bootstrap 5 — _variables.scss (before importing bootstrap)
$aqua: #2dfcee;
$primary: $aqua;
$theme-colors: map-merge($theme-colors, (
"aqua": $aqua
));
// Generates .text-aqua, .bg-aqua, .btn-aqua
@import "bootstrap/scss/bootstrap";Flutter
import 'package:flutter/material.dart';
const Color aqua = Color(0xFF2DFCEE);
// As a MaterialColor swatch
const MaterialColor aquaSwatch = MaterialColor(0xFF2DFCEE, <int, Color>{
50: Color(0xFFD5FEFC),
100: Color(0xFFC0FEFA),
200: Color(0xFFABFEF8),
300: Color(0xFF81FDF5),
400: Color(0xFF57FDF1),
500: Color(0xFF2DFCEE),
600: Color(0xFF29E3D6),
700: Color(0xFF1FB0A7),
800: Color(0xFF177E77),
900: Color(0xFF0E4C47),
});Swift / SwiftUI
import SwiftUI
extension Color {
/// #2dfcee — Aqua
static let aqua = Color(
red: 0.1765,
green: 0.9882,
blue: 0.9333
)
}
// UIKit
extension UIColor {
static let aqua = UIColor(
red: 0.1765,
green: 0.9882,
blue: 0.9333,
alpha: 1.0
)
}Android
<!-- res/values/colors.xml -->
<resources>
<color name="aqua">#2DFCEE</color>
<color name="aqua_translucent">#802DFCEE</color>
</resources>
<!-- Jetpack Compose -->
val Aqua = Color(0xFF2DFCEE)JavaScript
export const AQUA = {
hex: "#2dfcee",
rgb: [45, 252, 238],
hsl: [176, 97, 58],
oklch: "oklch(89.56% 0.15 187.47)",
};JSON tokens
{
"$schema": "https://design-tokens.org/schema.json",
"aqua": {
"$type": "color",
"$value": "#2dfcee",
"$description": "Aqua — generated by ColorVerse AI"
}
}