Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iamsalnikov/colorize
https://github.com/iamsalnikov/colorize
cli console dart
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/iamsalnikov/colorize
- Owner: iamsalnikov
- License: mit
- Created: 2014-10-27T13:46:04.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2023-06-29T22:16:32.000Z (over 1 year ago)
- Last Synced: 2024-08-01T12:18:59.729Z (3 months ago)
- Topics: cli, console, dart
- Language: Dart
- Homepage: https://pub.dartlang.org/packages/colorize
- Size: 19.5 KB
- Stars: 25
- Watchers: 3
- Forks: 5
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Colorize
Colorize console output in dart console apps!
![](http://i.imgur.com/BaxDbw9.png)
## Install
Add dependency to your `pubspec.yaml`:
```yaml
colorize: any
```Run
```bash
pub get
```## Usage
Import package:
```dart
import 'package:colorize/colorize.dart';
```You have two way to colorize your string:
* use class `Colorize`
* use top-level function `color()`### Use `Colorize`
For colorize string with `Colorize` class you should create object of type `Colorize`:
```dart
Colorize string = new Colorize("This is my string!");
```Then you can call methods of `Colorize`.
**Text color**
* default()
* black()
* red()
* green()
* yellow()
* blue()
* magenta()
* cyan()
* lightGray()
* darkGray()
* lightRed()
* lightGreen()
* lightYellow()
* lightBlue()
* lightMagenta()
* lightCyan()
* white()**Background color**
* bgDefault()
* bgBlack()
* bgRed()
* bgGreen()
* bgYellow()
* bgBlue()
* bgMagenta()
* bgCyan()
* bgLightGray()
* bgDarkGray()
* bgLightRed()
* bgLightGreen()
* bgLightYellow()
* bgLightBlue()
* bgLightMagenta()
* bgLightCyan()
* bgWhite()**Formatting**
* reset()
* bold()
* dark()
* italic()
* underline()
* blink()
* reverse()
* concealed()After apply styles to string you can print it to console:
```dart
print(string);
```### Use top-level function `color()`
Top-level function `color` apply one required parameter - `String text`. It is text, that would be print
on console.Also top-level function `color` has seven named parameters:
* `Styles front` - name of front color (you can also use the constants of class `Styles`). Default value is `''`.
* `Styles back`: name of background color (you can also use the constants of class `Styles`). Default value is `''`.
* `bool isUnderline` - default value is `false`.
* `bool isBold` - default value is `false`.
* `bool isDark` - default value is `false`.
* `bool isItalic` - default value is `false`.
* `bool isReverse` - default value is `false`.**Example of usage**
```dart
color("Bold Italic Underline", front: Styles.RED, isBold: true, isItalic: true, isUnderline: true);
```### Enum `Styles`
Enum `Styles` contains all styles which you can pass to Colorize.applyState method;