//! Default config path function.
usestd::path::PathBuf;usesuper::default_config_dir::default_config_dir;/// Gets the default path for the theme config file.
////// # Returns
////// The full path to the theme.json config file, or `None` if the config
/// directory cannot be determined.
#[must_use]pubfndefault_config_path()->Option<PathBuf>{default_config_dir().map(|p|p.join("theme.json"))}