Docs/CSS/Colors & Backgrounds

CSS Colors

Format warna CSS:

  • Namedred, blue
  • Hex#FF0000
  • RGBrgb(255, 0, 0)
  • HSLhsl(0, 100%, 50%)
  • RGBA/HSLA — dengan opacity
style.css
Try It →
.color-box {
  padding: 16px;
  margin: 8px 0;
  border-radius: 8px;
  color: white;
  font-weight: bold;
}
.gradient-box {
  background: linear-gradient(135deg, #667eea, #764ba2);
  padding: 24px;
  border-radius: 12px;
  color: white;
  text-align: center;
}