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

18 lines
192 B
Plaintext

Label {
height: 1fr;
content-align: center middle;
width: 100%;
}
#label1 {
color: red;
}
#label2 {
color: rgb(0, 255, 0);
}
#label3 {
color: hsl(240, 100%, 50%);
}