Doing CSS throughout the last couple years, I eventually learned that the standard way to represent a gray color shade (or any color which repeated its first three characters) was to use only three characters instead of six, I assume for terseness:
- #555 instead of #555555
- #eee instead of #eeeeee
In XAML, however, I often see the opposite:
- #555555 instead of #555
- #eeeeee instead of #eee
Are there any situations in XAML when one will work and not the other, or one consumes more memory, etc., or is this just a long/short notation issue and has no practical ramifications?