pub struct Theme<'a> {
pub name: Option<Cow<'a, str>>,
pub elements: ThemeElements<'a>,
pub defaults: Option<ObjectDefaults>,
pub extra_clr_scheme_lst: Option<ExtraClrSchemeLst>,
pub cust_clr_lst: Option<CustClrLst<'a>>,
pub ext_lst: Option<ExtLst<'a>>,
}
Expand description
The root element of the main document part.
Fields§
§name: Option<Cow<'a, str>>
§elements: ThemeElements<'a>
§defaults: Option<ObjectDefaults>
§extra_clr_scheme_lst: Option<ExtraClrSchemeLst>
§cust_clr_lst: Option<CustClrLst<'a>>
§ext_lst: Option<ExtLst<'a>>