#FEFFFF White
rgb(254, 255, 255)
Color conversions
- HEX
- #FEFFFF
- RGB
- rgb(254, 255, 255)
- RGBA
- rgba(254, 255, 255, 1)
- HSL
- hsl(180, 100%, 100%)
- HSV / HSB
- hsv(180, 0%, 100%)
- CMYK
- cmyk(0%, 0%, 0%, 0%)
Wide-gamut spaces
- XYZ
- xyz(94.68, 99.811, 108.866)
- LAB
- lab(99.93 -0.33 -0.12)
- LCH
- lch(99.93 0.35 199.39)
- OKLAB
- oklab(99.92% -0.001 -0.0003)
- OKLCH
- oklch(99.92% 0.0011 197.14)
- Nearest name
- White
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
#feffff1a
#feffff33
#feffff4d
#feffff66
#feffff80
#feffff99
#feffffb3
#feffffcc
#feffffe6
#feffffff
Accessibility and contrast
On white
1:1
Body text Fail · Large text Fail
On black
20.96:1
Body text AAA · Large text AA
White-on-color contrast is 1: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
Clean, technical, and effortlessly modern
Cyan and teal sit between blue's trust and green's calm, reading as clinical and precise. They perform well in data visualisation because they remain distinguishable for most forms of colour vision deficiency.
Water, hygiene, and clarity almost universally. Teal specifically carries a mid-century and medical association in Western design history.
Cyan entered common vocabulary through four-colour printing, where it is one of the process inks. Egyptian blue and later cerulean gave artists the closest historical equivalents.
Excellent for healthcare, SaaS, and fintech seeking approachability without blue's ubiquity. Deepen it for text use — bright cyan rarely reaches AA on white.
Common industries: Healthcare, SaaS, Travel, Water & utilities, Beauty. Pairs well with coral for warmth, deep navy for hierarchy, soft gray for restraint.
Code exports
CSS
:root {
--color-white: #feffff;
--color-white-rgb: 254 255 255;
--color-white-hsl: 180 100% 100%;
--color-white-oklch: 99.92% 0.0011 197.14;
}
.element {
color: #feffff;
background-color: hsl(180, 100%, 100%);
border: 1px solid rgb(254 255 255 / 40%);
}SCSS
$white: #feffff;
$white-light: #ffffff;
$white-dark: #7f8080;
.element {
color: $white;
background: rgba($white, 0.12);
&:hover {
color: darken($white, 8%);
}
}LESS
@white: #feffff;
@white-light: lighten(@white, 12%);
@white-dark: darken(@white, 12%);
.element {
color: @white;
background: fade(@white, 12%);
}Tailwind CSS
/* Tailwind v4 — src/styles.css */
@theme {
--color-white-50: #ffffff;
--color-white-100: #ffffff;
--color-white-200: #ffffff;
--color-white-300: #feffff;
--color-white-400: #feffff;
--color-white-500: #feffff;
--color-white-600: #e5e6e6;
--color-white-700: #b2b3b3;
--color-white-800: #7f8080;
--color-white-900: #4c4d4d;
}
/* Usage */
<div class="bg-white-500 text-white-50 ring-white-600" />
/* Arbitrary value, no config needed */
<div class="bg-[#feffff]" />Bootstrap
// Bootstrap 5 — _variables.scss (before importing bootstrap)
$white: #feffff;
$primary: $white;
$theme-colors: map-merge($theme-colors, (
"white": $white
));
// Generates .text-white, .bg-white, .btn-white
@import "bootstrap/scss/bootstrap";Flutter
import 'package:flutter/material.dart';
const Color white = Color(0xFFFEFFFF);
// As a MaterialColor swatch
const MaterialColor whiteSwatch = MaterialColor(0xFFFEFFFF, <int, Color>{
50: Color(0xFFFFFFFF),
100: Color(0xFFFFFFFF),
200: Color(0xFFFFFFFF),
300: Color(0xFFFEFFFF),
400: Color(0xFFFEFFFF),
500: Color(0xFFFEFFFF),
600: Color(0xFFE5E6E6),
700: Color(0xFFB2B3B3),
800: Color(0xFF7F8080),
900: Color(0xFF4C4D4D),
});Swift / SwiftUI
import SwiftUI
extension Color {
/// #feffff — White
static let white = Color(
red: 0.9961,
green: 1,
blue: 1
)
}
// UIKit
extension UIColor {
static let white = UIColor(
red: 0.9961,
green: 1,
blue: 1,
alpha: 1.0
)
}Android
<!-- res/values/colors.xml -->
<resources>
<color name="white">#FEFFFF</color>
<color name="white_translucent">#80FEFFFF</color>
</resources>
<!-- Jetpack Compose -->
val White = Color(0xFFFEFFFF)JavaScript
export const WHITE = {
hex: "#feffff",
rgb: [254, 255, 255],
hsl: [180, 100, 100],
oklch: "oklch(99.92% 0.0011 197.14)",
};JSON tokens
{
"$schema": "https://design-tokens.org/schema.json",
"white": {
"$type": "color",
"$value": "#feffff",
"$description": "White — generated by ColorVerse AI"
}
}