Skip to content
green · neutral

#264113

a deep, vivid green · neutral · closest name: Dark Green

Token name suggestion: Ink Moss

RGB
38, 65, 19
HSL
95°, 55%, 17%
CMYK
42, 0, 71, 75
Luminance
0.0424

#264113 is a deep vivid green, 95° on the wheel and 52/100 on the cool side. Put white text on it (11.36:1). As text it scores 11.36:1 on white — safe at any size. Nearest name is Dark Green, nearest Tailwind family is neutral.

hsl(95 55% 17%)rgb(38 65 19)Base step 950AAA inkNeutral

At a glance

Every number on this page in one read: what #264113 is made of, how bright it looks, and which way it leans.

Hex
#264113
Hue
95°
green
Saturation
55%
vivid
Lightness
17%
deep
Brightness
25%
HSV value
Perceived
21%
weighted brightness
Luminance
0.0424
WCAG relative
Temperature
Neutral
52/100 cool
Color family
Green
Tone
Vivid
Best ink
White
11.36:1
Closest name
Dark Green
ΔE2000 13.4
Chroma
31.3
LCH, 0–130ish
OKLCH L
0.342
perceptual lightness
Tailwind
neutral
500 · ΔE 28.5
Web-safe
#333300
nearest of 216
Where it sits
Hue95° of 360°
Saturation55%
Lightness17%
Saturation × lightness field

Left edge is grey, right edge is full chroma; top is white, bottom is black. The dot is #264113.

Temperature
Warm ← → Cool52% cool

Reads neutral. Warm and cool siblings keep the same lightness, so you can swap one in without redoing your contrast maths.

Luminance by channel
Red10%
Green89%
Blue1%

Green carries most of what the eye calls brightness — that is why WCAG weights it 0.7152.

Every format

HEX#264113
HEX (8-digit)#264113ff
RGBrgb(38, 65, 19)
RGBArgba(38, 65, 19, 1)
HSLhsl(95, 55%, 17%)
HSV / HSBhsv(95, 71%, 25%)
HWBhwb(95 7% 75%)
CMYKcmyk(42%, 0%, 71%, 75%)
LABlab(24.4 -19.8 24.2)
LCHlch(24.4 31.3 129.3)
OKLCHoklch(0.342 0.079 134.5)
XYZ (D65)xyz(2.81, 4.24, 1.29)
Decimal2507027
Display P3color(display-p3 0.149 0.255 0.075)
Web-safe#333300

Copy-ready code

