#625766 Quartz
rgb(98, 87, 102)
Color conversions
- HEX
- #625766
- RGB
- rgb(98, 87, 102)
- RGBA
- rgba(98, 87, 102, 1)
- HSL
- hsl(284, 8%, 37%)
- HSV / HSB
- hsv(284, 15%, 40%)
- CMYK
- cmyk(4%, 15%, 0%, 60%)
Wide-gamut spaces
- XYZ
- xyz(10.843, 10.372, 13.999)
- LAB
- lab(38.5 7.57 -6.97)
- LCH
- lch(38.5 10.29 317.36)
- OKLAB
- oklab(47.27% 0.0201 -0.0187)
- OKLCH
- oklch(47.27% 0.0274 317.06)
- Nearest name
- Quartz
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
#6257661a
#62576633
#6257664d
#62576666
#62576680
#62576699
#625766b3
#625766cc
#625766e6
#625766ff
Accessibility and contrast
On white
6.83:1
Body text AA · Large text AA
On black
3.07:1
Body text AA Large · Large text AA
White-on-color contrast is 6.83: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-quartz: #625766;
--color-quartz-rgb: 98 87 102;
--color-quartz-hsl: 284 8% 37%;
--color-quartz-oklch: 47.27% 0.0274 317.06;
}
.element {
color: #625766;
background-color: hsl(284, 8%, 37%);
border: 1px solid rgb(98 87 102 / 40%);
}SCSS
$quartz: #625766;
$quartz-light: #b1abb3;
$quartz-dark: #312c33;
.element {
color: $quartz;
background: rgba($quartz, 0.12);
&:hover {
color: darken($quartz, 8%);
}
}LESS
@quartz: #625766;
@quartz-light: lighten(@quartz, 12%);
@quartz-dark: darken(@quartz, 12%);
.element {
color: @quartz;
background: fade(@quartz, 12%);
}Tailwind CSS
/* Tailwind v4 — src/styles.css */
@theme {
--color-quartz-50: #e0dde0;
--color-quartz-100: #d0cdd1;
--color-quartz-200: #c0bcc2;
--color-quartz-300: #a19aa3;
--color-quartz-400: #817985;
--color-quartz-500: #625766;
--color-quartz-600: #584e5c;
--color-quartz-700: #453d47;
--color-quartz-800: #312c33;
--color-quartz-900: #1d1a1f;
}
/* Usage */
<div class="bg-quartz-500 text-quartz-50 ring-quartz-600" />
/* Arbitrary value, no config needed */
<div class="bg-[#625766]" />Bootstrap
// Bootstrap 5 — _variables.scss (before importing bootstrap)
$quartz: #625766;
$primary: $quartz;
$theme-colors: map-merge($theme-colors, (
"quartz": $quartz
));
// Generates .text-quartz, .bg-quartz, .btn-quartz
@import "bootstrap/scss/bootstrap";Flutter
import 'package:flutter/material.dart';
const Color quartz = Color(0xFF625766);
// As a MaterialColor swatch
const MaterialColor quartzSwatch = MaterialColor(0xFF625766, <int, Color>{
50: Color(0xFFE0DDE0),
100: Color(0xFFD0CDD1),
200: Color(0xFFC0BCC2),
300: Color(0xFFA19AA3),
400: Color(0xFF817985),
500: Color(0xFF625766),
600: Color(0xFF584E5C),
700: Color(0xFF453D47),
800: Color(0xFF312C33),
900: Color(0xFF1D1A1F),
});Swift / SwiftUI
import SwiftUI
extension Color {
/// #625766 — Quartz
static let quartz = Color(
red: 0.3843,
green: 0.3412,
blue: 0.4
)
}
// UIKit
extension UIColor {
static let quartz = UIColor(
red: 0.3843,
green: 0.3412,
blue: 0.4,
alpha: 1.0
)
}Android
<!-- res/values/colors.xml -->
<resources>
<color name="quartz">#625766</color>
<color name="quartz_translucent">#80625766</color>
</resources>
<!-- Jetpack Compose -->
val Quartz = Color(0xFF625766)JavaScript
export const QUARTZ = {
hex: "#625766",
rgb: [98, 87, 102],
hsl: [284, 8, 37],
oklch: "oklch(47.27% 0.0274 317.06)",
};JSON tokens
{
"$schema": "https://design-tokens.org/schema.json",
"quartz": {
"$type": "color",
"$value": "#625766",
"$description": "Quartz — generated by ColorVerse AI"
}
}