gesso 1.0.4
gesso: ^1.0.4 copied to clipboard
A lightweight, chainable terminal styling library for Dart that makes your console output beautiful and expressive with ANSI escape sequences.
import 'package:gesso/gesso.dart';
void main() {
final g = Gesso().bold.italic.red;
gPrint(String s) => g(s);
gPrint('pippo');
}