From 55dd06584cd080c8ef7430e23935f40a45c9eaaa Mon Sep 17 00:00:00 2001 From: Aleksandr Tcitlionok <803797+terghalin@users.noreply.github.com> Date: Thu, 5 Dec 2024 07:47:30 +0000 Subject: [PATCH] fix(pseudo): color --- app/extras/pseudographic.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/extras/pseudographic.py b/app/extras/pseudographic.py index a47ecdd..0caff51 100644 --- a/app/extras/pseudographic.py +++ b/app/extras/pseudographic.py @@ -33,7 +33,7 @@ def display_metal_nodes(): table = Table(title="🖥️ Metal Nodes", style="bold green") table.add_column("ID", justify="right", style="cyan") table.add_column("Name", style="magenta") - table.add_column("Location", style="blue") + table.add_column("Location", style="white") table.add_column("Vendor", style="green") table.add_column("CPU", justify="right", style="yellow") table.add_column("Memory (GB)", justify="right", style="cyan") @@ -58,7 +58,7 @@ def display_virtual_machines(): table = Table(title="💻 Virtual Machines", style="bold blue") table.add_column("ID", justify="right", style="cyan") table.add_column("Name", style="magenta") - table.add_column("Location", style="blue") + table.add_column("Location", style="white") table.add_column("CPU", justify="right", style="yellow") table.add_column("Memory (GB)", justify="right", style="cyan") table.add_column("Storage", style="magenta") @@ -84,7 +84,7 @@ def display_kubernetes_nodes(): v1 = client.CoreV1Api() table = Table(title="📦 Kubernetes Nodes", style="bold yellow") - table.add_column("Node Name", style="blue") + table.add_column("Node Name", style="white") table.add_column("CPU", justify="right", style="yellow") table.add_column("Memory (MiB)", justify="right", style="cyan") table.add_column("Pods Allocatable", justify="right", style="green") @@ -106,7 +106,7 @@ def display_namespace_usage(): metrics_client = client.CustomObjectsApi() table = Table(title="📊 Namespace Resource Usage", style="bold magenta") - table.add_column("Namespace", style="blue") + table.add_column("Namespace", style="white") table.add_column("CPU (Cores)", justify="right", style="yellow") table.add_column("Memory (MiB)", justify="right", style="cyan")