diff --git a/starship.toml b/starship.toml index 56649e1..9e2302d 100644 --- a/starship.toml +++ b/starship.toml @@ -27,7 +27,7 @@ $time\ $line_break$character """ -palette = 'lesbian_pastel' +palette = 'bisexual' [palettes.lesbian_pastel] color_user = '#B63520' @@ -35,15 +35,17 @@ color_directory = '#E69070' color_git = '#F5F5F5' color_code = '#C07293' color_time = '#861848' -color_fg = '#666666' +color_fg_git = '#666666' +color_fg_user = '#FFFFFF' [palettes.bisexual] -color_user = '#D60260' +color_user = '#D60270' color_directory = '#D60270' color_git = '#9B4F96' color_code = '#0038A8' color_time = '#0038A8' -color_fg = '' +color_fg_git = '#FFFFFF' +color_fg_user = '#FFFFFF' [palettes.pansexual] color_user = '#FFFFFF' @@ -51,7 +53,8 @@ color_directory = '#FCBF00' color_git = '#009FE3' color_code = '#E50051' color_time = '#340C46' -color_fg = '' +color_fg_git = '#FFFFFF' +color_fg_user = '#666666' # Disable the blank line at the start of the prompt # add_newline = false @@ -60,15 +63,15 @@ color_fg = '' # and use the os module below [username] show_always = true -style_user = "bg:color_user" -style_root = "bg:color_user" +style_user = "fg:color_fg_user bg:color_user" +style_root = "fg:color_fg_user bg:color_user" format = '[ $user ]($style)' disabled = false # An alternative to the username module which displays a symbol that # represents the current operating system [os] -style = "bg:color_user" +style = "fg:color_fg_user bg:color_user" disabled = false # Disabled by default [os.symbols] @@ -96,11 +99,11 @@ truncation_symbol = "…/" [git_branch] symbol = "" -style = "fg:color_fg bg:color_git" +style = "fg:color_fg_git bg:color_git" format = '[ $symbol $branch ]($style)' [git_status] -style = "fg:color_fg bg:color_git" +style = "fg:color_fg_git bg:color_git" format = '[$all_status$ahead_behind ]($style)' [golang]