CSS provides several ways to define colors. Choosing the right color format depends on your project needs.
Color Formats
- Named Colors — predefined names like
red,blue,tomato - Hex Colors — 6-digit hexadecimal:
#ff6347 - RGB — red, green, blue values:
rgb(255, 99, 71) - RGBA — RGB with alpha (opacity):
rgba(255, 99, 71, 0.5) - HSL — hue, saturation, lightness:
hsl(9, 100%, 64%) - HSLA — HSL with alpha:
hsla(9, 100%, 64%, 0.5)
CSS Properties That Use Colors
color— text colorbackground-color— element backgroundborder-color— border colorbox-shadow— shadow color