Skip to content

Commit

Permalink
Improve colors
Browse files Browse the repository at this point in the history
  • Loading branch information
nakajima committed Mar 23, 2016
1 parent 082845f commit 9593f59
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/branch-status.coffee
Expand Up @@ -125,13 +125,13 @@ pollStatus = ->
# than just DOM traversal but yolo.
branchElement = $('.git-branch')
if state is "success"
branchElement.css color: "green"
branchElement.css color: "#0AB254"
else if state is "pending"
branchElement.css color: "yellow"
branchElement.css color: "#FFE754"
else if state is "error" or state is "failure"
branchElement.css color: "red"
branchElement.css color: "#FF2F1D"
else if state
branchElement.css color: "pink"
branchElement.css color: "#AA8A69"
console.error state, message
else
branchElement.css color: "inherit"
Expand Down

0 comments on commit 9593f59

Please sign in to comment.