diff --git a/ibis/expr/types/pretty.py b/ibis/expr/types/pretty.py index ef4ddc7fb057..d39c97163453 100644 --- a/ibis/expr/types/pretty.py +++ b/ibis/expr/types/pretty.py @@ -188,7 +188,7 @@ def format_dtype(dtype): strtyp = str(dtype) if len(strtyp) > max_string: strtyp = strtyp[: max_string - 1] + "…" - return Text.styled(strtyp, "bold blue") + return Text.styled(strtyp, "dim") def to_rich_table(table, console_width=None):