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

15 lines
479 B
Python

from textual.app import App
from textual.widgets import Label
class TextOpacityApp(App):
def compose(self):
yield Label("text-opacity: 0%", id="zero-opacity")
yield Label("text-opacity: 25%", id="quarter-opacity")
yield Label("text-opacity: 50%", id="half-opacity")
yield Label("text-opacity: 75%", id="three-quarter-opacity")
yield Label("text-opacity: 100%", id="full-opacity")
app = TextOpacityApp(css_path="text_opacity.tcss")