How should light text be handled on potentially light backgrounds (such as over images, where the image content is unknown but could be white or very light)?
You can see an example of some effects here.
https://i.sstatic.net/b9UHDm.png
It's important to note that even on a pure white background, the words should still be somewhat readable.
I attempted to replicate this using bootstrap 4 with the following code:
<span class="text-light shadow-lg">
My text
<span>
Unfortunately, this method did not seem to work - I couldn't achieve the desired effect.
Since this is a common issue, I'm hopeful that bootstrap has a built-in solution for handling it effectively?