Replace "dark blue" with "cyan" colour / Resolve #33

This commit is contained in:
Ivan Kravets
2014-12-10 21:40:39 +02:00
parent 4f3c4e0901
commit 2b2ceb60cc
2 changed files with 6 additions and 6 deletions

View File

@@ -25,7 +25,7 @@ def cli(project_dir):
if project_dir == getcwd():
click.secho("The current working directory", fg="yellow", nl=False)
click.secho(" %s " % project_dir, fg="blue", nl=False)
click.secho(" %s " % project_dir, fg="cyan", nl=False)
click.secho(
"will be used for the new project.\n"
"You can specify another project directory via\n"
@@ -34,7 +34,7 @@ def cli(project_dir):
)
click.echo("The next files/directories will be created in %s" %
click.style(project_dir, fg="blue"))
click.style(project_dir, fg="cyan"))
click.echo("%s - Project Configuration File" %
click.style("platformio.ini", fg="cyan"))
click.echo("%s - a source directory. Put your source code here" %