#f8f8ff
Ghost White
ReadyTools Database (Exact)
Titan White
~95% match
Color formats
RGB
rgb(248, 248, 255)
Red, Green, Blue components
HSL
hsl(240, 1, 1, 1)
Hue, Saturation, Lightness
CMYK
cmyk(3, 3, 0, 0)
Print color encoding
Luminance
0.943
Relative luminance
Variations
Shades (Darkening)
Tints (Lightening)
Tones (Reduced saturation)
Harmonies
Click the color slices to copy the code.
Complementary (Opposite)
#f8f8ff
#fffff8
Analogous (Adjacent)
#f8fcff
#f8f8ff
#fcf8ff
Triadic
#f8f8ff
#fff8f8
#f8fff8
Split complementary
#f8f8ff
#fffcf8
#fcfff8
Intelligent palettes
Four generated color sets for different use cases.
Modern UI and monochrome
ffffff
b8b8bf
f8f8ff
3b3b40
000000
Marketing and vibrant
f8f8ff
edf3ff
fffff8
fff9d6
101827
Harmonious and natural
f8fdff
f8faff
f8f8ff
faf8ff
fdf8ff
Pop Art and trendy
f8f8ff
ffffff
ffffd7
dee5e2
ffffff
Complete conversion table
HEX
#F8F8FF
RGB
rgb(248,248,255)
RGBA
rgba(248,248,255, 1)
HSL
hsl(240,100%,98.63%)
OKLCH (Modern CSS)
oklch(0.98 0.01 286.2)
CSS Variable
--color: #f8f8ff;
CMYK
C: 3% M: 3% Y: 0% K: 0%
Note: Converting web (RGB) colors to print (CMYK) colors is never 100 percent accurate due to physical limitations. Always request a test print before production.
Android ARGB
0xFFF8F8FF
Swift UIColor
UIColor(red: 0.97, green: 0.97, blue: 1.00, alpha: 1.0)
Decimal (int)
16316671
JSON
{ "color": "#F8F8FF" }
CIE LAB
L: 97.8 a: 1.2 b: -3.3
CIE LCH
L: 97.8 C: 3.6 H: 290.4
CIE XYZ
N/A
Preview
Readability and Typography
Headline Test
This text demonstrates the reading experience on this background color.
Headline Test
This text demonstrates the reading experience on this background color.
UI Component Set
This is an example alert bar using the selected color.
Product Mockup
4582 •••• •••• 9018
CARDHOLDER
JOHN DOE
VALID
12/28
Mobile application
Customer support
Hi! How can we help you today?
I love this new color! 😍
Data visualization
Weekly growth
+1,240
12.5%1D
1W
1M
WED
2,450
Font recommendations
Professional font pairings that perfectly match the color. Click the CSS button to copy.
Minimalist
We tell stories with colors
Aa
Choosing the right typeface is key to brand identity and user experience.
700 Bold
Helvetica
400 Regular
-apple-system
Modern
We tell stories with colors
Aa
Choosing the right typeface is key to brand identity and user experience.
700 Bold
'Inter'
400 Regular
'Inter'
Calm
We tell stories with colors
Aa
Choosing the right typeface is key to brand identity and user experience.
700 Bold
'Spectral'
400 Regular
'IBM Plex Sans'
Elegant
We tell stories with colors
Aa
Choosing the right typeface is key to brand identity and user experience.
700 Bold
'Playfair Display'
400 Regular
'Lato'
Accessibility
Contrast and readability (WCAG)
On white background
1.06
Small text (14pt)
The quick brown fox jumps over...
AA
AAA
Large text or UI (18pt Bold)
AA
AAA
On black background
19.86
Small text (14pt)
The quick brown fox jumps over...
AA
AAA
Large text or UI (18pt Bold)
AA
AAA
Color blindness simulator
ORIG
SIM
Protanopia (red)
ORIG
SIM
Deuteranopia (green)
ORIG
SIM
Tritanopia (blue)
ORIG
SIM
Monochrome (color blind)
Color Psychology
Emotional, psychological, and cultural impact of the color with scientifically grounded analysis.
Dominant vibe
Clean
"The ultimate symbol of purity and new beginnings. It creates airy space and visual silence, providing a perfect background for important content."
Color personality description
Emotional effects
Symbolic meanings
Recommended industries
Potential negative effects
Color laboratory
Fine tuning and blending. Adjust lightness, saturation, or mix with another color.
Base
#F8F8FF
Result
#F8F8FF
Lightness
Saturation
Hue
Temperature
Mix color
Mix color
#808080
Mix ratio
50%Base
#F8F8FF
0%+
Mix color
#808080
100%Result
#BABABE
50% MixMixing guide
How to mix this color using physical paints or printing inks.
MIXING PALETTE
97%
3%
RYB PIGMENTS
Titanium white
Pigment
97%
Ultramarine blue
Pigment
3%
Unlike light, mixing paints makes colors darker. This simulation mimics the behavior of physical pigments.
INK LEVELS
3%
CYAN
3%
MAGENTA
CMYK INKS
Cyan
Ink
3%
Magenta
Ink
3%
Physical properties
Scientific data of the color: optics and energy.
Wavelength
459 nm
654 THz • 2.70 eV
750nm
380nm
Color temperature
Cool
~5000-10000K
Cool
Warm
Luminance (brightness)
94.3%
Világos / Light
0%
50%
100%
Intelligent Library Matching
Compare your color with industry standards and design systems. Results show similar or exact matches from multiple color libraries.
Tailwind CSS
Original
Standard
violet-50
#f5f3ff
ΔE: 2.7
Google Material
Original
Standard
Grey 50
#FAFAFA
ΔE: 3.5
CSS Color Name
Original
Standard
GhostWhite
#F8F8FF
ΔE: 0.0
Apple System (iOS)
Original
Standard
System Gray 6
#F2F2F7
ΔE: 1.6
Pantone (PMS)
Original
Standard
PMS 11-4001 brilliant-white
#EDF1FE
ΔE: 3.2
RAL Classic
Original
Standard
RAL 9003 Signal white
#ECECE7
ΔE: 6.9
Copic Marker
Original
Standard
Rose Quartz
#f3f1f8
ΔE: 1.7
Code
CSS variable
1
2
3
4
5
:root {
--color-ghost-white: #f8f8ff;
--rgb-ghost-white: 248, 248, 255;
}SCSS variable
1
2
3
4
5
$color-ghost-white: #f8f8ff;
$rgb-ghost-white: (248, 248, 255);Tailwind config
1
2
3
4
5
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'ghost-white': '#f8f8ff',
}
}
}
}React Native
1
2
3
4
5
const styles = StyleSheet.create({
container: {
backgroundColor: '#f8f8ff',
},
text: {
color: '#f8f8ff',
}
});SwiftUI (iOS)
1
2
3
4
5
// SwiftUI
let ghost-whiteColor = Color(
red: 0.9725490196078431,
green: 0.9725490196078431,
blue: 1
)Full JSON data
1
2
3
4
5
{
"name": "Ghost White",
"hex": "#f8f8ff",
"rgb": {
"r": 248,
"g": 248,
"b": 255
},
"hsl": {
"h": 240,
"s": 100,
"l": 99
}
}Gradient gallery
Generate premium CSS backgrounds and textures from your color.
Sunset
Deep sea
Dynamic contrast
Night duotone
Icy duotone
Soft mist
Aurora borealis
Neon mesh
Color wheel
Radar
Spotlight
Grainy paper
Retro stripes