Why does using a color name like 'red' work without hex or rgb values?
Color names are predefined in CSS and the browser knows their exact RGB values, so it converts 'red' to the correct color automatically (see render_steps 3).
π‘ Think of color names as shortcuts for exact colors the browser understands.
Why does text sometimes become hard to read on colored backgrounds?
If text color and background color have low contrast, the text blends in. Using contrasting colors like white text on red background (render_step 4) improves readability.
π‘ Always check contrast between text and background colors.