Skip to content

Commit dd0a4ab

Browse files
committed
Default --style to "monokai"
419ca85
1 parent 07aaefa commit dd0a4ab

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1314,7 +1314,7 @@ Changelog
13141314
*You can click a version name to see a diff with the previous one.*
13151315
13161316
* `1.0.0-dev`_
1317-
* The default color ``--style`` is now ``fruity`` (was ``solarized``).
1317+
* The default color ``--style`` is now ``monokai`` (was ``solarized``).
13181318
* Changed the default JSON ``Content-Type``
13191319
from ``application/json; charset=utf-8`` to ``application/json``
13201320
as UTF-8 is the default encoding for JSON.

httpie.png

-1.25 KB
Loading

httpie/output/formatters/colors.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# great and fruity seems to give the best result there.
1515
AVAILABLE_STYLES = set(pygments.styles.STYLE_MAP.keys())
1616
AVAILABLE_STYLES.add('solarized')
17-
DEFAULT_STYLE = 'fruity'
17+
DEFAULT_STYLE = 'monokai'
1818

1919

2020
class ColorFormatter(FormatterPlugin):

0 commit comments

Comments
 (0)