The convenient enum of 256 colors for console

Overview

1. About

The convenient enum of 256 colors for console. Console Color gives the color code for the console an easily recognizable name.

1.1. Introduction

1.1.1. Install Library

With Dart:

 dart pub add console_color

With Flutter:

 flutter pub add console_color

1.1.2. Import It

import 'package:console_color/console_color.dart';

1.1.3. Use library

import 'package:console_color/console_color.dart';

void main() {
  final color = ConsoleColor.cyan1;
  print(color.name);
  print(color.code);

  for (final color in ConsoleColor.values) {
    print('name=${color.name}');
    print('code=${color.code}');
  }
}

1.2. License

Copyright (c) 2022, Kato Shinya. All rights reserved.
Use of this source code is governed by a
BSD-style license that can be found in the LICENSE file.

1.3. More Information

Console Color was designed and implemented by Kato Shinya.

You might also like...

This project encrypt and decrypt the files using AES 256 cbc mode

This project encrypt and decrypt the files using AES 256 cbc mode

College Project A new Flutter project. Getting Started This project encrypt and decrypt the files using AES 256 cbc mode.It has two features i.e encry

Nov 16, 2022

Example of verifying cryptographically signed and encrypted license files using Dart, Ed25519 and AES-256-GCM

Example Dart Cryptographic License Files This is an example of how to verify and decrypt cryptographic license files in Dart, using Ed25519 signature

Oct 27, 2022

Ember 8 is a Fantasy Console built on top of Flutter/Flame

Ember 8 Ember 8 is a Fantasy Console built on top of Flutter/Flame. It will feature an editor to create games and a console app to play the created ga

Oct 21, 2022

A dart library to create Progress Bars in console.

A dart library to create Progress Bars in console.

