diff --git a/clir/tools/functions.py b/clir/tools/functions.py index f058bc0..8356097 100644 --- a/clir/tools/functions.py +++ b/clir/tools/functions.py @@ -40,12 +40,12 @@ def choose_command(commands: dict = {}): def command_table(commands: dict = {}): - table = Table(show_lines=True, box=box.ROUNDED, style="#7D7C7C") + table = Table(show_lines=True, box=box.ROUNDED, style="grey46") - table.add_column("ID 📇", style="cyan", no_wrap=True) - table.add_column("Command 💻", style="cyan", no_wrap=True) + table.add_column("ID 📇", style="white bold", no_wrap=True) + table.add_column("Command 💻", style="green", no_wrap=True) table.add_column("Description 📕", style="magenta") - table.add_column("Tag 🏷️", style="green") + table.add_column("Tag 🏷️", style="cyan") for indx, command in enumerate(commands): desc_len = 50