#C8A46E Camel
rgb(200, 164, 110)
Color conversions
- HEX
- #C8A46E
- RGB
- rgb(200, 164, 110)
- RGBA
- rgba(200, 164, 110, 1)
- HSL
- hsl(36, 45%, 61%)
- HSV / HSB
- hsv(36, 45%, 78%)
- CMYK
- cmyk(0%, 18%, 45%, 22%)
Wide-gamut spaces
- XYZ
- xyz(39.911, 39.958, 20.359)
- LAB
- lab(69.44 6.14 32.94)
- LCH
- lch(69.44 33.51 79.44)
- OKLAB
- oklab(73.89% 0.0185 0.0806)
- OKLCH
- oklch(73.89% 0.0827 77.06)
- Nearest name
- Camel
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
#c8a46e1a
#c8a46e33
#c8a46e4d
#c8a46e66
#c8a46e80
#c8a46e99
#c8a46eb3
#c8a46ecc
#c8a46ee6
#c8a46eff
Accessibility and contrast
On white
2.34:1
Body text Fail · Large text Fail
On black
8.99:1
Body text AAA · Large text AA
White-on-color contrast is 2.34: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-camel: #c8a46e;
--color-camel-rgb: 200 164 110;
--color-camel-hsl: 36 45% 61%;
--color-camel-oklch: 73.89% 0.0827 77.06;
}
.element {
color: #c8a46e;
background-color: hsl(36, 45%, 61%);
border: 1px solid rgb(200 164 110 / 40%);
}SCSS
$camel: #c8a46e;
$camel-light: #e4d2b7;
$camel-dark: #645237;
.element {
color: $camel;
background: rgba($camel, 0.12);
&:hover {
color: darken($camel, 8%);
}
}LESS
@camel: #c8a46e;
@camel-light: lighten(@camel, 12%);
@camel-dark: darken(@camel, 12%);
.element {
color: @camel;
background: fade(@camel, 12%);
}Tailwind CSS
/* Tailwind v4 — src/styles.css */
@theme {
--color-camel-50: #f4ede2;
--color-camel-100: #efe4d4;
--color-camel-200: #e9dbc5;
--color-camel-300: #dec8a8;
--color-camel-400: #d3b68b;
--color-camel-500: #c8a46e;
--color-camel-600: #b49463;
--color-camel-700: #8c734d;
--color-camel-800: #645237;
--color-camel-900: #3c3121;
}
/* Usage */
<div class="bg-camel-500 text-camel-50 ring-camel-600" />
/* Arbitrary value, no config needed */
<div class="bg-[#c8a46e]" />Bootstrap
// Bootstrap 5 — _variables.scss (before importing bootstrap)
$camel: #c8a46e;
$primary: $camel;
$theme-colors: map-merge($theme-colors, (
"camel": $camel
));
// Generates .text-camel, .bg-camel, .btn-camel
@import "bootstrap/scss/bootstrap";Flutter
import 'package:flutter/material.dart';
const Color camel = Color(0xFFC8A46E);
// As a MaterialColor swatch
const MaterialColor camelSwatch = MaterialColor(0xFFC8A46E, <int, Color>{
50: Color(0xFFF4EDE2),
100: Color(0xFFEFE4D4),
200: Color(0xFFE9DBC5),
300: Color(0xFFDEC8A8),
400: Color(0xFFD3B68B),
500: Color(0xFFC8A46E),
600: Color(0xFFB49463),
700: Color(0xFF8C734D),
800: Color(0xFF645237),
900: Color(0xFF3C3121),
});Swift / SwiftUI
import SwiftUI
extension Color {
/// #c8a46e — Camel
static let camel = Color(
red: 0.7843,
green: 0.6431,
blue: 0.4314
)
}
// UIKit
extension UIColor {
static let camel = UIColor(
red: 0.7843,
green: 0.6431,
blue: 0.4314,
alpha: 1.0
)
}Android
<!-- res/values/colors.xml -->
<resources>
<color name="camel">#C8A46E</color>
<color name="camel_translucent">#80C8A46E</color>
</resources>
<!-- Jetpack Compose -->
val Camel = Color(0xFFC8A46E)JavaScript
export const CAMEL = {
hex: "#c8a46e",
rgb: [200, 164, 110],
hsl: [36, 45, 61],
oklch: "oklch(73.89% 0.0827 77.06)",
};JSON tokens
{
"$schema": "https://design-tokens.org/schema.json",
"camel": {
"$type": "color",
"$value": "#c8a46e",
"$description": "Camel — generated by ColorVerse AI"
}
}