keecode logokeecode
Home / Color Codes / Pastel Purple

Pastel Purple

Pastel

Color Codes

HEX

#E0BBE4

RGB

rgb(224, 187, 228)

HSL

hsl(294, 42%, 81%)

Usage Examples

CSS (HEX)

.element {
  background-color: #E0BBE4;
  color: #E0BBE4;
  border: 1px solid #E0BBE4;
}

CSS (RGB)

.element {
  background-color: rgb(224, 187, 228);
  color: rgb(224, 187, 228);
}

CSS (HSL)

.element {
  background-color: hsl(294, 42%, 81%);
  color: hsl(294, 42%, 81%);
}

HTML Inline Style

<div style="background-color: #E0BBE4; color: white;">
  Content
</div>

JavaScript

element.style.backgroundColor = "#E0BBE4";
element.style.color = "#E0BBE4";

React/JSX

<div style={{ backgroundColor: "#E0BBE4", color: "white" }}>
  Content
</div>