keecode logokeecode
Home / Color Codes / Warning Yellow

Warning Yellow

UI

Color Codes

HEX

#FFC107

RGB

rgb(255, 193, 7)

HSL

hsl(45, 100%, 51%)

Usage Examples

CSS (HEX)

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

CSS (RGB)

.element {
  background-color: rgb(255, 193, 7);
  color: rgb(255, 193, 7);
}

CSS (HSL)

.element {
  background-color: hsl(45, 100%, 51%);
  color: hsl(45, 100%, 51%);
}

HTML Inline Style

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

JavaScript

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

React/JSX

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