yaansi 1.0.2 copy "yaansi: ^1.0.2" to clipboard
yaansi: ^1.0.2 copied to clipboard

Yet another ANSI implementation! A utility package to color your terminal.

example/main.dart

import 'package:yaansi/yaansi.dart';

void main() {
  // extensions
  print('Lorem ipsum'.bold.red);

  // functions
  print(blue(italic('Lorem ipsum')));

  // inline mixing and nesting
  print('${green(' Lorem').bold} ${redBg(' ipsum ').white}'.whiteBg);

  // reusable styling
  const style = YaansiStyle(
    color: YaansiColor.yellow,
    bgColor: YaansiColor.black,
    modes: {YaansiMode.bold, YaansiMode.italic},
  );
  print(style.apply('One'));
  print(style.apply('Two'));
}
3
likes
160
pub points
42%
popularity

Publisher

verified publisher0ohm.de

Yet another ANSI implementation! A utility package to color your terminal.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

More

Packages that depend on yaansi