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" %

View File

@ -92,11 +92,11 @@ def after_upgrade(ctx):
"- %s us on Twitter to stay up-to-date "
"on the latest project news > %s" %
(click.style("follow", fg="cyan"),
click.style("https://twitter.com/platformiotool", fg="blue"))
click.style("https://twitter.com/platformiotool", fg="cyan"))
)
click.echo("- %s us a star on GitHub > %s" % (
click.style("give", fg="cyan"),
click.style("https://github.com/ivankravets/platformio", fg="blue")
click.style("https://github.com/ivankravets/platformio", fg="cyan")
))
click.secho("Thanks a lot!\n", fg="green", blink=True)
@ -138,10 +138,10 @@ def check_platformio_upgrade():
click.secho("There is a new version %s of PlatformIO available.\n"
"Please upgrade it via " % latest_version,
fg="yellow", nl=False)
click.secho("`platformio upgrade`", fg="cyan", nl=False)
click.secho("platformio upgrade", fg="cyan", nl=False)
click.secho(" command.\nChanges: ", fg="yellow", nl=False)
click.secho("http://docs.platformio.ikravets.com/en/latest/history.html\n",
fg="blue")
fg="cyan")
def check_internal_updates(ctx, what):