#91908F Titanium
rgb(145, 144, 143)
Color conversions
- HEX
- #91908F
- RGB
- rgb(145, 144, 143)
- RGBA
- rgba(145, 144, 143, 1)
- HSL
- hsl(30, 1%, 56%)
- HSV / HSB
- hsv(30, 1%, 57%)
- CMYK
- cmyk(0%, 1%, 1%, 43%)
Wide-gamut spaces
- XYZ
- xyz(26.607, 27.949, 29.974)
- LAB
- lab(59.84 0.17 0.66)
- LCH
- lch(59.84 0.68 75.25)
- OKLAB
- oklab(65.39% 0.0007 0.0017)
- OKLCH
- oklch(65.39% 0.0019 67.79)
- Nearest name
- Titanium
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
#91908f1a
#91908f33
#91908f4d
#91908f66
#91908f80
#91908f99
#91908fb3
#91908fcc
#91908fe6
#91908fff
Accessibility and contrast
On white
3.19:1
Body text AA Large · Large text AA
On black
6.59:1
Body text AA · Large text AA
White-on-color contrast is 3.19: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-titanium: #91908f;
--color-titanium-rgb: 145 144 143;
--color-titanium-hsl: 30 1% 56%;
--color-titanium-oklch: 65.39% 0.0019 67.79;
}
.element {
color: #91908f;
background-color: hsl(30, 1%, 56%);
border: 1px solid rgb(145 144 143 / 40%);
}SCSS
$titanium: #91908f;
$titanium-light: #c8c8c7;
$titanium-dark: #494848;
.element {
color: $titanium;
background: rgba($titanium, 0.12);
&:hover {
color: darken($titanium, 8%);
}
}LESS
@titanium: #91908f;
@titanium-light: lighten(@titanium, 12%);
@titanium-dark: darken(@titanium, 12%);
.element {
color: @titanium;
background: fade(@titanium, 12%);
}Tailwind CSS
/* Tailwind v4 — src/styles.css */
@theme {
--color-titanium-50: #e9e9e9;
--color-titanium-100: #dededd;
--color-titanium-200: #d3d3d2;
--color-titanium-300: #bdbcbc;
--color-titanium-400: #a7a6a5;
--color-titanium-500: #91908f;
--color-titanium-600: #838281;
--color-titanium-700: #666564;
--color-titanium-800: #494848;
--color-titanium-900: #2c2b2b;
}
/* Usage */
<div class="bg-titanium-500 text-titanium-50 ring-titanium-600" />
/* Arbitrary value, no config needed */
<div class="bg-[#91908f]" />Bootstrap
// Bootstrap 5 — _variables.scss (before importing bootstrap)
$titanium: #91908f;
$primary: $titanium;
$theme-colors: map-merge($theme-colors, (
"titanium": $titanium
));
// Generates .text-titanium, .bg-titanium, .btn-titanium
@import "bootstrap/scss/bootstrap";Flutter
import 'package:flutter/material.dart';
const Color titanium = Color(0xFF91908F);
// As a MaterialColor swatch
const MaterialColor titaniumSwatch = MaterialColor(0xFF91908F, <int, Color>{
50: Color(0xFFE9E9E9),
100: Color(0xFFDEDEDD),
200: Color(0xFFD3D3D2),
300: Color(0xFFBDBCBC),
400: Color(0xFFA7A6A5),
500: Color(0xFF91908F),
600: Color(0xFF838281),
700: Color(0xFF666564),
800: Color(0xFF494848),
900: Color(0xFF2C2B2B),
});Swift / SwiftUI
import SwiftUI
extension Color {
/// #91908f — Titanium
static let titanium = Color(
red: 0.5686,
green: 0.5647,
blue: 0.5608
)
}
// UIKit
extension UIColor {
static let titanium = UIColor(
red: 0.5686,
green: 0.5647,
blue: 0.5608,
alpha: 1.0
)
}Android
<!-- res/values/colors.xml -->
<resources>
<color name="titanium">#91908F</color>
<color name="titanium_translucent">#8091908F</color>
</resources>
<!-- Jetpack Compose -->
val Titanium = Color(0xFF91908F)JavaScript
export const TITANIUM = {
hex: "#91908f",
rgb: [145, 144, 143],
hsl: [30, 1, 56],
oklch: "oklch(65.39% 0.0019 67.79)",
};JSON tokens
{
"$schema": "https://design-tokens.org/schema.json",
"titanium": {
"$type": "color",
"$value": "#91908f",
"$description": "Titanium — generated by ColorVerse AI"
}
}