Why do the boxes not show color before applying background-color?
Defining variables or functions in SASS does not change the page until the colors are applied as CSS properties to elements (see render_steps 2-4).
💡 Colors appear only when assigned to CSS properties like background-color.
Why is the text white on blue boxes?
White text contrasts well on blue backgrounds, making the text easy to read (see render_step 5).
💡 Always choose text color for good contrast on backgrounds.
Why does the lighten function create lighter colors for the scale?
The lighten function increases the lightness of the base color, creating a gradient from light to dark (see color-scale function in code_sample).
💡 Lighten and darken functions adjust color brightness for scales.