diff --git a/starship.toml b/starship.toml index 9e2302d..fd87748 100644 --- a/starship.toml +++ b/starship.toml @@ -1,13 +1,13 @@ format = """ -[](color_user)\ +[](color_user_bg)\ $os\ $username\ -[](fg:color_user bg:color_directory)\ +[](fg:color_user_bg bg:color_directory_bg)\ $directory\ -[](fg:color_directory bg:color_git)\ +[](fg:color_directory_bg bg:color_git_bg)\ $git_branch\ $git_status\ -[](fg:color_git bg:color_code)\ +[](fg:color_git_bg bg:color_code_bg)\ $c\ $elixir\ $elm\ @@ -21,40 +21,49 @@ $nim\ $python\ $rust\ $scala\ -[](fg:color_code bg:color_time)\ +[](fg:color_code_bg bg:color_time_bg)\ $time\ -[ ](color_time)\ +[ ](color_time_bg)\ $line_break$character """ -palette = 'bisexual' +palette = 'lesbian_pastel' [palettes.lesbian_pastel] -color_user = '#B63520' -color_directory = '#E69070' -color_git = '#F5F5F5' -color_code = '#C07293' -color_time = '#861848' -color_fg_git = '#666666' -color_fg_user = '#FFFFFF' +color_user_fg = '#FFFFFF' +color_user_bg = '#B63520' +color_directory_fg = '#FFFFFF' +color_directory_bg = '#E69070' +color_git_fg = '#666666' +color_git_bg = '#F5F5F5' +color_code_fg = '#FFFFFF' +color_code_bg = '#C07293' +color_time_fg = '#FFFFFF' +color_time_bg = '#861848' [palettes.bisexual] -color_user = '#D60270' -color_directory = '#D60270' -color_git = '#9B4F96' -color_code = '#0038A8' -color_time = '#0038A8' -color_fg_git = '#FFFFFF' -color_fg_user = '#FFFFFF' +color_user_fg = '#FFFFFF' +color_user_bg = '#D60270' +color_directory_fg = '#FFFFFF' +color_directory_bg = '#D60270' +color_git_fg = '#FFFFFF' +color_git_bg = '#9B4F96' +color_code_fg = '#FFFFFF' +color_code_bg = '#0038A8' +color_time_fg = '#FFFFFF' +color_time_bg = '#0038A8' [palettes.pansexual] -color_user = '#FFFFFF' -color_directory = '#FCBF00' -color_git = '#009FE3' -color_code = '#E50051' -color_time = '#340C46' -color_fg_git = '#FFFFFF' -color_fg_user = '#666666' +color_user_fg = '#666666' +color_user_bg = '#FFFFFF' +color_directory_fg = '#666666' +color_directory_bg = '#FCBF00' +color_git_fg = '#FFFFFF' +color_git_bg = '#009FE3' +color_code_fg = '#FFFFFF' +color_code_bg = '#E50051' +color_time_fg = '#FFFFFF' +color_time_bg = '#340C46' # Disable the blank line at the start of the prompt # add_newline = false @@ -63,15 +72,15 @@ color_fg_user = '#666666' # and use the os module below [username] show_always = true -style_user = "fg:color_fg_user bg:color_user" -style_root = "fg:color_fg_user bg:color_user" +style_user = "fg:color_user_fg bg:color_user_bg" +style_root = "fg:color_user_fg bg:color_user_bg" format = '[ $user ]($style)' disabled = false # An alternative to the username module which displays a symbol that # represents the current operating system [os] -style = "fg:color_fg_user bg:color_user" +style = "fg:color_user_fg bg:color_user_bg" disabled = false # Disabled by default [os.symbols] @@ -79,7 +88,7 @@ Macos = "󰀵" Arch = "󰣇" [directory] -style = "bg:color_directory" +style = "fg:color_directory_fg bg:color_directory_bg" format = "[ $path ]($style)" truncation_length = 3 truncation_symbol = "…/" @@ -99,26 +108,26 @@ truncation_symbol = "…/" [git_branch] symbol = "" -style = "fg:color_fg_git bg:color_git" +style = "fg:color_git_fg bg:color_git_bg" format = '[ $symbol $branch ]($style)' [git_status] -style = "fg:color_fg_git bg:color_git" +style = "fg:color_git_fg bg:color_git_bg" format = '[$all_status$ahead_behind ]($style)' [golang] symbol = "" -style = "bg:color_code" +style = "fg:color_code_fg bg:color_code_bg" format = '[ $symbol ($version) ]($style)' [python] symbol = "" -style = "bg:color_code" +style = "fg:color_code_fg bg:color_code_bg" format = '[ $symbol ($virtualenv)($version) ]($style)' pyenv_version_name = true [time] disabled = false time_format = "%R" # Hour:Minute Format -style = "bg:color_time" +style = "fg:color_time_fg bg:color_time_bg" format = '[ ♥ $time ]($style)'