#ABA087 Stone

rgb(171, 160, 135)

Color conversions

HEX
#ABA087
RGB
rgb(171, 160, 135)
RGBA
rgba(171, 160, 135, 1)
HSL
hsl(42, 18%, 60%)
HSV / HSB
hsv(42, 21%, 67%)
CMYK
cmyk(0%, 6%, 21%, 33%)

Wide-gamut spaces

XYZ
xyz(33.739, 35.549, 28.001)
LAB
lab(66.17 -0.18 14.49)
LCH
lch(66.17 14.5 90.69)
OKLAB
oklab(70.84% 0.0019 0.0373)
OKLCH
oklch(70.84% 0.0373 87.08)
Nearest name
Stone

Shades, tints and tones

Shades

Tints

Tones

Color harmonies

Complementary

The hue directly opposite on the color wheel. Maximum contrast, ideal for a single accent against a dominant brand color.

Analogous

Neighbouring hues that share a temperature. The safest harmony for calm, cohesive interfaces.

Triadic

Three hues evenly spaced 120 degrees apart. Vibrant and balanced — use one as dominant and the other two sparingly.

Split Complementary

The complement split into two adjacent hues. Nearly the contrast of complementary with noticeably less tension.

Square (Tetradic)

Four hues at 90-degree intervals. A rich set for illustration, data visualisation, and category coding.

Rectangle (Tetradic)

Two complementary pairs offset by 60 degrees. Gives two warm and two cool options in one system.

Monochromatic

A single hue across five lightness levels. The foundation of most UI scales and the most accessible starting point.

Similar colors

Closest matches

Opacity variations

#aba0871a

#aba08733

#aba0874d

#aba08766

#aba08780

#aba08799

#aba087b3

#aba087cc

#aba087e6

#aba087ff

Accessibility and contrast

On white

2.59:1

Body text Fail · Large text Fail

On black

8.11:1

Body text AAA · Large text AA

White-on-color contrast is 2.59: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

Friendly energy without red's alarm

Orange reads as enthusiastic and affordable. It converts well on calls to action because it is highly visible yet lacks red's threat association. At low saturation it becomes terracotta and shifts from playful to crafted and earthy.

Associated with harvest, warmth, and creativity in Western markets, and with sacred devotion in India where saffron carries religious weight.

The colour had no English name until the fruit arrived in the sixteenth century — before that it was 'geoluread', yellow-red. Modern brand orange owes its ubiquity to inexpensive azo pigments.

Strong for developer tools, logistics, and value-focused consumer brands. Pair with a dark neutral rather than another warm hue to avoid a Halloween reading.

Common industries: Technology, Logistics, Fitness, Construction, Family retail. Pairs well with deep teal for balance, off-black for contrast, sand for a natural palette.

Code exports

CSS

:root {
  --color-stone: #aba087;
  --color-stone-rgb: 171 160 135;
  --color-stone-hsl: 42 18% 60%;
  --color-stone-oklch: 70.84% 0.0373 87.08;
}

.element {
  color: #aba087;
  background-color: hsl(42, 18%, 60%);
  border: 1px solid rgb(171 160 135 / 40%);
}

SCSS

$stone: #aba087;
$stone-light: #d5d0c3;
$stone-dark: #565044;

.element {
  color: $stone;
  background: rgba($stone, 0.12);

  &:hover {
    color: darken($stone, 8%);
  }
}

LESS

@stone: #aba087;
@stone-light: lighten(@stone, 12%);
@stone-dark: darken(@stone, 12%);

.element {
  color: @stone;
  background: fade(@stone, 12%);
}

Tailwind CSS

/* Tailwind v4 — src/styles.css */
@theme {
  --color-stone-50: #eeece7;
  --color-stone-100: #e6e3db;
  --color-stone-200: #ddd9cf;
  --color-stone-300: #cdc6b7;
  --color-stone-400: #bcb39f;
  --color-stone-500: #aba087;
  --color-stone-600: #9a907a;
  --color-stone-700: #78705f;
  --color-stone-800: #565044;
  --color-stone-900: #333029;
}

/* Usage */
<div class="bg-stone-500 text-stone-50 ring-stone-600" />

/* Arbitrary value, no config needed */
<div class="bg-[#aba087]" />

Bootstrap

// Bootstrap 5 — _variables.scss (before importing bootstrap)
$stone: #aba087;
$primary: $stone;

$theme-colors: map-merge($theme-colors, (
  "stone": $stone
));

// Generates .text-stone, .bg-stone, .btn-stone
@import "bootstrap/scss/bootstrap";

Flutter

import 'package:flutter/material.dart';

const Color stone = Color(0xFFABA087);

// As a MaterialColor swatch
const MaterialColor stoneSwatch = MaterialColor(0xFFABA087, <int, Color>{
  50: Color(0xFFEEECE7),
  100: Color(0xFFE6E3DB),
  200: Color(0xFFDDD9CF),
  300: Color(0xFFCDC6B7),
  400: Color(0xFFBCB39F),
  500: Color(0xFFABA087),
  600: Color(0xFF9A907A),
  700: Color(0xFF78705F),
  800: Color(0xFF565044),
  900: Color(0xFF333029),
});

Swift / SwiftUI

import SwiftUI

extension Color {
    /// #aba087 — Stone
    static let stone = Color(
        red: 0.6706,
        green: 0.6275,
        blue: 0.5294
    )
}

// UIKit
extension UIColor {
    static let stone = UIColor(
        red: 0.6706,
        green: 0.6275,
        blue: 0.5294,
        alpha: 1.0
    )
}

Android

<!-- res/values/colors.xml -->
<resources>
    <color name="stone">#ABA087</color>
    <color name="stone_translucent">#80ABA087</color>
</resources>

<!-- Jetpack Compose -->
val Stone = Color(0xFFABA087)

JavaScript

export const STONE = {
  hex: "#aba087",
  rgb: [171, 160, 135],
  hsl: [42, 18, 60],
  oklch: "oklch(70.84% 0.0373 87.08)",
};

JSON tokens

{
  "$schema": "https://design-tokens.org/schema.json",
  "stone": {
    "$type": "color",
    "$value": "#aba087",
    "$description": "Stone — generated by ColorVerse AI"
  }
}