On Thursday, October 30, 2014 1:46:11 PM UTC-4, Steven G. Johnson wrote: > > > > On Thursday, October 30, 2014 12:46:55 PM UTC-4, cdm wrote: >> >> for example, suppose the user was >> interested in changing the color >> schemes in the REPL so that >> the "julia>" prompt was say >> yellow instead of the green from >> the three dots logo, and user >> entry was in the same purple >> from the three dots logo, etc. >> > > I don't think this is easily customizable right now; it doesn't seem to be > documented at all. >
Actually, there is a much easier way to customize it. In your juliarc file (~/.juliarc.jl), you can do e.g.: Base.active_repl.prompt_color = Base.text_colors[:cyan] to change the prompt color. Similarly for the other fields of active_repl (e.g. input_color, answer_color, shell_color, and help_color). You also need to set Base.active_repl.envcolors = false in order to override the input_color and the answer_color.
