Hi, after looking at a few threads I made it possible to set the correct colours to the bash terminal in Freebsd. I am using the Windows terminal and the colours were correctly displayed:
Here is the webpage for the pallete and the idea: https://github.com/dracula/dracula-theme
If there is some improvement let me know!
Here is the webpage for the pallete and the idea: https://github.com/dracula/dracula-theme
alias j=jobs
alias m="$PAGER"
alias ll='ls -laFoG'
alias l='ls -lG'
alias g='egrep -i'
# Customized PS1 with Dracula theme
export PS1="\[\033[0;32m\][\[\033[0m\]\[\033[0;32m\]\u@\h\[\033[0m\]\[\033[0;32m\]]\[\033[0m\]:\[\033[0;95m\][\[\033[0m\]\[\033[0;95m\]\w\[\033[0m\]\[\033[0;95m\]]\[\033[0m\]\\$ "
export CLICOLOR=1
# Dracula theme colors for ls on FreeBSD
LSCOLORS=ExFxBxDxCxegedabagacad
# Breakdown:
# E: Directory
# x: Regular file
# F: Symbolic link
# B: Block special file
# xD: Character special file
# C: Executable file
# x: Regular file
# e: Non-existent file
# g: Group writable
# e: Non-existent file
# d: Directory
# a: Other writable
# b: Sticky bit
# a: Other writable
# g: Group ID set
# a: Other writable
# c: File with capability
# a: Other writable
# d: Directory
# a: Other writable
alias m="$PAGER"
alias ll='ls -laFoG'
alias l='ls -lG'
alias g='egrep -i'
# Customized PS1 with Dracula theme
export PS1="\[\033[0;32m\][\[\033[0m\]\[\033[0;32m\]\u@\h\[\033[0m\]\[\033[0;32m\]]\[\033[0m\]:\[\033[0;95m\][\[\033[0m\]\[\033[0;95m\]\w\[\033[0m\]\[\033[0;95m\]]\[\033[0m\]\\$ "
export CLICOLOR=1
# Dracula theme colors for ls on FreeBSD
LSCOLORS=ExFxBxDxCxegedabagacad
# Breakdown:
# E: Directory
# x: Regular file
# F: Symbolic link
# B: Block special file
# xD: Character special file
# C: Executable file
# x: Regular file
# e: Non-existent file
# g: Group writable
# e: Non-existent file
# d: Directory
# a: Other writable
# b: Sticky bit
# a: Other writable
# g: Group ID set
# a: Other writable
# c: File with capability
# a: Other writable
# d: Directory
# a: Other writable
If there is some improvement let me know!