#67BFBC Verdigris
rgb(103, 191, 188)
Color conversions
- HEX
- #67BFBC
- RGB
- rgb(103, 191, 188)
- RGBA
- rgba(103, 191, 188, 1)
- HSL
- hsl(178, 41%, 58%)
- HSV / HSB
- hsv(178, 46%, 75%)
- CMYK
- cmyk(46%, 0%, 2%, 25%)
Wide-gamut spaces
- XYZ
- xyz(33.298, 43.773, 54.262)
- LAB
- lab(72.08 -27.17 -6.71)
- LCH
- lch(72.08 27.98 193.87)
- OKLAB
- oklab(74.91% -0.0831 -0.0186)
- OKLCH
- oklch(74.91% 0.0852 192.6)
- Nearest name
- Verdigris
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
#67bfbc1a
#67bfbc33
#67bfbc4d
#67bfbc66
#67bfbc80
#67bfbc99
#67bfbcb3
#67bfbccc
#67bfbce6
#67bfbcff
Accessibility and contrast
On white
2.15:1
Body text Fail · Large text Fail
On black
9.76:1
Body text AAA · Large text AA
White-on-color contrast is 2.15: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-verdigris: #67bfbc;
--color-verdigris-rgb: 103 191 188;
--color-verdigris-hsl: 178 41% 58%;
--color-verdigris-oklch: 74.91% 0.0852 192.6;
}
.element {
color: #67bfbc;
background-color: hsl(178, 41%, 58%);
border: 1px solid rgb(103 191 188 / 40%);
}SCSS
$verdigris: #67bfbc;
$verdigris-light: #b3dfde;
$verdigris-dark: #34605e;
.element {
color: $verdigris;
background: rgba($verdigris, 0.12);
&:hover {
color: darken($verdigris, 8%);
}
}LESS
@verdigris: #67bfbc;
@verdigris-light: lighten(@verdigris, 12%);
@verdigris-dark: darken(@verdigris, 12%);
.element {
color: @verdigris;
background: fade(@verdigris, 12%);
}Tailwind CSS
/* Tailwind v4 — src/styles.css */
@theme {
--color-verdigris-50: #e1f2f2;
--color-verdigris-100: #d1eceb;
--color-verdigris-200: #c2e5e4;
--color-verdigris-300: #a4d9d7;
--color-verdigris-400: #85ccc9;
--color-verdigris-500: #67bfbc;
--color-verdigris-600: #5daca9;
--color-verdigris-700: #488684;
--color-verdigris-800: #34605e;
--color-verdigris-900: #1f3938;
}
/* Usage */
<div class="bg-verdigris-500 text-verdigris-50 ring-verdigris-600" />
/* Arbitrary value, no config needed */
<div class="bg-[#67bfbc]" />Bootstrap
// Bootstrap 5 — _variables.scss (before importing bootstrap)
$verdigris: #67bfbc;
$primary: $verdigris;
$theme-colors: map-merge($theme-colors, (
"verdigris": $verdigris
));
// Generates .text-verdigris, .bg-verdigris, .btn-verdigris
@import "bootstrap/scss/bootstrap";Flutter
import 'package:flutter/material.dart';
const Color verdigris = Color(0xFF67BFBC);
// As a MaterialColor swatch
const MaterialColor verdigrisSwatch = MaterialColor(0xFF67BFBC, <int, Color>{
50: Color(0xFFE1F2F2),
100: Color(0xFFD1ECEB),
200: Color(0xFFC2E5E4),
300: Color(0xFFA4D9D7),
400: Color(0xFF85CCC9),
500: Color(0xFF67BFBC),
600: Color(0xFF5DACA9),
700: Color(0xFF488684),
800: Color(0xFF34605E),
900: Color(0xFF1F3938),
});Swift / SwiftUI
import SwiftUI
extension Color {
/// #67bfbc — Verdigris
static let verdigris = Color(
red: 0.4039,
green: 0.749,
blue: 0.7373
)
}
// UIKit
extension UIColor {
static let verdigris = UIColor(
red: 0.4039,
green: 0.749,
blue: 0.7373,
alpha: 1.0
)
}Android
<!-- res/values/colors.xml -->
<resources>
<color name="verdigris">#67BFBC</color>
<color name="verdigris_translucent">#8067BFBC</color>
</resources>
<!-- Jetpack Compose -->
val Verdigris = Color(0xFF67BFBC)JavaScript
export const VERDIGRIS = {
hex: "#67bfbc",
rgb: [103, 191, 188],
hsl: [178, 41, 58],
oklch: "oklch(74.91% 0.0852 192.6)",
};JSON tokens
{
"$schema": "https://design-tokens.org/schema.json",
"verdigris": {
"$type": "color",
"$value": "#67bfbc",
"$description": "Verdigris — generated by ColorVerse AI"
}
}