Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 47 additions & 0 deletions packages/ansi/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,53 @@ void main() {

/// Use extension method on String
print('extension method on String'.cyan());

/// All functions

underline('Modifier underline');
strikeThrough('Modifier strikethrough');
reset('Modifier rest');
overline('Modifier underline');
italic('Modifier italic');
inverse('Modifier inverse');
hidden('Modifier hidden');
dim('Modifier dim');
bold('Modifier bold');

yellowBright('Color yellowBright');
yellow('Color yellow');
whiteBright('Color whiteBright');
white('Color white');
redBright('Color redBright');
red('Color red');
magentaBright('Color magentaBright');
magenta('Color magenta');
greenBright('Color greenBright');
green('Color green');
gray('Color gray');
cyanBright('Color cyanBright');
cyan('Color cyan');
blueBright('Color blueBright');
blue('Color blue');
blackBright('Color blackBright');
black('Color black');

bgYellowBright('Background Color bgYellowBright');
bgYellow('Background Color bgYellow');
bgWhiteBright('Background Color bgWhiteBright');
bgWhite('Background Color bgWhite');
bgRedBright('Background Color bgRedBright');
bgRed('Background Color bgRed');
bgMagentaBright('Background Color bgMagentaBright');
bgMagenta('Background Color bgMagenta');
bgGreenBright('Background Color bgGreenBright');
bgGreen('Background Color bgGreen');
bgCyanBright('Background Color bgCyanBright');
bgCyan('Background Color bgCyan');
bgBlueBright('Background Color bgBlueBright');
bgBlue('Background Color bgBlue');
bgBlackBright('Background Color bgBlackBright');
bgBlack('Background Color bgBlack');
}

```