ansi_styles 0.2.0 ansi_styles: ^0.2.0 copied to clipboard
ANSI escape codes for styling strings in the terminal.
// ignore_for_file: avoid_print
import 'package:ansi_styles/ansi_styles.dart';
void main() {
print(AnsiStyles.red.underline('Underlined red text'));
print(AnsiStyles.inverse.italic.green('Inverted italic green text'));
print(AnsiStyles.cyan('Cyan text'));
print(AnsiStyles.bgYellowBright.bold('Bold text with a yellow background'));
print(AnsiStyles.bold.rgb(255, 192, 203)('Bold pink text'));
print(AnsiStyles.strikethrough
.bgRgb(255, 165, 0)('Strikethrough text with an orange background'));
}