Action
Primary button
Use the controls above or point to and press the button to inspect its visual states.
Color reference
Clear Very Light Green
This is a clear, very light green under the deterministic OKLCH hue, lightness, and chroma ranges. Its closest standardized CSS named color is Medium Spring Green (#00FA9A), measured with straight-line OKLab distance.
Copyable values
Values are calculated from the same opaque sRGB color. Display rounding does not alter the internal calculations.
| Format | Value | Action |
|---|---|---|
| HEX | #00F7B5 |
|
| RGB | rgb(0 247 181) |
|
| HSL | hsl(164 100% 48.43%) |
|
| HSV | hsv(164 100% 96.86%) |
|
| HWB | hwb(164 0% 3.14%) |
|
| XYZ D65 | color(xyz-d65 0.415989 0.698545 0.550083) |
|
| LAB | lab(86.741% -62.5368 17.4163) |
|
| LCH | lch(86.741% 64.9167 164.4376) |
|
| OKLAB | oklab(86.4998% -0.175353 0.046316) |
|
| OKLCH | oklch(86.4998% 0.181367 165.2042) |
Real-world test
Preview the source as a primary action, subtle status, form treatment, and card surface. Persistent state controls help touch and keyboard users inspect the same normal, hover, and active colors.
Action
Use the controls above or point to and press the button to inspect its visual states.
Status
A 12% source tint over white provides the background; readable text is selected separately.
Form
Source ring on white: 1.4:1 · does not meet the 3:1 non-text threshold where applicable.
Surface
The selected state becomes the card surface with its strongest black-or-white text pairing.
Accessibility diagnostics
Each result applies only to the named foreground, background, text size, and requirement. It is not a complete accessibility or component-conformance claim.
On white
On black
Use guidance
Not recommended
#00F7B5 does not reach 4.5:1 on white or Hue Codex paper, so it should not be used there for normal-sized text.
Needs a boundary
Against Hue Codex paper, the color reaches only 1.34:1. Use a contrasting border or another non-color boundary for meaningful controls and graphics.
Readable pairing available
Black text provides the stronger black/white pairing on #00F7B5 at 14.97:1. This validates only that text pair, not hover, focus, disabled, or adjacent-color states.
Distinctive accent
Its OKLCH chroma of 0.1814 gives it enough visual presence for an accent or primary role when the tested foreground and neighboring colors pass.
Pair available
The stronger black/white background is black at 14.97:1. Always retest against the actual rendered background and text size.
Tested backgrounds
| Pair | Background | Contrast ratio |
|---|---|---|
| Black#000000 | 14.97:1 | |
| Hue Codex ink#10212B | 11.75:1 | |
| White#FFFFFF | 1.4:1 | |
| Hue Codex paper#FBFAF5 | 1.34:1 | |
| Soft neutral#F2EFE6 | 1.22:1 |
Design-system starting point
The source color is preserved at the nearest lightness step. Other swatches keep its OKLCH hue, moderate chroma toward the extremes, and reduce chroma only when needed to remain in sRGB.
This is a Hue Codex reference scale, not a claim that the values match Tailwind, Material, or another framework’s named palette.
Adjust the #00F7B5 scale in Tints, Shades & TonesColor relationships
Hue rotations use OKLCH while preserving lightness and requested chroma. When a rotated result falls outside sRGB, chroma is reduced deterministically and disclosed.
Applied pairing
The source anchors the main action while the complement marks a secondary status. Contrast is selected separately for each fill.
Distance matching
Matches use straight-line OKLab distance ×100. A smaller value means the coordinates are closer in this model; it is not a claim that two tokens are interchangeable in a design system.
CSS named color
#00FA9A OKLab distance ×100: 3.79
Tailwind v4 default
oklch(84.5% 0.143 164.978)
OKLab distance ×100: 4.33 · sRGB preview #5EE9B5
Print boundary
Reliable print matching needs licensed reference data plus a defined ink, paper, profile, and viewing condition.
Read the print methodologyColor-vision screening
These encoded-sRGB matrix previews are screening approximations. They help reveal possible color-only distinctions but do not reproduce every person’s vision or establish accessibility conformance.
Red-vision deficiency approximation
Green-vision deficiency approximation
Blue-yellow deficiency approximation
Monochromatic-vision approximation
Ready to use
Exports preserve the source, readable foreground, and generated 50–900 scale. Tailwind v4 CSS-first and Tailwind v3 JavaScript-config formats are labeled separately.
Semantic aliases and the complete 50–900 scale.
:root {
--color-primary: #00F7B5;
--color-on-primary: #000000;
--color-primary-oklch: oklch(86.4998% 0.181367 165.2042);
--color-primary-50: #DBFFEE;
--color-primary-100: #00F7B5;
--color-primary-200: #00E6A8;
--color-primary-300: #00C992;
--color-primary-400: #00AC7D;
--color-primary-500: #009068;
--color-primary-600: #007654;
--color-primary-700: #005C41;
--color-primary-800: #00432F;
--color-primary-900: #002C1D;
}
Current @theme syntax for bg-brand, text-brand, and scale utilities.
@import "tailwindcss";
@theme {
--color-brand: #00F7B5;
--color-brand-foreground: #000000;
--color-brand-50: #DBFFEE;
--color-brand-100: #00F7B5;
--color-brand-200: #00E6A8;
--color-brand-300: #00C992;
--color-brand-400: #00AC7D;
--color-brand-500: #009068;
--color-brand-600: #007654;
--color-brand-700: #005C41;
--color-brand-800: #00432F;
--color-brand-900: #002C1D;
}
CommonJS theme.extend.colors for JavaScript-config projects.
module.exports = {
theme: {
extend: {
colors: {
brand: {
'50': '#DBFFEE',
'100': '#00F7B5',
'200': '#00E6A8',
'300': '#00C992',
'400': '#00AC7D',
'500': '#009068',
'600': '#007654',
'700': '#005C41',
'800': '#00432F',
'900': '#002C1D',
DEFAULT: '#00F7B5',
foreground: '#000000',
},
},
},
},
};
Semantic source, foreground, OKLCH, and scale variables.
$color-primary: #00F7B5;
$color-on-primary: #000000;
$color-primary-oklch: oklch(86.4998% 0.181367 165.2042);
$color-primary-50: #DBFFEE;
$color-primary-100: #00F7B5;
$color-primary-200: #00E6A8;
$color-primary-300: #00C992;
$color-primary-400: #00AC7D;
$color-primary-500: #009068;
$color-primary-600: #007654;
$color-primary-700: #005C41;
$color-primary-800: #00432F;
$color-primary-900: #002C1D;
Static fallbacks followed by OKLab tint and shade declarations.
:root {
--color-primary: #00F7B5;
--color-primary-tint: #00E6A8;
--color-primary-tint: color-mix(in oklab, var(--color-primary) 72%, white);
--color-primary-shade: #005C41;
--color-primary-shade: color-mix(in oklab, var(--color-primary) 82%, black);
}
Source formats, readable text, and the generated scale.
{
"name": "Clear Very Light Green",
"hex": "#00F7B5",
"rgb": "rgb(0 247 181)",
"oklch": "oklch(86.4998% 0.181367 165.2042)",
"recommendedText": "#000000",
"scale": {
"50": "#DBFFEE",
"100": "#00F7B5",
"200": "#00E6A8",
"300": "#00C992",
"400": "#00AC7D",
"500": "#009068",
"600": "#007654",
"700": "#005C41",
"800": "#00432F",
"900": "#002C1D"
}
}
Continue the decision
Reference values are a starting point. Test the color in its real role, background, states, typography, and surrounding palette before shipping.