You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@whimsical.apache.org by ru...@apache.org on 2019/11/27 13:47:09 UTC

[whimsy] branch master updated: pick a color that also works well in dark mode

This is an automated email from the ASF dual-hosted git repository.

rubys pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git


The following commit(s) were added to refs/heads/master by this push:
     new 7831cb2  pick a color that also works well in dark mode
7831cb2 is described below

commit 7831cb23b84e6827d6f85c5244c2e4aae6051673
Author: Sam Ruby <ru...@intertwingly.net>
AuthorDate: Wed Nov 27 08:46:41 2019 -0500

    pick a color that also works well in dark mode
---
 config/setupmymac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/config/setupmymac b/config/setupmymac
index 5919d45..48ae8a1 100755
--- a/config/setupmymac
+++ b/config/setupmymac
@@ -36,7 +36,7 @@ $brew_updated = false
 # output a header line, in color if available
 def color(line)
   if STDOUT.isatty and ENV['TERM'].to_s.include? 'color'
-    puts "\n\u001b[34;1m#{line}\u001b[0m"
+    puts "\n\u001b[35;1m#{line}\u001b[0m"
   else
     puts "\n" + line
   end