#00A36D Jade
rgb(0, 163, 109)
Color conversions
- HEX
- #00A36D
- RGB
- rgb(0, 163, 109)
- RGBA
- rgba(0, 163, 109, 1)
- HSL
- hsl(160, 100%, 32%)
- HSV / HSB
- hsv(160, 100%, 64%)
- CMYK
- cmyk(100%, 0%, 33%, 36%)
Wide-gamut spaces
- XYZ
- xyz(15.856, 27.296, 18.898)
- LAB
- lab(59.25 -49.1 18.18)
- LCH
- lch(59.25 52.35 159.69)
- OKLAB
- oklab(63.18% -0.1331 0.046)
- OKLCH
- oklch(63.18% 0.1408 160.95)
- Nearest name
- Jade
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
#00a36d1a
#00a36d33
#00a36d4d
#00a36d66
#00a36d80
#00a36d99
#00a36db3
#00a36dcc
#00a36de6
#00a36dff
Accessibility and contrast
On white
3.25:1
Body text AA Large · Large text AA
On black
6.46:1
Body text AA · Large text AA
White-on-color contrast is 3.25: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-jade: #00a36d;
--color-jade-rgb: 0 163 109;
--color-jade-hsl: 160 100% 32%;
--color-jade-oklch: 63.18% 0.1408 160.95;
}
.element {
color: #00a36d;
background-color: hsl(160, 100%, 32%);
border: 1px solid rgb(0 163 109 / 40%);
}SCSS
$jade: #00a36d;
$jade-light: #80d1b6;
$jade-dark: #005237;
.element {
color: $jade;
background: rgba($jade, 0.12);
&:hover {
color: darken($jade, 8%);
}
}LESS
@jade: #00a36d;
@jade-light: lighten(@jade, 12%);
@jade-dark: darken(@jade, 12%);
.element {
color: @jade;
background: fade(@jade, 12%);
}Tailwind CSS
/* Tailwind v4 — src/styles.css */
@theme {
--color-jade-50: #ccede2;
--color-jade-100: #b3e3d3;
--color-jade-200: #99dac5;
--color-jade-300: #66c8a7;
--color-jade-400: #33b58a;
--color-jade-500: #00a36d;
--color-jade-600: #009362;
--color-jade-700: #00724c;
--color-jade-800: #005237;
--color-jade-900: #003121;
}
/* Usage */
<div class="bg-jade-500 text-jade-50 ring-jade-600" />
/* Arbitrary value, no config needed */
<div class="bg-[#00a36d]" />Bootstrap
// Bootstrap 5 — _variables.scss (before importing bootstrap)
$jade: #00a36d;
$primary: $jade;
$theme-colors: map-merge($theme-colors, (
"jade": $jade
));
// Generates .text-jade, .bg-jade, .btn-jade
@import "bootstrap/scss/bootstrap";Flutter
import 'package:flutter/material.dart';
const Color jade = Color(0xFF00A36D);
// As a MaterialColor swatch
const MaterialColor jadeSwatch = MaterialColor(0xFF00A36D, <int, Color>{
50: Color(0xFFCCEDE2),
100: Color(0xFFB3E3D3),
200: Color(0xFF99DAC5),
300: Color(0xFF66C8A7),
400: Color(0xFF33B58A),
500: Color(0xFF00A36D),
600: Color(0xFF009362),
700: Color(0xFF00724C),
800: Color(0xFF005237),
900: Color(0xFF003121),
});Swift / SwiftUI
import SwiftUI
extension Color {
/// #00a36d — Jade
static let jade = Color(
red: 0,
green: 0.6392,
blue: 0.4275
)
}
// UIKit
extension UIColor {
static let jade = UIColor(
red: 0,
green: 0.6392,
blue: 0.4275,
alpha: 1.0
)
}Android
<!-- res/values/colors.xml -->
<resources>
<color name="jade">#00A36D</color>
<color name="jade_translucent">#8000A36D</color>
</resources>
<!-- Jetpack Compose -->
val Jade = Color(0xFF00A36D)JavaScript
export const JADE = {
hex: "#00a36d",
rgb: [0, 163, 109],
hsl: [160, 100, 32],
oklch: "oklch(63.18% 0.1408 160.95)",
};JSON tokens
{
"$schema": "https://design-tokens.org/schema.json",
"jade": {
"$type": "color",
"$value": "#00a36d",
"$description": "Jade — generated by ColorVerse AI"
}
}