atoti.BrandingConfig#
- final class atoti.BrandingConfig#
The UI elements to customize the app by replacing the Atoti branding with another one (also called white-labeling).
Note
This feature is not part of the community edition: it needs to be unlocked.
When defined, the By ActiveViam signature at the bottom right corner of the app will be removed.
Example
>>> from pathlib import Path >>> config = tt.BrandingConfig( ... favicon=Path("favicon.ico"), ... logo=Path("logo.svg"), ... title="Custom title", ... )
- dark_theme_logo: Path | None = None#
The logo displayed in dark theme.
If
None
,logo
will be used as a fallback (if it is notNone
itself).