CSS Colors
Colors in CSS can be specified in many formats. You can set colors for text, backgrounds, borders, and more.
Color Formats:
- Name: red, blue, tomato, coral
- HEX: #1572B6
- RGB: rgb(21, 114, 182)
- RGBA: rgba(21, 114, 182, 0.5)
- HSL: hsl(207, 79%, 40%)
- HSLA: hsla(207, 79%, 40%, 0.5)
Try It Yourself
Edit the code below and click Run to see the result live.