Travertino is a set of constants and utilities for describing user interfaces, including:
- colors
- directions
- text alignment
- sizes
Install Travertino:
$ pip install travertino
Then in your python code, import and use it:
>>> from travertino.colors import color, rgb, # Define a new color as an RGB triple >>> red = rgb(0xff, 0x00, 0x00) # Parse a color from a string >>> color('#dead00') rgb(0xde, 0xad, 0x00) # Reference a pre-defined color >>> color('RebeccaPurple') rgb(102, 51, 153)
Travertino is part of the BeeWare suite. You can talk to the community through:
We foster a welcoming and respectful community as described in our BeeWare Community Code of Conduct.
If you experience problems with Travertino, log them on GitHub. If you want to contribute code, please fork the code and submit a pull request.
Travertino uses Pre-commit and TownCrier to help maintain code quality. For details on how to use these tools as part of your development environment, see the Briefcase code contribution guide. Although that document is for a different project, the details about setting up your development environment are the same.