//! `colorant current` — print the path of the .colorantrc that would be
//! applied for the current directory (or nothing, exit 0, if none).
usecrate::config::THEME_FILE_NAME;usecrate::walk;useanyhow::Result;pubfnrun()->Result<()>{let cwd =std::env::current_dir()?;ifletSome(path)=walk::find_nearest(&cwd,THEME_FILE_NAME){println!("{}", path.display());}Ok(())}