mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
15 lines
478 B
Python
15 lines
478 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.css")
|