#BFB1BF Thistle
rgb(191, 177, 191)
Color conversions
- HEX
- #BFB1BF
- RGB
- rgb(191, 177, 191)
- RGBA
- rgba(191, 177, 191, 1)
- HSL
- hsl(300, 10%, 72%)
- HSV / HSB
- hsv(300, 7%, 75%)
- CMYK
- cmyk(0%, 7%, 0%, 25%)
Wide-gamut spaces
- XYZ
- xyz(46.611, 46.283, 55.758)
- LAB
- lab(73.73 7.53 -5.31)
- LCH
- lch(73.73 9.21 324.84)
- OKLAB
- oklab(77.64% 0.0207 -0.0141)
- OKLCH
- oklch(77.64% 0.025 325.82)
- Nearest name
- Thistle
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
#bfb1bf1a
#bfb1bf33
#bfb1bf4d
#bfb1bf66
#bfb1bf80
#bfb1bf99
#bfb1bfb3
#bfb1bfcc
#bfb1bfe6
#bfb1bfff
Accessibility and contrast
On white
2.05:1
Body text Fail · Large text Fail
On black
10.26:1
Body text AAA · Large text AA
White-on-color contrast is 2.05: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
The structural colour every interface actually runs on
Neutral grays carry no emotional charge, which is precisely their value: they let content and brand colour do the signalling. Their temperature matters more than designers expect — a cool gray beside a warm brand colour reads as a mistake.
Neutrality, professionalism, and precision. Overuse reads as noncommittal or unfinished.
Payne's gray, mixed rather than mined, became the painter's shortcut for atmospheric shadow. Swiss modernism turned systematic gray scales into a design methodology.
Build a full gray ramp before choosing a brand colour. Match the gray's temperature to the brand hue and reserve the darkest steps for type rather than large fills.
Common industries: Enterprise, Architecture, Automotive, Consulting, Hardware. Pairs well with a single saturated accent, warm white for text surfaces, near-black for hierarchy.
Code exports
CSS
:root {
--color-thistle: #bfb1bf;
--color-thistle-rgb: 191 177 191;
--color-thistle-hsl: 300 10% 72%;
--color-thistle-oklch: 77.64% 0.025 325.82;
}
.element {
color: #bfb1bf;
background-color: hsl(300, 10%, 72%);
border: 1px solid rgb(191 177 191 / 40%);
}SCSS
$thistle: #bfb1bf;
$thistle-light: #dfd8df;
$thistle-dark: #605960;
.element {
color: $thistle;
background: rgba($thistle, 0.12);
&:hover {
color: darken($thistle, 8%);
}
}LESS
@thistle: #bfb1bf;
@thistle-light: lighten(@thistle, 12%);
@thistle-dark: darken(@thistle, 12%);
.element {
color: @thistle;
background: fade(@thistle, 12%);
}Tailwind CSS
/* Tailwind v4 — src/styles.css */
@theme {
--color-thistle-50: #f2eff2;
--color-thistle-100: #ece8ec;
--color-thistle-200: #e5e0e5;
--color-thistle-300: #d9d0d9;
--color-thistle-400: #ccc1cc;
--color-thistle-500: #bfb1bf;
--color-thistle-600: #ac9fac;
--color-thistle-700: #867c86;
--color-thistle-800: #605960;
--color-thistle-900: #393539;
}
/* Usage */
<div class="bg-thistle-500 text-thistle-50 ring-thistle-600" />
/* Arbitrary value, no config needed */
<div class="bg-[#bfb1bf]" />Bootstrap
// Bootstrap 5 — _variables.scss (before importing bootstrap)
$thistle: #bfb1bf;
$primary: $thistle;
$theme-colors: map-merge($theme-colors, (
"thistle": $thistle
));
// Generates .text-thistle, .bg-thistle, .btn-thistle
@import "bootstrap/scss/bootstrap";Flutter
import 'package:flutter/material.dart';
const Color thistle = Color(0xFFBFB1BF);
// As a MaterialColor swatch
const MaterialColor thistleSwatch = MaterialColor(0xFFBFB1BF, <int, Color>{
50: Color(0xFFF2EFF2),
100: Color(0xFFECE8EC),
200: Color(0xFFE5E0E5),
300: Color(0xFFD9D0D9),
400: Color(0xFFCCC1CC),
500: Color(0xFFBFB1BF),
600: Color(0xFFAC9FAC),
700: Color(0xFF867C86),
800: Color(0xFF605960),
900: Color(0xFF393539),
});Swift / SwiftUI
import SwiftUI
extension Color {
/// #bfb1bf — Thistle
static let thistle = Color(
red: 0.749,
green: 0.6941,
blue: 0.749
)
}
// UIKit
extension UIColor {
static let thistle = UIColor(
red: 0.749,
green: 0.6941,
blue: 0.749,
alpha: 1.0
)
}Android
<!-- res/values/colors.xml -->
<resources>
<color name="thistle">#BFB1BF</color>
<color name="thistle_translucent">#80BFB1BF</color>
</resources>
<!-- Jetpack Compose -->
val Thistle = Color(0xFFBFB1BF)JavaScript
export const THISTLE = {
hex: "#bfb1bf",
rgb: [191, 177, 191],
hsl: [300, 10, 72],
oklch: "oklch(77.64% 0.025 325.82)",
};JSON tokens
{
"$schema": "https://design-tokens.org/schema.json",
"thistle": {
"$type": "color",
"$value": "#bfb1bf",
"$description": "Thistle — generated by ColorVerse AI"
}
}