Files
textual/docs/examples/styles/text_opacity.py
Rodrigo Girão Serrão c7c352a38a Replace statics with labels.
[skip ci]
2023-01-06 10:56:55 +00:00

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")