#EBDACE Bone

rgb(235, 218, 206)

Color conversions

HEX
#EBDACE
RGB
rgb(235, 218, 206)
RGBA
rgba(235, 218, 206, 1)
HSL
hsl(25, 42%, 86%)
HSV / HSB
hsv(25, 12%, 92%)
CMYK
cmyk(0%, 7%, 12%, 8%)

Wide-gamut spaces

XYZ
xyz(70.472, 72.262, 68.616)
LAB
lab(88.09 3.86 8)
LCH
lch(88.09 8.89 64.24)
OKLAB
oklab(89.88% 0.0133 0.021)
OKLCH
oklch(89.88% 0.0249 57.65)
Nearest name
Bone

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

#ebdace1a

#ebdace33

#ebdace4d

#ebdace66

#ebdace80

#ebdace99

#ebdaceb3

#ebdacecc

#ebdacee6

#ebdaceff

Accessibility and contrast

On white

1.36:1

Body text Fail · Large text Fail

On black

15.45:1

Body text AAA · Large text AA

White-on-color contrast is 1.36: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-bone: #ebdace;
  --color-bone-rgb: 235 218 206;
  --color-bone-hsl: 25 42% 86%;
  --color-bone-oklch: 89.88% 0.0249 57.65;
}

.element {
  color: #ebdace;
  background-color: hsl(25, 42%, 86%);
  border: 1px solid rgb(235 218 206 / 40%);
}

SCSS

$bone: #ebdace;
$bone-light: #f5ede7;
$bone-dark: #766d67;

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

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

LESS

@bone: #ebdace;
@bone-light: lighten(@bone, 12%);
@bone-dark: darken(@bone, 12%);

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

Tailwind CSS

/* Tailwind v4 — src/styles.css */
@theme {
  --color-bone-50: #fbf8f5;
  --color-bone-100: #f9f4f0;
  --color-bone-200: #f7f0eb;
  --color-bone-300: #f3e9e2;
  --color-bone-400: #efe1d8;
  --color-bone-500: #ebdace;
  --color-bone-600: #d4c4b9;
  --color-bone-700: #a59990;
  --color-bone-800: #766d67;
  --color-bone-900: #47413e;
}

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

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

Bootstrap

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

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

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

Flutter

import 'package:flutter/material.dart';

const Color bone = Color(0xFFEBDACE);

// As a MaterialColor swatch
const MaterialColor boneSwatch = MaterialColor(0xFFEBDACE, <int, Color>{
  50: Color(0xFFFBF8F5),
  100: Color(0xFFF9F4F0),
  200: Color(0xFFF7F0EB),
  300: Color(0xFFF3E9E2),
  400: Color(0xFFEFE1D8),
  500: Color(0xFFEBDACE),
  600: Color(0xFFD4C4B9),
  700: Color(0xFFA59990),
  800: Color(0xFF766D67),
  900: Color(0xFF47413E),
});

Swift / SwiftUI

import SwiftUI

extension Color {
    /// #ebdace — Bone
    static let bone = Color(
        red: 0.9216,
        green: 0.8549,
        blue: 0.8078
    )
}

// UIKit
extension UIColor {
    static let bone = UIColor(
        red: 0.9216,
        green: 0.8549,
        blue: 0.8078,
        alpha: 1.0
    )
}

Android

<!-- res/values/colors.xml -->
<resources>
    <color name="bone">#EBDACE</color>
    <color name="bone_translucent">#80EBDACE</color>
</resources>

<!-- Jetpack Compose -->
val Bone = Color(0xFFEBDACE)

JavaScript

export const BONE = {
  hex: "#ebdace",
  rgb: [235, 218, 206],
  hsl: [25, 42, 86],
  oklch: "oklch(89.88% 0.0249 57.65)",
};

JSON tokens

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