Skip to content

Commit

Permalink
Make the ASCII banner match the website banner better.
Browse files Browse the repository at this point in the history
We can revert this if people don't like it :-)
  • Loading branch information
StefanKarpinski committed Jul 5, 2011
1 parent 5b1e7c9 commit 160d01a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions j/client.j
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ L" _

begin
local tx = "\033[37m" # text
local jl = "\033[37m" # julia
local d1 = "\033[34m" # first dot
local jl = "\033[34m" # julia
local d1 = "\033[36m" # first dot
local d2 = "\033[31m" # second dot
local d3 = "\033[32m" # third dot
local d4 = "\033[35m" # fourth dot
Expand Down

2 comments on commit 160d01a

@JeffBezanson
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please don't do commits like this.

I don't want to use too much color here, since terminal colors do not look that good and, even worse, we can't control what they look like on any given machine. With "julia" in white, the dots just add little splashes of color, but making it a large area of blue makes it clashy. In fact this logo uses every terminal color except yellow. It looks like we're just trying to use every color. The web design is a different case since there are many more degrees of freedom there.

@StefanKarpinski
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hence the comment in the commit message — and the separation of this commit from it's parent. It's trivial to revert it.

Please sign in to comment.