mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
15 lines
440 B
Python
15 lines
440 B
Python
from textual.app import App
|
|
from textual.widgets import Label
|
|
|
|
|
|
class OpacityApp(App):
|
|
def compose(self):
|
|
yield Label("opacity: 0%", id="zero-opacity")
|
|
yield Label("opacity: 25%", id="quarter-opacity")
|
|
yield Label("opacity: 50%", id="half-opacity")
|
|
yield Label("opacity: 75%", id="three-quarter-opacity")
|
|
yield Label("opacity: 100%", id="full-opacity")
|
|
|
|
|
|
app = OpacityApp(css_path="opacity.css")
|