ansi_set_text_color function
Implementation
String ansi_set_text_color(
final AnsiForegroundColor color,
) {
return _ansi_select_graphics_rendition(
GraphicsRenditionNodeColorImpl(
color.foreground_color_code,
),
);
}
String ansi_set_text_color(
final AnsiForegroundColor color,
) {
return _ansi_select_graphics_rendition(
GraphicsRenditionNodeColorImpl(
color.foreground_color_code,
),
);
}