every platformclick to select
/* CSS */
color: #264113;
background-color: #264113;
/* CSS custom property */
--brand: #264113;
/* Tailwind (arbitrary) */
class="text-[#264113] bg-[#264113]"
/* SCSS */
$brand: #264113;
/* SwiftUI */
Color(red: 0.149, green: 0.255, blue: 0.075)
/* UIKit */
UIColor(red: 0.149, green: 0.255, blue: 0.075, alpha: 1)
/* Android XML */
<color name="brand">#264113</color>
/* Android Compose */
Color(0xFF264113)
/* Flutter */
Color(0xFF264113)
/* Python / OpenCV (BGR) */
(19, 65, 38)
/* Python / PIL (RGB) */
(38, 65, 19)
/* Java AWT */
new Color(38, 65, 19)
/* .NET */
Color.FromArgb(255, 38, 65, 19)
/* OpenGL / Unity (0–1) */
(0.1490f, 0.2549f, 0.0745f, 1f)
/* LaTeX */
\definecolor{brand}{RGB}{38,65,19}
modern cssclick to select
/* mix without leaving CSS */
background: color-mix(in oklab, #264113 85%, white);
border-color: color-mix(in oklab, #264113 40%, transparent);
/* theme-aware in one line */
color: light-dark(#3A631D, #DEEED3);
/* relative colour syntax */
--hover: hsl(from #264113 h s calc(l - 7));

Design tokens

The same ramp in the four formats a team actually needs. Paste one and the whole palette lands with it.

css custom propertiesclick to select
:root {
  --brand-50: #F7FBF4;
  --brand-100: #EFF6E9;
  --brand-200: #DBEECE;
  --brand-300: #C2E6A8;
  --brand-400: #A3D97D;
  --brand-500: #84CC51;
  --brand-600: #6FBD37;
  --brand-700: #5C9E2E;
  --brand-800: #4A7E25;
  --brand-900: #385C1E;
  --brand-950: #264113;
  --brand: #264113;
  --brand-ink: #ffffff;
  --brand-surface: #F7FAF4;
  --brand-border: #D2EDC0;
  --brand-hover: #16260B;
  --brand-pressed: #060A03;
}
@media (prefers-color-scheme: dark) {
  :root {
    --brand-surface: #1B2414;
    --brand-ink: #DEEED3;
  }
}
tailwind.config.jsclick to select
theme: {
  extend: {
    colors: {
      brand: {
        50: '#F7FBF4',
        100: '#EFF6E9',
        200: '#DBEECE',
        300: '#C2E6A8',
        400: '#A3D97D',
        500: '#84CC51',
        600: '#6FBD37',
        700: '#5C9E2E',
        800: '#4A7E25',
        900: '#385C1E',
        950: '#264113',
        DEFAULT: '#264113',
      },
    },
  },
}
scss mapclick to select
$brand: (
  '50': #F7FBF4,
  '100': #EFF6E9,
  '200': #DBEECE,
  '300': #C2E6A8,
  '400': #A3D97D,
  '500': #84CC51,
  '600': #6FBD37,
  '700': #5C9E2E,
  '800': #4A7E25,
  '900': #385C1E,
  '950': #264113,
);
$brand-base: #264113;
$brand-ink: #ffffff;

@function brand($step) { @return map-get($brand, $step); }
w3c design tokens (json)click to select
{
  "color": {
    "brand": {
      "50": { "$value": "#F7FBF4", "$type": "color" },
      "100": { "$value": "#EFF6E9", "$type": "color" },
      "200": { "$value": "#DBEECE", "$type": "color" },
      "300": { "$value": "#C2E6A8", "$type": "color" },
      "400": { "$value": "#A3D97D", "$type": "color" },
      "500": { "$value": "#84CC51", "$type": "color" },
      "600": { "$value": "#6FBD37", "$type": "color" },
      "700": { "$value": "#5C9E2E", "$type": "color" },
      "800": { "$value": "#4A7E25", "$type": "color" },
      "900": { "$value": "#385C1E", "$type": "color" },
      "950": { "$value": "#264113", "$type": "color" }
    },
    "brandInk": { "$value": "#ffffff", "$type": "color" }
  }
}

Best text color

Only one of black and white can be right. This is the one, with the number that proves it.

Readable at a glance#ffffff on #264113 · 11.36:1
Use #ffffffAAA at every size.
Aa
12px
Aa
16px
Aa
24px
Aa
White text · 11.36:1 · recommended
AA pass · AA large pass · AAA pass
Aa
Black text · 1.85:1
AA fail · AA large fail · AAA fail
Reading the other direction: #264113 as text scores 11.36:1 on white and 1.85:1 on black.
Best tinted ink on it, if plain black or white feels flat: #F1F9EB at 10.55:1.

Make it accessible

A contrast checker tells you that you failed. This tells you what to ship instead — same hue, same saturation, lightness moved only as far as WCAG demands.

The quick fox
#264113 · 11.36:1
AA on whitealready passes
#264113
The quick fox
#264113 · 11.36:1
AAA on whitealready passes
#264113
The quick fox
#4D8427 · 4.65:1
AA on black+17% L
#4D8427
The quick fox
#62A831 · 7.16:1
AAA on black+26% L
#62A831

Large text — 24px regular or 18.66px bold and above — only needs 3:1, so #264113 is enough for headings on white. Non-text elements such as icons, chart strokes and focus rings also sit at 3:1 under WCAG 2.2 (1.4.11).

Accessibility — WCAG contrast

Aa
#264113 on white: 11.36:1
AA ✓ pass · AA-large · AAA
Aa
#264113 on black: 1.85:1
AA ✗ fail · AA-large · AAA
Against the neutral ladder

Contrast is symmetric, so each row covers both directions: #264113 as text on that neutral, and that neutral as text on #264113.

NeutralRatioBoth directions
White11.36:1AaAa
Slate 5010.86:1AaAa
Slate 10010.37:1AaAa
Slate 2009.22:1AaAa
Slate 3007.65:1AaAa
Slate 4004.43:1AaAa
Slate 5002.39:1AaAa
Slate 6001.50:1AaAa
Slate 7001.10:1AaAa
Slate 8001.29:1AaAa
Slate 9001.57:1AaAa
Black1.85:1AaAa
Colour vision deficiency
true color
protanopia · #443B0E
deuteranopia · #403917
tritanopia · #263E37

Roughly one man in twelve has some form of colour vision deficiency. If any of the three panels above is hard to tell apart from a neighbouring colour in your palette, add a shape, an icon or a label so the meaning does not rest on hue alone.

Color scale — 50 to 950

A Tailwind-shaped ramp built around this exact hex. #264113 is pinned to step 950; the rest hold its hue and let saturation ease off at the extremes so the pale end never turns neon.

#F7FBF4
#EFF6E9
#DBEECE
#C2E6A8
#A3D97D
#84CC51
#6FBD37
#5C9E2E
#4A7E25
#385C1E
#264113
Base = 950Lightest = 50 · #F7FBF4Darkest = 950 · #264113Text step on white = 800
Perceptual ramp — OKLCH

The same eleven steps expressed in OKLCH, where equal lightness numbers actually look equally spaced. HSL ramps go muddy in the yellows and washed out in the blues; this one does not. Modern browsers render it natively — the hex ramp above is the fallback.

50100200300400500600700800900950
oklch tokensclick to select
:root {
  --brand-50: oklch(0.97 0.020 134.5);
  --brand-100: oklch(0.94 0.031 134.5);
  --brand-200: oklch(0.88 0.047 134.5);
  --brand-300: oklch(0.80 0.061 134.5);
  --brand-400: oklch(0.72 0.072 134.5);
  --brand-500: oklch(0.64 0.079 134.5);
  --brand-600: oklch(0.56 0.079 134.5);
  --brand-700: oklch(0.48 0.074 134.5);
  --brand-800: oklch(0.40 0.066 134.5);
  --brand-900: oklch(0.32 0.055 134.5);
  --brand-950: oklch(0.24 0.043 134.5);
}

Colors that work with #264113

Not a palette — a role sheet. Each swatch answers one question you will hit while building the component.

Text on it#ffffff
White wins here
Surface#F7FAF4
Tinted page background
Border#D2EDC0
Hairlines and dividers
Muted text#6C9B4B
Captions on the surface
Accent#221143
Second voice, not a rival
Dark variant#3A631D
Hover, pressed, headers
Light variant#F1F9EB
Selected rows, tints
Dark surface#1B2414
Dark-mode background
Hover#16260B
One step down in lightness
Pressed#060A03
Two steps down
Disabled#5E784D
Chroma pulled out
Focus ring#2E5612
Offset from the fill so it reads
Light mode
Everything in its place

Surface, border, heading and body all derive from this one hue, so the screen stays coherent without a second palette.

Primary actionSecondaryBadge
Dark mode
Same hue, inverted

Lightness flips, hue holds. The accent stays the anchor in both themes.

Primary actionSecondaryAccent

In real components

The same eight roles, wired into the interface patterns you will actually build with them. Every state below is a computed value, not a mock-up.

Buttons and states
Save changesHoverPressedDisabled
OutlineSubtleLinkFocused
Form field
you@company.com

Focus ring uses the light variant so the field still reads as one shape.

Send me product updates
Notice
Your export is ready

The file stays available for seven days. Download it before it expires.

NewBetaDraft
Data
Storage used68%
Acme LtdActive
NorthwindTrial
GlobexActive

How to use #264113

Derived from its contrast, chroma and lightness — not from taste.

Works well for
  • Body text and links on white
  • Primary buttons and calls to action
  • Focus rings, active and selected states
  • Headers, footers and dark-mode surfaces
  • Brand accents, badges and data highlights
Use with care
  • Text on black or near-black surfaces
  • Full-page backgrounds — tiring over long sessions
  • Black text placed on it
  • Status meaning — pair it with an icon or label, never colour alone
  • Pairing with a same-lightness hue — edges vibrate
Minimum size as text on white
Any size
Safe as a fill behind white type
Yes
Safe as a 1px border on white
Yes

Meaning and mood

What a colour in this family tends to signal, and how this particular chroma and lightness change the reading.

safegrowingnaturalpermissive

Green means go, well, and grown. It carries finance, sustainability and health with almost no explanation needed.

This is a confident chroma: strong enough to lead a brand, restrained enough to live in an interface all day. The low lightness adds weight and formality.

Worth knowing

Red/green pairs are the most common colour-blindness failure — never let the two carry meaning alone.

Reads as
  • FormalityHigh
  • EnergyMedium-high
  • Weight84/100
  • TemperatureNeutral
  • ApproachabilityBalanced

Colour associations are cultural and vary by market. Treat these as a starting point for a conversation with your audience, not a finding about them.

Similar colors

One move away from this hex in each direction. Every swatch is its own page.

Color relationships

The wheel positions with their names attached, so you can grab the one you actually need.

Complementary#2E1341
Analogous left#3D4113
Analogous right#134117
Split-complement 1#171341
Split-complement 2#41133D
Triadic 1#132641
Triadic 2#411326
Tetradic#133D41
On the wheel
Base+30°−30°+120°+240°+180°95°

#264113 sits at 95°. Every dot is a harmony position and links to its own page in the table alongside.

RGB percentages

Red14.9%
Green25.5%
Blue7.5%
R · 0–255
38
0x26
G · 0–255
65
0x41
B · 0–255
19
0x13

CMYK percentages

Cyan41.5%
Magenta0.0%
Yellow70.8%
Key (black)74.5%

Total ink coverage is 187%. Most commercial presses cap around 300% — above that, sheets stop drying properly.

Color previews

#264113 text on a black background

contrast 1.85:1

Card sample

#264113 text on a white background

contrast 11.36:1

Card sample

#264113 on grey

10.37:1

#264113 on its own surface

10.79:1

#264113 on its dark surface

1.41:1

CSS3 live lab

Text font color

The quick brown fox

color: #264113;
Background color
Panel with #264113 background
background-color: #264113;
Text shadow — hex

Glowing headline

text-shadow: 2px 2px 8px #264113;
Text shadow — RGB

Soft neon halo

text-shadow: 0 0 14px rgba(38, 65, 19, 0.45);
Div box shadow
Elevated card
box-shadow: 0 12px 32px -8px rgba(38, 65, 19, 0.45);
Border & gradient
Gradient panel
border: 3px solid #264113;
background: linear-gradient(135deg, #264113, #13411F);
Gradient text

Gradient headline

background: linear-gradient(90deg, #264113, #13412A);
-webkit-background-clip: text;
color: transparent;
Focus ring
Focused control
outline: 2px solid #264113;
outline-offset: 3px;
Underline & caret

Marked up text

text-decoration-color: #264113;
caret-color: #264113;
Left rule
Pull quote or callout
border-left: 4px solid #264113;
Ring + tint
Selected chip
background: #F1F9EB;
box-shadow: inset 0 0 0 2px #264113;
Conic badge
68%
background: conic-gradient(#264113 68%, #e2e8f0 0);

Transparency

What each alpha value actually composites to. The top row is #264113 over white; the bottom row is the same alpha over a checkerboard, so you can see what survives on a photo or a video.

Bottom row of hexes is the flattened result over white — use those when a design tool refuses transparency, or when you need a solid fallback.

alpha in every syntaxclick to select
rgba(38, 65, 19, 0.5)
rgb(38 65 19 / 50%)
#26411380
hsl(95 55% 17% / 50%)
color-mix(in srgb, #264113 50%, transparent)
Alpha8-digit hexFlat on white
10%#2641131a#E9ECE7
20%#26411333#D4D9D0
40%#26411366#A8B3A1
60%#26411399#7D8D71
80%#264113cc#516742

Gradients from #264113

Six recipes, each built from this hex and shown with the exact CSS that produced it.

Elevation
Same hue, three lightnesses — safe anywhere
background: linear-gradient(135deg, #427121, #264113 45%, #3A631D);
Duotone
A short hue run reads richer than a flat fill
background: linear-gradient(120deg, #264113, #0C2916);
Complement sweep
Loud — keep it behind large type only
background: linear-gradient(90deg, #264113, #2E1341);
Spotlight
Hero panels and app headers
background: radial-gradient(120% 120% at 20% 0%, #508828 0%, #264113 45%, #3A631D 100%);
Soft wash
Section backgrounds that stay readable
background: linear-gradient(180deg, #F7FAF4, #ffffff);
Mesh
Ambient background, no image weight
background: radial-gradient(60% 60% at 15% 20%, #68691F 0%, transparent 60%), radial-gradient(55% 55% at 85% 15%, #1A5925 0%, transparent 60%), radial-gradient(70% 70% at 50% 95%, #3A631D 0%, transparent 65%), #264113;

Monochromatic scale

Palettes built from #264113

Shades — darker

Tints — lighter

Tones — desaturated

Color harmonies

Nearest named colors

Ranked with CIEDE2000 across all 139 CSS keywords. Under ΔE 2 the eye stops telling them apart; over ΔE 10 they are plainly different colors.

#264113 in the real world

Where a color in this family tends to land, and the interface roles it is usually asked to play.

Industries
SustainabilityFinanceHealth and wellnessAgriculture
Common UI roles
ButtonsLinksFocus statesCharts
Print note

Converts to four-color process without much drama. Proof it anyway.

On screens

Very dark values collapse into each other on cheap panels — leave more lightness between your darkest steps than the numbers suggest.

In dark mode

Too dim on dark surfaces at 1.85:1 — lift it to #4D8427 for body text, or reserve it for fills.

Explore nearby colors

Small, deliberate steps away from this hex — useful when you are hunting for the version of a colour that finally feels right.

#264113, answered

What color is #264113?

#264113 is a deep vivid green, closest to Dark Green (ΔE2000 13.4). It sits at 95° on the hue wheel with 55% saturation and 17% lightness, which reads as neutral.

What is the RGB value of #264113?

rgb(38, 65, 19) — 38 red, 65 green and 19 blue out of 255, or 14.9% / 25.5% / 7.5% by channel.

What is #264113 in HSL and HSV?

hsl(95, 55%, 17%) and hsv(95, 71%, 25%). HSL is what CSS takes; HSV is what your design tool's picker shows, which is why the saturation numbers rarely match.

Is #264113 a light or a dark color?

It is a dark color. Relative luminance is 0.0424 and perceived brightness is 21%, so white text on it reaches 11.36:1.

Should I use black or white text on #264113?

White. It scores 11.36:1 against #264113, versus 1.85:1 for black — AAA at any size.

Is #264113 accessible on a white background?

#264113 on white scores 11.36:1, which clears AAA at every size.

What is the complementary color of #264113?

#2E1341 sits directly opposite on the wheel. Softer options are the split-complements #171341 and #41133D, which give the same contrast with far less vibration.

What colors go well with #264113?

For interface work: #F7FAF4 as the surface, #D2EDC0 for borders, #6C9B4B for secondary text, #221143 as an accent and #3A631D for hover and pressed states. For a palette, the analogous pair #3D4113 and #134117 stays calm, while #2E1341 is the loudest partner.

What is #264113 in CMYK for printing?

cmyk(42%, 0%, 71%, 75%). This is a screen-to-ink approximation — ask your printer for a proof before committing to a run.

Is #264113 warm or cool?

Neutral — it scores 52 on a scale where 0 is the warmest orange and 100 the coolest azure. Nudged warmer it becomes #374113; nudged cooler, #144212.

Which Tailwind color is closest to #264113?

The neutral family — its 500 step is #737373, ΔE2000 28.5 away. That is a visible difference, so define #264113 as a custom token rather than reaching for the built-in.

How do I use #264113 in Tailwind CSS?

Inline it as an arbitrary value with bg-[#264113] or text-[#264113], or register the whole ramp under theme.extend.colors.brand so you get bg-brand-500 and friends. The generated 50–950 scale on this page is ready to paste into your config.

What is #264113 with 50% opacity?

rgba(38, 65, 19, 0.5), or #26411380 in eight-digit hex. Over white that composites to #93A089; over black, #13210A.

Is #264113 a web-safe color?

No. The nearest web-safe colour is #333300, ΔE2000 10 away. The palette only matters for legacy displays and some email clients now.

What does the color #264113 mean?

As a green, it reads safe, growing, natural. Green means go, well, and grown. It carries finance, sustainability and health with almost no explanation needed. At this chroma the effect is amplified — it will dominate whatever sits beside it.

What gradient works with #264113?

The safest is same-hue elevation: linear-gradient(135deg, #427121, #264113 45%, #3A631D). For more colour, a short hue run to #0C2916 keeps it rich without turning muddy.

Work with #264113 in the Color Lab

Every tool opens with this colour already loaded.

Every value on this page is computed from #264113 at request time — conversions, contrast ratios and ΔE distances are calculated, never looked up.