#a07fab
Lavender Purple
Closest match (95% match)
Color formats
RGB
rgb(160, 127, 171)
Red, Green, Blue components
HSL
hsl(285, 0, 1, 1)
Hue, Saturation, Lightness
CMYK
cmyk(6, 26, 0, 33)
Print color encoding
Luminance
0.256
Relative luminance
Variations
Shades (Darkening)
Tints (Lightening)
Tones (Reduced saturation)
Harmonies
Click the color slices to copy the code.
Complementary (Opposite)
#a07fab
#8aab7f
Analogous (Adjacent)
#8a7fab
#a07fab
#ab7fa0
Triadic
#a07fab
#aba07f
#7faba0
Split complementary
#a07fab
#a0ab7f
#7fab8a
Intelligent palettes
Four generated color sets for different use cases.
Modern UI and monochrome
ffffff
c7b2cd
a07fab
4d3057
000000
Marketing and vibrant
a07fab
b86cd5
8aab7f
99af61
FFFFFF
Harmonious and natural
837fab
917fab
a07fab
ab7fa7
ab7f99
Pop Art and trendy
a07fab
c4a296
77b067
688893
f7c7df
Complete conversion table
HEX
#A07FAB
RGB
rgb(160,127,171)
RGBA
rgba(160,127,171, 1)
HSL
hsl(285,20.75%,58.43%)
OKLCH (Modern CSS)
oklch(0.64 0.07 317.6)
CSS Variable
--color: #a07fab;
CMYK
C: 6% M: 26% Y: 0% K: 33%
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
0xFFA07FAB
Swift UIColor
UIColor(red: 0.63, green: 0.50, blue: 0.67, alpha: 1.0)
Decimal (int)
10518443
JSON
{ "color": "#A07FAB" }
CIE LAB
L: 57.6 a: 20.8 b: -18.5
CIE LCH
L: 57.6 C: 27.9 H: 318.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.
Luxury
We tell stories with colors
Aa
Choosing the right typeface is key to brand identity and user experience.
700 Bold
'Cinzel'
400 Regular
'Montserrat'
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'
Editorial
We tell stories with colors
Aa
Choosing the right typeface is key to brand identity and user experience.
700 Bold
'Didot'
400 Regular
'Adobe Caslon Pro'
Playful
We tell stories with colors
Aa
Choosing the right typeface is key to brand identity and user experience.
700 Bold
'Quicksand'
400 Regular
'Nunito'
Accessibility
Contrast and readability (WCAG)
On white background
3.43
Small text (14pt)
The quick brown fox jumps over...
AA
AAA
Large text or UI (18pt Bold)
AA
AAA
On black background
6.12
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
Mystery
"Where the energy of red meets the stability of blue. Mysterious and visionary, often associated with luxury or spirituality."
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
#A07FAB
Result
#A07FAB
Lightness
Saturation
Hue
Temperature
Mix color
Mix color
#808080
Mix ratio
50%Base
#A07FAB
0%+
Mix color
#808080
100%Result
#908095
50% MixMixing guide
How to mix this color using physical paints or printing inks.
MIXING PALETTE
42%
32%
27%
RYB PIGMENTS
Titanium white
Pigment
42%
Cadmium red
Pigment
32%
Ultramarine blue
Pigment
27%
Unlike light, mixing paints makes colors darker. This simulation mimics the behavior of physical pigments.
INK LEVELS
33%
KEY
26%
MAGENTA
6%
CYAN
CMYK INKS
Black (Key)
Ink
33%
Magenta
Ink
26%
Cyan
Ink
6%
Physical properties
Scientific data of the color: optics and energy.
Wavelength
Extra-spectral
750nm
380nm
Color temperature
Cool
~5000-10000K
Cool
Warm
Luminance (brightness)
25.6%
Sötét / Dark
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
purple-400
#c084fc
ΔE: 15.1
Google Material
Original
Standard
Deep Purple 300
#9575CD
ΔE: 10.5
CSS Color Name
Original
Standard
Orchid
#DA70D6
ΔE: 13.4
Apple System (iOS)
Original
Standard
System Purple
#AF52DE
ΔE: 16.4
Pantone (PMS)
Original
Standard
PMS 17-3520 diffused-orchid
#9879A2
ΔE: 2.5
RAL Classic
Original
Standard
RAL 4009 Pastel violet
#9D8692
ΔE: 10.5
Copic Marker
Original
Standard
Blue Violet
#b08cb9
ΔE: 4.7
Code
CSS variable
1
2
3
4
5
:root {
--color-primary: #a07fab;
--rgb-primary: 160, 127, 171;
}SCSS variable
1
2
3
4
5
$color-primary: #a07fab;
$rgb-primary: (160, 127, 171);Tailwind config
1
2
3
4
5
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'primary': '#a07fab',
}
}
}
}React Native
1
2
3
4
5
const styles = StyleSheet.create({
container: {
backgroundColor: '#a07fab',
},
text: {
color: '#a07fab',
}
});SwiftUI (iOS)
1
2
3
4
5
// SwiftUI
let primaryColor = Color(
red: 0.6274509803921569,
green: 0.4980392156862745,
blue: 0.6705882352941176
)Full JSON data
1
2
3
4
5
{
"name": "Lavender Purple",
"hex": "#a07fab",
"rgb": {
"r": 160,
"g": 127,
"b": 171
},
"hsl": {
"h": 285,
"s": 21,
"l": 58
}
}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