update colors for new palettes

This commit is contained in:
m3philis
2025-03-02 22:05:42 +01:00
parent 17d92da760
commit e3ee353b4c

View File

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