Skip to content

Commit

Permalink
Make all colors use hex instead for further customization
Browse files Browse the repository at this point in the history
  • Loading branch information
ichirei committed Mar 1, 2024
1 parent ae5425e commit a6f697b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions ichirei.zsh-theme
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# Ichirei zsh Theme

# Left
PROMPT="%(?:%{$fg_bold[green]%}%1{➜%} :%{$fg_bold[red]%}%1{➜%} )"
PROMPT+='%{$fg_bold[yellow]%} %{%B%F{#0090ff}%}%c%{$reset_color%} $(git_prompt_info)'
PROMPT="%(?:%{%B%F{#BFEA7C}%}%1{➜%} :%{%B%F{#D04848}%}%1{➜%} )"
PROMPT+='%{%B%F{#FFF67E}%} %{%B%F{#0090FF}%}%c%{$reset_color%} $(git_prompt_info)'

# Right
RPROMPT="%{%B%F{#FDCEDF}%} %*%{$reset_color%}"

# Git Prompt Info
ZSH_THEME_GIT_PROMPT_PREFIX="at %{%B%F{#f6a192}%} "
ZSH_THEME_GIT_PROMPT_PREFIX="at %{%B%F{#F6A192}%} "
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%} "
ZSH_THEME_GIT_PROMPT_DIRTY="%{%F{#f6a192}%} %{$fg_bold[yellow]%}✗%{$reset_color%}"
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg_bold[green]%} ✔"
ZSH_THEME_GIT_PROMPT_DIRTY="%{%B%F{#FFF67E}%} "
ZSH_THEME_GIT_PROMPT_CLEAN="%{%B%F{#BFEA7C}%} ✔"

0 comments on commit a6f697b

Please sign in to comment.