rl_lang/docs/entries/stdlib/term/term_fg.rs
1use crate::docs::entry::FnEntry;
2
3pub static TERM_FG: FnEntry = FnEntry {
4 signature: "term_fg(name)",
5 description: "sets the foreground text color using a named color",
6 example: "get std::term::term_fg\n\nterm_fg(\"red\")",
7 expected_output: None,
8 returns: "",
9 errors: None,
10 see_also: &[],
11 since: None,
12};