diff --git a/home-manager/common/software/cli/starship.nix b/home-manager/common/software/cli/starship.nix
index 24915255..336ac0f4 100644
--- a/home-manager/common/software/cli/starship.nix
+++ b/home-manager/common/software/cli/starship.nix
@@ -12,8 +12,8 @@ let
   errorFG     = "#${config.lib.stylix.colors.base00}";
   timeFG      = "#${config.lib.stylix.colors.base0C}";
 
-  blackColor     = "#${config.lib.stylix.colors.base00}";
-  whiteColor     = "#${config.lib.stylix.colors.base06}";
+  blackColor  = "#${config.lib.stylix.colors.base00}";
+  whiteColor  = "#${config.lib.stylix.colors.base06}";
 in 
   {
   programs.starship = {
@@ -43,15 +43,15 @@ in
 
       username = {
         show_always = true;
-        style_user = "fg:${usernameFG} bg:${usernameBG}";
-        style_root = "fg:${usernameFG} bg:${usernameBG}";
+        style_user = "fg:${blackColor} bg:${usernameBG}";
+        style_root = "fg:${blackColor} bg:${usernameBG}";
         format = "[$user]($style)";
         disabled = false;
       };
 
       hostname = {
         ssh_only = true;
-        style = "fg:${usernameFG} bg:${usernameBG}";
+        style = "fg:${blackColor} bg:${usernameBG}";
         format = "[ $hostname ]($style)";
         disabled = false;
       };
@@ -66,11 +66,11 @@ in
         heuristic = true;
         symbol = " ";
         format = "[$symbol]($style)";
-        style = "fg:${statusFG} bg:${statusBG}";
+        style = "fg:${blackColor} bg:${statusBG}";
       };
  
       directory = {
-        style = "fg:${directoryFG} bg:${directoryBG}";
+        style = "fg:${blackColor} bg:${directoryBG}";
         format = "[ $path ]($style)";
         truncate_to_repo = true;
         truncation_length = 2;
@@ -85,17 +85,17 @@ in
 
       git_branch = {
         symbol = "";
-        style = "fg:${statusFG} bg:${statusBG}";
+        style = "fg:${blackColor} bg:${statusBG}";
         format = "[ $symbol $branch ]($style)";
       };
 
       git_status = {
-        style = "fg:${statusFG} bg:${statusBG}";
+        style = "fg:${blackColor} bg:${statusBG}";
         format = "[$all_status$ahead_behind ]($style)";
       };
 
       status = {
-        style = "fg:${errorFG} bg:${errorBG}";
+        style = "fg:${blackColor} bg:${errorBG}";
         format = "[ $status]($style)";
         disabled = false;
       };
@@ -103,7 +103,7 @@ in
       rust = {
         disabled = false;
         format = "[ via $symbol($version )]($style)";
-        style = "fg:${statusFG} bg:${statusBG}";
+        style = "fg:${blackColor} bg:${statusBG}";
       };
       
       time = {