You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* The function `print_with_color` can now take a color represented by an integer between 0 and 255 inclusive as its first argument ([#18473]).
155
+
For a number to color mapping please refer to [this chart](https://upload.wikimedia.org/wikipedia/en/1/15/Xterm_256color_chart.svg).
156
+
It is also possible to use numbers as colors in environment variables that customizes colors in the REPL.
157
+
For example, to get orange warning messages, simply set `ENV["JULIA_WARN_COLOR"] = 208`.
158
+
Please note that not all terminals support 256 colors.
159
+
160
+
* The function `print_with_color` no longer prints text in bold by default ([#18628]).
161
+
Instead, the function now take a keyword argument `bold::Bool` which determines whether to print in bold or not.
162
+
On some terminals, printing a color in non bold results in slightly darker colors being printed than when printing in bold.
163
+
Therefore, light versions of the colors are now supported.
164
+
For the available colors see the help entry on `print_with_color`.
165
+
166
+
* The default text style for REPL input and answers has been changed from bold to normal ([#11250]).
167
+
They can be changed back to bold by setting the environment variables `JULIA_INPUT_COLOR` and `JULIA_ANSWER_COLOR` to `"bold"`.
168
+
For example, one way of doing this is adding `ENV["JULIA_INPUT_COLOR"] = :bold` and `ENV["JULIA_ANSWER_COLOR"] = :bold` to the `.juliarc.jl` file.
169
+
See the [manual section on customizing colors](http://docs.julialang.org/en/latest/manual/interacting-with-julia/#customizing-colors) for more information.
170
+
171
+
* The default color for info messages has been changed from blue to cyan, and for warning messages from red to yellow.
172
+
This can be changed back to the original colors by setting the environment variables `JULIA_INFO_COLOR` to `"blue"` and `JULIA_WARN_COLOR` to `"red"`.
180
173
181
174
* Iteration utilities that wrap iterators and return other iterators (`enumerate`, `zip`, `rest`,
182
175
`countfrom`, `take`, `drop`, `cycle`, `repeated`, `product`, `flatten`, `partition`) have been
0 commit comments