diff --git a/README.md b/README.md index 2997e36..60df89b 100644 --- a/README.md +++ b/README.md @@ -53,3 +53,4 @@ Colors use ansi code to print colors ### ANSI 256 color text - color256 + > **more info**: [link](https://jonasjacek.github.io/colors/) diff --git a/example.dart b/example.dart index 5b589fb..e44e0eb 100644 --- a/example.dart +++ b/example.dart @@ -6,7 +6,7 @@ * */ -import 'lib/colors.dart' show Colors; +import 'package:colors_terminal/colors_terminal.dart' show Colors; void main(List args) { var color = Colors(); diff --git a/lib/colors.dart b/lib/colors_terminal.dart similarity index 99% rename from lib/colors.dart rename to lib/colors_terminal.dart index 644e3bc..7e54359 100644 --- a/lib/colors.dart +++ b/lib/colors_terminal.dart @@ -6,6 +6,8 @@ * */ +library colors_terminal; + /// colors contructor class class Colors { // * 8bits colors diff --git a/pubspec.yaml b/pubspec.yaml index 71740e0..496f06a 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ -name: colors +name: colors_terminal description: A starting point for Dart libraries or applications. -# version: 1.0.0 -# homepage: https://www.example.com +version: 1.0.0 +homepage: https://github.com/crewdevio/colors environment: sdk: '>=2.8.1 <3.0.0'