/// A trait for building a theme from a given context.
////// This trait is typically derived using `tui-theme-builder::ThemeBuilder` from the `tui-theme-builder-derive` crate.
pubtraitThemeBuilder{/// The type of context used to build the theme.
typeContext;/// Builds and returns an instance of the implementing type using the provided context.
fnbuild(context:&Self::Context)->Self;}