diff --git a/platformio/commands/init.py b/platformio/commands/init.py index 9d9abcf3..6136780a 100644 --- a/platformio/commands/init.py +++ b/platformio/commands/init.py @@ -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" % diff --git a/platformio/maintenance.py b/platformio/maintenance.py index ca6d5b91..d7d620d5 100644 --- a/platformio/maintenance.py +++ b/platformio/maintenance.py @@ -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):