CSS Tutorial - Colors
๐ Colors - Rang Bharo
๐ Colors Everywhere:
๐จ Text color
๐ Background color
๐ฒ Border color
๐ฏ Color Formats
| Format | Example | Use |
|---|---|---|
| Name | red, blue | Simple colors |
| Hex | #FF0000 | Most common |
| RGB | rgb(255,0,0) | Red, Green, Blue |
| RGBA | rgba(255,0,0,0.5) | With transparency |
๐ Common Properties
color: red; /* Text color */
background-color: blue; /* Background */
border-color: green; /* Border */
๐ก Pro Tip:
Google "color picker" for color codes!
Example
h1 { color: #FF6B6B; }
p { background-color: yellow; }