You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: add Tutorials button to landing page; fix foreground alpha docs; tutorials in Pages
index.html: add Tutorials big button alongside Get Started/Examples.
MARKUP_SYNTAX.md: document #RRGGBBAA hex format for foreground alpha.
GRADIENTS.md: correct alpha compositing description — foreground now
blends against resolved background (Porter-Duff "over"), not as-is.
docfx.json: include tutorials/**.md so tutorial pages build to the site.
toc.yml: add Tutorials entry to the docfx navigation bar.
"[#FF000000]Fully transparent red[/]"// invisible — composites to background
148
151
```
149
152
153
+
The 8-digit form (`#RRGGBBAA`) sets the foreground alpha. The character is composited over the resolved background color of that cell using Porter-Duff "over". At `AA=00` the glyph is invisible (background shows through); at `AA=FF` it is fully opaque. This is what powers the fade-to-transparent effect in the Alpha Blending demo — `█` characters drawn with decreasing alpha dissolve smoothly into whatever gradient is underneath.
0 commit comments