Skip to content

Commit 68f4957

Browse files
committed
Updated --color option help text
1 parent a62c84c commit 68f4957

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ exporting icons:
6565
--scale SCALE scaling factor between 0 and 1, or 'auto' for
6666
automatic scaling (default: auto); be careful, as
6767
setting it may lead to icons being cropped
68-
--color COLOR HTML color code or name (default: black)
68+
--color COLOR color name or hex value (default: black)
6969
--filename FILENAME name of the output file (without '.png' extension);
7070
it's used as a prefix if multiple icons are exported
7171
--keep_prefix do not remove common icon prefix (i.e. 'fa-arrow-

icon_font_to_png/command_line.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def run(arguments):
6161
'--color',
6262
type=str,
6363
default='black',
64-
help="HTML color code or name (default: black)"
64+
help="color name or hex value (default: black)"
6565
)
6666
exp_group.add_argument(
6767
'--filename',

icon_font_to_png/icon_font.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def export_icon(self, icon, size, color='black', scale='auto',
8686
:param icon: valid icon name
8787
:param filename: name of the output file
8888
:param size: icon size in pixels
89-
:param color: HTML color code or name
89+
:param color: color name or hex value
9090
:param scale: scaling factor between 0 and 1,
9191
or 'auto' for automatic scaling
9292
:param export_dir: path to export directory

0 commit comments

Comments
 (0)