Files
textual/docs/examples/styles/tint.py
Rodrigo Girão Serrão 5ee0ebfef4 Rename CSS files to TCSS.
Related issue: #3137.
2023-08-22 13:21:17 +01:00

16 lines
418 B
Python

from textual.app import App
from textual.color import Color
from textual.widgets import Label
class TintApp(App):
def compose(self):
color = Color.parse("green")
for tint_alpha in range(0, 101, 10):
widget = Label(f"tint: green {tint_alpha}%;")
widget.styles.tint = color.with_alpha(tint_alpha / 100) # (1)!
yield widget
app = TintApp(css_path="tint.tcss")