A package for creating an awesome progress bar in console. Usage Options: total : Total number of steps desc : Simple text shown before the bar (optio

Oct 8, 2022

Hot restart for Dart console application with fast incremental compilation.

Hot restart for Dart console application with fast incremental compilation. Why do I need this? If your console application compiles too long before r

Oct 7, 2022

An online Dart editor with support for console, web, and Flutter apps

An online Dart editor with support for console, web, and Flutter apps

DartPad DartPad is a free, open-source online editor to help developers learn about Dart and Flutter. You can access it at dartpad.dev. What is it? Wh

Jan 4, 2023

Dart equivalent of console.count() in JavaScript

Dart equivalent of console.count() in JavaScript

fCount A Dart equivalent for console.count() in JavaScript. You can learn how it works on the web in the MDN docs Available on pub.dev 🚀 🚀 But why U

Jul 31, 2022

Console log package

Console log package

Console log package Usage Download ServerLog application for mac os, window and linux In the main.dart set logEnable = true for release mode Console.l

Sep 13, 2022

Biyi (比译) is a convenient translation and dictionary app written in dart / Flutter.

Biyi (比译) is a convenient translation and dictionary app written in dart / Flutter.

Biyi (比译) is a convenient translation and dictionary app written in dart / Flutter.

Jan 9, 2023

Biyi (比译) is a convenient translation and dictionary app written in dart / Flutter.

Biyi (比译) is a convenient translation and dictionary app written in dart / Flutter.

biyi_app Biyi is a convenient translation and dictionary app written in dart / Flutter. View document "Biyi" (比译) is the Chinese word for "Comparison

Jan 1, 2023

Flutter The lightest, easiest and most convenient route management!

Flutter The lightest, easiest and most convenient route management!

Language: English | 中文简体 nav_router nav_router is the simplest / lightweight / convenient routing management solution for flutter. It supports various

Jan 3, 2023

A convenient code generator for app styleguide, gallery, wireframes and/or storyboard.

A convenient code generator for app styleguide, gallery, wireframes and/or storyboard.

Framy A convenient code generator for app styleguide, gallery, wireframes and/or storyboard. 👉 Official documentation 👈 Packages In order to use Fra

Dec 19, 2022

A rich, convenient, easy-to-use flutter page transition package

A rich, convenient, easy-to-use flutter page transition package

flutter_page_transition A rich, convenient, easy-to-use flutter page transition package. README in Chinese Some Demos Getting Started Add this to your

Sep 27, 2022

Biyi - a convenient translation and dictionary app written in Flutter

Biyi - a convenient translation and dictionary app written in Flutter

biyi_app Biyi is a convenient translation and dictionary app written in Flutter.

Dec 28, 2022

Quiver is a set of utility libraries for Dart that makes using many Dart libraries easier and more convenient, or adds additional functionality.

Quiver is a set of utility libraries for Dart that makes using many Dart libraries easier and more convenient, or adds additional functionality.

Jan 2, 2023

Ruqe brings the convenient types and methods found in Rust into Dart, such as the Result, Option, pattern-matching, etc.

ruqe Ruqe brings the convenient types and methods found in Rust into Dart, such as the Result, Option, pattern-matching, etc. Additionally, the librar

Dec 28, 2022

The Flutter code generator for your assets, fonts, colors, … — Get rid of all String-based APIs.

The Flutter code generator for your assets, fonts, colors, … — Get rid of all String-based APIs.

The Flutter code generator for your assets, fonts, colors, … — Get rid of all String-based APIs. Inspired by SwiftGen. Motivation Using asset path str

Jan 6, 2023

It is too hard to build coherent and accessible themes with the right colors. This should help.

It is too hard to build coherent and accessible themes with the right colors. This should help.

Color Studio It is hard to choose colors. Most color pickers give you 16 million colors and ask you to pick one. So many options, in fact, that your c

Dec 22, 2022

It is too hard to build coherent and accessible themes with the right colors. This should help.

It is too hard to build coherent and accessible themes with the right colors. This should help.

Color Studio It is hard to choose colors. Most color pickers give you 16 million colors and ask you to pick one. So many options, in fact, that your c

Dec 22, 2022
Releases(1.0.0)
  • 1.0.0(Mar 2, 2022)

Owner
Kato Shinya
I'm actively developing applications using Java and Dart/Flutter. Also I'm particularly passionate about Dart/Flutter open source development.
Kato Shinya
Quiver is a set of utility libraries for Dart that makes using many Dart libraries easier and more convenient, or adds additional functionality.

Quiver is a set of utility libraries for Dart that makes using many Dart libraries easier and more convenient, or adds additional functionality.

Google 905 Jan 2, 2023
The Flutter code generator for your assets, fonts, colors, … — Get rid of all String-based APIs.

The Flutter code generator for your assets, fonts, colors, … — Get rid of all String-based APIs. Inspired by SwiftGen. Motivation Using asset path str

FlutterGen 1.1k Jan 6, 2023
A Flutter plugin that exposes Monet (Material You, Material 3) system colors on Android 12.

Monet Colors A Flutter plugin that exposes Monet (Material You, Material 3) system colors on Android 12. Returns null on unsupported platforms and lea

İhsan Işık 3 Aug 26, 2022
Enum extendable - Dart code generator. Generates enum extensions code.

Generates code for the extension on an enum. Overview Being able to add fields and methods to an enum. Let's say we have the following enum: enum Math

null 0 Jan 10, 2022
Console - Print.color() to console in any platform, more features will be added later.

palestine_console Part of PalestineDevelopers Print.color() to console in any platform, more features will be added later. Table Of Contents Features

Palestine Developers 2 Jan 13, 2022
Color-Converter - A minimalist application made with flutter to convert hexadecimal colors to RGB colors and vise-versa.

Color Converter A minimalist application made with flutter to convert hexadecimal colors to RGB colors and vise-versa for Flutter Create Competition.

Poojan Pandya 2 Sep 16, 2020
Receiving ozh's github-colors repository with latest commit of colors.json to Flutter's Color object.

Apply GitHub's languages colours into Flutter's Color object. Receiving ozh's github-colors repository with latest commit of colors.json to Flutter's

Cyrus Chan 1 Jun 6, 2022
Immutable value types, enum classes, and serialization.

Built Values for Dart Introduction Built Value provides: Immutable value types; EnumClass, classes that behave like enums; JSON serialization. Immutab

Google 816 Dec 23, 2022
Open-source, cross-platform, hassle-free file sharing with AES-256 encryption made with Flutter & Dart.

Odin âš¡ Open source easy file sharing for everyone. âš¡ Cross-platform hassle-free file sharing with AES-256 encryption made with Flutter & Dart. Getting

Odin 111 Dec 22, 2022
AES 256 GCM encryption algorithm in Dart

aes-256-gcm-dart AES 256 GCM encryption algorithm in Dart Use var text = 'SOME D

Swifty 8 Nov 11, 2022