Format an informational message in cyan. Use this for informational messages, tips, and neutral status updates. # Arguments `text` - The text to format # Returns A styled object that displays in cyan when printed. # Example ```rust,ignore println!("{}", colors::info("Processing files...")); ```
(text: D)
| 230 | /// println!("{}", colors::info("Processing files...")); |
| 231 | /// ``` |
| 232 | pub fn info<D: std::fmt::Display>(text: D) -> StyledObject<D> { |
| 233 | style(text).cyan() |
| 234 | } |
| 235 | |
| 236 | /// Format a hint/suggestion message in dim style. |
| 237 | /// |
no outgoing calls