migrate
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2026 miker
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
|
||||
associated documentation files (the "Software"), to deal in the Software without restriction, including
|
||||
without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
|
||||
following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial
|
||||
portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
|
||||
LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
|
||||
EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
||||
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
||||
USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
@@ -0,0 +1,2 @@
|
||||
# dotfiles
|
||||
|
||||
Executable
+160
@@ -0,0 +1,160 @@
|
||||
#!/bin/sh
|
||||
set -e # Exit immediately if a command exits with a non-zero status
|
||||
|
||||
# 1. OS DETECTION & VARIABLES
|
||||
CURRENT_USER=$(whoami)
|
||||
USER_HOME="/home/$CURRENT_USER"
|
||||
|
||||
if [ -f /etc/os-release ]; then
|
||||
. /etc/os-release
|
||||
DISTRO_NAME=$ID
|
||||
else
|
||||
echo "Cannot determine OS distribution. /etc/os-release missing."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "Starting deployment script for user: $CURRENT_USER on $DISTRO_NAME"
|
||||
|
||||
# 2. SHARED TASKS (Runs on both systems)
|
||||
echo "-----------------------------------------------"
|
||||
echo "Resetting SSH directory permissions..."
|
||||
echo "-----------------------------------------------"
|
||||
if [ -d "$USER_HOME/.ssh" ]; then
|
||||
chmod 700 "$USER_HOME/.ssh"
|
||||
if ls "$USER_HOME/.ssh"/*.pub > /dev/null 2>&1; then
|
||||
chmod 644 "$USER_HOME/.ssh"/*.pub
|
||||
fi
|
||||
if [ -f "$USER_HOME/.ssh/id_rsa" ]; then
|
||||
chmod 600 "$USER_HOME/.ssh/id_rsa"
|
||||
fi
|
||||
fi
|
||||
|
||||
# 3. DISTRO SPECIFIC APPLICATIONS
|
||||
if [ "$DISTRO_NAME" = "ubuntu" ] || [ "$DISTRO_NAME" = "debian" ]; then
|
||||
echo "-----------------------------------------------"
|
||||
echo "Running Ubuntu/Debian Setup Tasks"
|
||||
echo "-----------------------------------------------"
|
||||
|
||||
# Prerequisite updates
|
||||
sudo apt update && sudo apt install -y curl wget git gpg software-properties-common ca-certificates
|
||||
|
||||
# AirVPN Eddie repository
|
||||
curl -fsSL https://eddie.website/repository/keys/eddie_maintainer_gpg.key | sudo tee /usr/share/keyrings/eddie.website-keyring.asc > /dev/null
|
||||
echo "deb [signed-by=/usr/share/keyrings/eddie.website-keyring.asc] http://eddie.website/repository/apt stable main" | sudo tee /etc/apt/sources.list.d/eddie.website.list
|
||||
|
||||
# Eza repository
|
||||
sudo mkdir -p /etc/apt/keyrings
|
||||
wget -qO- https://raw.githubusercontent.com/eza-community/eza/main/deb.asc | sudo gpg --dearmor -o /etc/apt/keyrings/gierens.gpg
|
||||
echo "deb [signed-by=/etc/apt/keyrings/gierens.gpg] http://deb.gierens.de stable main" | sudo tee /etc/apt/sources.list.d/gierens.list
|
||||
sudo chmod 644 /etc/apt/keyrings/gierens.gpg /etc/apt/sources.list.d/gierens.list
|
||||
|
||||
# Fastfetch PPA
|
||||
sudo add-apt-repository -y ppa:zhangsongcui3371/fastfetch
|
||||
|
||||
# Refresh and Bulk Install Native APT Apps
|
||||
sudo apt update
|
||||
sudo apt install -y \
|
||||
eddie-ui eza fastfetch bat zsh build-essential autoconf make \
|
||||
libssl-dev htop blender vlc filezilla inotify-tools fzf \
|
||||
docker-compose ansible zsh-autosuggestions zsh-syntax-highlighting flatpak
|
||||
|
||||
# Snap fallback for Alacritty
|
||||
sudo apt install -y snapd
|
||||
sudo snap install alacritty --classic
|
||||
|
||||
# Cleanup
|
||||
sudo apt upgrade -y && sudo apt autoremove -y && sudo apt autoclean -y
|
||||
|
||||
elif [ "$DISTRO_NAME" = "arch" ]; then
|
||||
echo "-----------------------------------------------"
|
||||
echo "Running Arch Linux Setup Tasks"
|
||||
echo "-----------------------------------------------"
|
||||
|
||||
sudo pacman -Syu --noconfirm
|
||||
|
||||
# Native Arch Equivalents
|
||||
sudo pacman -S --noconfirm --needed \
|
||||
curl wget git bat zsh base-devel openssl ca-certificates \
|
||||
htop blender vlc filezilla inotify-tools eza fzf docker-compose \
|
||||
ansible zsh-autosuggestions zsh-syntax-highlighting flatpak fastfetch alacritty
|
||||
|
||||
# Automated Yay Installation
|
||||
if ! command -v yay >/dev/null 2>&1; then
|
||||
echo "-----------------------------------------------"
|
||||
echo "Installing YAY (AUR Helper)..."
|
||||
echo "-----------------------------------------------"
|
||||
|
||||
YAY_BUILD_DIR=$(mktemp -d)
|
||||
git clone https://aur.archlinux.org/yay-bin.git "$YAY_BUILD_DIR"
|
||||
|
||||
# Build and install as user
|
||||
(cd "$YAY_BUILD_DIR" && makepkg -si --noconfirm)
|
||||
rm -rf "$YAY_BUILD_DIR"
|
||||
else
|
||||
echo "yay is already installed. Skipping..."
|
||||
fi
|
||||
|
||||
# Use Yay for AirVPN Eddie
|
||||
echo "-----------------------------------------------"
|
||||
echo "Installing AirVPN Eddie via AUR..."
|
||||
echo "-----------------------------------------------"
|
||||
yay -S --noconfirm eddie-ui
|
||||
fi
|
||||
|
||||
# 4. UNIVERSAL INDEPENDENT BINARIES
|
||||
echo "-----------------------------------------------"
|
||||
echo "Installing Zoxide..."
|
||||
echo "-----------------------------------------------"
|
||||
curl -sSfL https://raw.githubusercontent.com/ajeetdsouza/zoxide/main/install.sh | sh
|
||||
|
||||
# Configure shell scripts safely
|
||||
for rc in ".zshrc" ".bashrc"; do
|
||||
if [ -f "$USER_HOME/$rc" ]; then
|
||||
shell_name=$(echo "$rc" | sed 's/\.//;s/rc//')
|
||||
if ! grep -q "zoxide init $shell_name" "$USER_HOME/$rc"; then
|
||||
echo "eval \"\$(zoxide init $shell_name)\"" >> "$USER_HOME/$rc"
|
||||
fi
|
||||
fi
|
||||
done
|
||||
|
||||
echo "-----------------------------------------------"
|
||||
echo "Installing Starship..."
|
||||
echo "-----------------------------------------------"
|
||||
curl -sS https://starship.rs/install.sh | sh -s -- -y
|
||||
|
||||
echo "-----------------------------------------------"
|
||||
echo "Installing Powerlevel10k..."
|
||||
echo "-----------------------------------------------"
|
||||
if [ ! -d "$USER_HOME/powerlevel10k" ]; then
|
||||
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git "$USER_HOME/powerlevel10k"
|
||||
fi
|
||||
|
||||
if [ -f "$USER_HOME/.zshrc" ]; then
|
||||
if ! grep -q "powerlevel10k.zsh-theme" "$USER_HOME/.zshrc"; then
|
||||
echo "source ~/powerlevel10k/powerlevel10k.zsh-theme" >> "$USER_HOME/.zshrc"
|
||||
fi
|
||||
fi
|
||||
|
||||
# 5. FLATPAK APPLICATIONS
|
||||
echo "-----------------------------------------------"
|
||||
echo "Installing Flatpak Applications..."
|
||||
echo "-----------------------------------------------"
|
||||
flatpak remote-add --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo
|
||||
|
||||
# Appending '|| true' ensures the script finishes even if Flatpak encounters minor warnings
|
||||
flatpak install -y flathub \
|
||||
com.obsproject.Studio \
|
||||
org.tenacityaudio.Tenacity \
|
||||
md.obsidian.Obsidian \
|
||||
org.gimp.GIMP \
|
||||
com.github.zadam.trilium \
|
||||
com.spotify.Client \
|
||||
io.github.shiftey.Desktop \
|
||||
com.brave.Browser \
|
||||
com.visualstudio.code \
|
||||
org.qbittorrent.qBittorrent \
|
||||
org.wezfurlong.wezterm || true
|
||||
|
||||
echo "-----------------------------------------------"
|
||||
echo "Deployment Complete! Please restart your terminal."
|
||||
echo "-----------------------------------------------"
|
||||
@@ -0,0 +1,93 @@
|
||||
# ~/.bashrc: executed by bash(1) for non-login shells.
|
||||
|
||||
#EZA
|
||||
alias ls='eza --all --long --group --group-directories-first --icons --header --time-style long-iso'
|
||||
alias l='eza -lahF --color=auto --icons --sort=size --group-directories-first'
|
||||
alias lss='eza -hF --color=auto --icons --sort=size --group-directories-first'
|
||||
alias la='eza -ahF --color=auto --icons --sort=size --group-directories-first'
|
||||
alias lst='eza -lahT --color=auto --icons --sort=size --group-directories-first'
|
||||
alias lt='eza -aT --icons --group-directories-first --color=auto --sort=size'
|
||||
|
||||
# FZF
|
||||
alias finddoc='fzf --style full --preview="bat --color=always {}"'
|
||||
|
||||
# Clear the screen
|
||||
alias c='clear'
|
||||
|
||||
## a quick way to get out of current directory ##
|
||||
alias ..='cd ..'
|
||||
alias ...='cd ../../../'
|
||||
alias ....='cd ../../../../'
|
||||
alias .....='cd ../../../../'
|
||||
alias .4='cd ../../../../'
|
||||
alias .5='cd ../../../../..'
|
||||
|
||||
## Colorize the grep command output for ease of use (good for log files)##
|
||||
alias grep='grep --color=auto'
|
||||
alias egrep='egrep --color=auto'
|
||||
alias fgrep='fgrep --color=auto'
|
||||
|
||||
#Grabs the disk usage in the current directory
|
||||
alias used='du -sch .[!.]* * 2>/dev/null | sort -h'
|
||||
|
||||
#Gets the total disk usage on your machine
|
||||
alias totalusage='df -hl --total | grep total'
|
||||
|
||||
#Shows the individual partition usages without the temporary memory values
|
||||
alias partusage='df -hlT --exclude-type=tmpfs --exclude-type=devtmpfs'
|
||||
|
||||
#Gives you what is using the most space. Both directories and files. Varies on current directory
|
||||
alias most='du -hsx * | sort -rh | head -10'
|
||||
|
||||
# View only mounted Drives
|
||||
alias mnt="mount | awk -F' ' '{ printf \"%s\t%s\n\",\$1,\$3; }' | column -t | egrep ^/dev/ | sort"
|
||||
|
||||
# handy short cuts #
|
||||
alias h='history'
|
||||
alias j='jobs -l'
|
||||
alias path='echo -e ${PATH//:/\\n}'
|
||||
|
||||
# Set nano as default
|
||||
alias n=nano
|
||||
alias sn='sudo nano'
|
||||
alias edit=nano
|
||||
|
||||
# Show open ports - Use netstat command to quickly list all TCP/UDP port on the server:
|
||||
alias ports='netstat -tulanp'
|
||||
|
||||
# reboot / halt / poweroff
|
||||
alias reboot='sudo /sbin/reboot'
|
||||
alias poweroff='sudo /sbin/poweroff'
|
||||
alias halt='sudo /sbin/halt'
|
||||
alias shutdown='sudo /sbin/shutdown'
|
||||
|
||||
## set some other defaults ##
|
||||
alias df='df -H'
|
||||
alias du='du -ch'
|
||||
|
||||
# Edit the bashrc and re-source it when saved and closed.
|
||||
alias bashrc="nano ~/.bashrc && source ~/.bashrc"
|
||||
|
||||
# ps
|
||||
alias psa="ps auxf"
|
||||
alias psgrep="ps aux | grep -v grep | grep -i -e VSZ -e"
|
||||
alias psmem='ps auxf | sort -nr -k 4'
|
||||
alias pscpu='ps auxf | sort -nr -k 3'
|
||||
|
||||
# git
|
||||
alias addup='git add -u'
|
||||
alias addall='git add .'
|
||||
alias branch='git branch'
|
||||
alias checkout='git checkout'
|
||||
alias clone='git clone'
|
||||
alias commit='git commit -m'
|
||||
alias fetch='git fetch'
|
||||
alias pull='git pull origin'
|
||||
alias push='git push origin'
|
||||
alias stat='git status' # 'status' is protected name so using 'stat' instead
|
||||
alias tag='git tag'
|
||||
alias newtag='git tag -a'
|
||||
|
||||
# get error messages from journalctl
|
||||
alias jctl="journalctl -p 3 -xb"
|
||||
|
||||
@@ -0,0 +1,109 @@
|
||||
# ~/.bashrc
|
||||
|
||||
function git_branch() {
|
||||
git_branch=$(git branch --no-color 2>/dev/null | grep \* | sed 's/* //')
|
||||
|
||||
if [ $git_branch ]
|
||||
then
|
||||
white="\001\033[0;37m\002"
|
||||
yellow="\001\033[0;33m\002"
|
||||
blue="\001\033[0;34m\002"
|
||||
red="\001\033[0;31m\002"
|
||||
|
||||
git_status=$(git status --porcelain 2>/dev/null)
|
||||
git_count_t=$(for i in "$git_status"; do echo "$i"; done | grep -v '^?? ' | sed '/^$/d' | wc -l | sed "s/ //g")
|
||||
git_count_color_t=$(if [ $git_count_t = "0" ]; then echo -e "$blue"; else echo -e "$red"; fi)
|
||||
git_count_ut=$(for i in "$git_status"; do echo "$i"; done | grep '^?? ' | sed '/^$/d' | wc -l | sed "s/ //g")
|
||||
git_count_color_ut=$(if [ $git_count_ut = "0" ]; then echo -e "$blue"; else echo -e "$red"; fi)
|
||||
|
||||
echo -e "$white:$yellow${git_branch}$white:$git_count_color_t${git_count_t}$white:$git_count_color_ut${git_count_ut}"
|
||||
fi
|
||||
}
|
||||
|
||||
function pushall() {
|
||||
sudo git add .
|
||||
sudo git commit --all
|
||||
sudo git push --all
|
||||
}
|
||||
|
||||
short_pwd() {
|
||||
cwd=$(pwd | sed "s#${HOME}#~#g" | perl -F/ -ane 'print join( "/", map { $i++ < @F - 1 ? substr $_,0,1 : $_ } @F)')
|
||||
echo -n $cwd
|
||||
}
|
||||
|
||||
set_bash_prompt() {
|
||||
if [ "$UID" = 0 ]; then
|
||||
#root
|
||||
PS1="\[\033[0;31m\]\u\[\033[0;37m\]@\h\[\033[1;37m\] \[\033[0;31m\]\$(short_pwd)\$(git_branch)\[\033[0;36m\]# \[\033[0m\]"
|
||||
else
|
||||
#non-root
|
||||
PS1="\[\033[0;32m\]\u\[\033[0;37m\]@\h\[\033[1;37m\] \[\033[0;32m\]\$(short_pwd)\$(git_branch)\[\033[0;36m\]$ \[\033[0m\]"
|
||||
fi
|
||||
}
|
||||
|
||||
# Extracts pretty much anything you throw at it granted you have the program for it.
|
||||
extract() {
|
||||
if [ -z ${1} ] || [ "$1" = "-h" ] || [ "$1" = "--help" ]; then
|
||||
echo "Usage: extract <archive> [directory]"
|
||||
echo "Example: extract presentation.zip."
|
||||
echo "Valid archive types are:"
|
||||
echo "tar.bz2, tar.gz, tar.xz, tar, bz2, gz, tbz2,"
|
||||
echo "tbz, tgz, lzo, rar, zip, 7z, xz, txz, lzma and tlz"
|
||||
else
|
||||
case "$1" in
|
||||
*.tar.bz2|*.tbz2|*.tbz) tar xvjf "$1" ;;
|
||||
*.tgz) tar zxvf "$1" ;;
|
||||
*.tar.gz) tar xvzf "$1" ;;
|
||||
*.tar.xz) tar xvJf "$1" ;;
|
||||
*.tar) tar xvf "$1" ;;
|
||||
*.rar) 7z x "$1" ;;
|
||||
*.zip) unzip "$1" ;;
|
||||
*.7z) 7z x "$1" ;;
|
||||
*.lzo) lzop -d "$1" ;;
|
||||
*.gz) gunzip "$1" ;;
|
||||
*.bz2) bunzip2 "$1" ;;
|
||||
*.Z) uncompress "$1" ;;
|
||||
*.xz|*.txz|*.lzma|*.tlz) xz -d "$1" ;;
|
||||
*) echo "Sorry, '$1' could not be decompressed." ;;
|
||||
esac
|
||||
fi
|
||||
}
|
||||
|
||||
# Goes up many dirs as the number passed as argument, if none goes up by 1 by default
|
||||
up(){
|
||||
local d=""
|
||||
limit=$1
|
||||
for ((i=1 ; i <= limit ; i++))
|
||||
do
|
||||
d=$d/..
|
||||
done
|
||||
d=$(echo $d | sed 's/^\///')
|
||||
if [ -z "$d" ]; then
|
||||
d=..
|
||||
fi
|
||||
cd $d
|
||||
}
|
||||
|
||||
# Creates a directory and immediately changes into it.
|
||||
mkcd() {
|
||||
mkdir -p "$1" && cd "$1"
|
||||
}
|
||||
|
||||
# Displays your external IP address
|
||||
myip() {
|
||||
curl -s ifconfig.me
|
||||
}
|
||||
|
||||
# Get colors in manual pages
|
||||
man() {
|
||||
env \
|
||||
LESS_TERMCAP_mb="$(printf '\e[1;31m')" \
|
||||
LESS_TERMCAP_md="$(printf '\e[1;31m')" \
|
||||
LESS_TERMCAP_me="$(printf '\e[0m')" \
|
||||
LESS_TERMCAP_se="$(printf '\e[0m')" \
|
||||
LESS_TERMCAP_so="$(printf '\e[1;44;33m')" \
|
||||
LESS_TERMCAP_ue="$(printf '\e[0m')" \
|
||||
LESS_TERMCAP_us="$(printf '\e[1;32m')" \
|
||||
man "$@"
|
||||
}
|
||||
|
||||
@@ -0,0 +1,119 @@
|
||||
# ~/.bashrc: executed by bash(1) for non-login shells.
|
||||
|
||||
# If not running interactively, don't do anything
|
||||
case $- in
|
||||
*i*) ;;
|
||||
*) return;;
|
||||
esac
|
||||
|
||||
# Load fastfetch
|
||||
fastfetch
|
||||
|
||||
# Check if starship is installed
|
||||
if ! command -v starship &> /dev/null
|
||||
then
|
||||
echo "Starship not found, installing..."
|
||||
# Install starship (using the recommended installation script)
|
||||
curl -sS https://starship.rs/install.sh | sh
|
||||
# You can also specify an installation directory, e.g., if you don't have sudo access:
|
||||
# curl -sS https://starship.rs/install.sh | sh -s -- -b ~/.local/bin
|
||||
echo "Starship installed."
|
||||
fi
|
||||
|
||||
# Load starship prompt if starship is installed
|
||||
if [ -x /usr/bin/starship ]; then
|
||||
__main() {
|
||||
local major="${BASH_VERSINFO[0]}"
|
||||
local minor="${BASH_VERSINFO[1]}"
|
||||
|
||||
if ((major > 4)) || { ((major == 4)) && ((minor >= 1)); }; then
|
||||
source <("/usr/bin/starship" init bash --print-full-init)
|
||||
else
|
||||
source /dev/stdin <<<"$("/usr/bin/starship" init bash --print-full-init)"
|
||||
fi
|
||||
}
|
||||
__main
|
||||
unset -f __main
|
||||
fi
|
||||
|
||||
# don't put duplicate lines or lines starting with space in the history.
|
||||
HISTCONTROL=ignoreboth
|
||||
|
||||
# append to the history file, don't overwrite it
|
||||
shopt -s histappend
|
||||
|
||||
# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
|
||||
HISTSIZE=20000
|
||||
HISTFILESIZE=10000
|
||||
|
||||
# check the window size after each command and, if necessary,
|
||||
shopt -s checkwinsize
|
||||
|
||||
# Combine multiline commands into one in history
|
||||
shopt -s cmdhist
|
||||
|
||||
# check the window size after each command and, if necessary,
|
||||
# update the values of LINES and COLUMNS.
|
||||
shopt -s checkwinsize
|
||||
|
||||
# make less more friendly for non-text input files, see lesspipe(1)
|
||||
[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
|
||||
|
||||
|
||||
# get current branch in git repo
|
||||
function parse_git_branch() {
|
||||
BRANCH=`git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/\1/'`
|
||||
if [ ! "${BRANCH}" == "" ]
|
||||
then
|
||||
STAT=`parse_git_dirty`
|
||||
echo "[${BRANCH}${STAT}]"
|
||||
else
|
||||
echo ""
|
||||
fi
|
||||
}
|
||||
|
||||
# Load Aliases and Finctions, instead of adding them here directly.
|
||||
if [ -e $HOME/.bash_aliases ]; then
|
||||
source $HOME/.bash_aliases
|
||||
fi
|
||||
|
||||
if [ -e $HOME/.bash_functions ]; then
|
||||
source $HOME/.bash_functions
|
||||
fi
|
||||
|
||||
|
||||
# enable programmable completion features (you don't need to enable this, if it's already enabled in /etc/bash.bashrc and /etc/profile, sources /etc/bash.bashrc).
|
||||
if ! shopt -oq posix; then
|
||||
if [ -f /usr/share/bash-completion/bash_completion ]; then
|
||||
. /usr/share/bash-completion/bash_completion
|
||||
elif [ -f /etc/bash_completion ]; then
|
||||
. /etc/bash_completion
|
||||
fi
|
||||
fi
|
||||
|
||||
# Make Nano the default Editor
|
||||
if [[ -n $SSH_CONNECTION ]]; then
|
||||
export EDITOR='nano'
|
||||
else
|
||||
export EDITOR='nano'
|
||||
fi
|
||||
|
||||
### FZF ###
|
||||
# Enables the following keybindings:
|
||||
# CTRL-t = fzf select
|
||||
# CTRL-r = fzf history
|
||||
# ALT-c = fzf cd
|
||||
eval "$(fzf --bash)"
|
||||
|
||||
# Added by LM Studio CLI (lms)
|
||||
export PATH="$PATH:/home/miker/.lmstudio/bin"
|
||||
# End of LM Studio CLI section
|
||||
|
||||
# Automatically preform ls when changing directory,
|
||||
cd() {
|
||||
builtin cd "$@" && ls -lA
|
||||
}
|
||||
|
||||
|
||||
# Initialize starship
|
||||
eval "$(starship init bash)"
|
||||
@@ -0,0 +1 @@
|
||||
localhost ansible_connection=local
|
||||
@@ -0,0 +1,91 @@
|
||||
|
||||
[env]
|
||||
# TERM = "alacritty"
|
||||
TERM = "xterm-256color"
|
||||
|
||||
[window]
|
||||
decorations = "full" # Window decorations.(Full - Borders and title bar) or (None - Neither borders nor title bar.)
|
||||
dynamic_padding = false # Spread additional padding evenly around the terminal content.
|
||||
dynamic_title = false # Allow terminal applications to change Alacritty's window title.
|
||||
opacity = 0.9 # 0.0 is Complete Transparent .... 1.0 is No Transparencystartup_mode = "Windowed" # Startup mode (Windowed, Maximized, Fullscreen)
|
||||
title = "Miker's Terminal" # Window title.
|
||||
blur = false # Request compositor to blur content behind transparent windows.
|
||||
|
||||
[window.dimensions]
|
||||
columns = 140 # Set your desired number of columns
|
||||
lines = 50 # Set your desired number of lines
|
||||
|
||||
[window.padding]
|
||||
x = 0
|
||||
y = 0
|
||||
|
||||
[scrolling]
|
||||
history = 500 # Maximum number of lines in the scrollback buffer
|
||||
|
||||
[font]
|
||||
builtin_box_drawing = false
|
||||
size = 10
|
||||
|
||||
[bell]
|
||||
animation = "EaseOutExpo"
|
||||
color = "#C0C5CE"
|
||||
command = "None"
|
||||
duration = 0
|
||||
|
||||
[selection]
|
||||
save_to_clipboard = false
|
||||
semantic_escape_chars = ",│`|:\"' ()[]{}<>\t"
|
||||
|
||||
[cursor]
|
||||
unfocused_hollow = true
|
||||
vi_mode_style = "None"
|
||||
|
||||
[[keyboard.bindings]]
|
||||
action = "Paste"
|
||||
key = "V"
|
||||
mods = "Control"
|
||||
|
||||
[[keyboard.bindings]]
|
||||
action = "Copy"
|
||||
key = "C"
|
||||
mods = "Control"
|
||||
|
||||
[[keyboard.bindings]]
|
||||
action = "ScrollPageUp"
|
||||
key = "PageUp"
|
||||
mods = "Shift"
|
||||
|
||||
[[keyboard.bindings]]
|
||||
action = "ScrollPageDown"
|
||||
key = "PageDown"
|
||||
mods = "Shift"
|
||||
|
||||
[[keyboard.bindings]]
|
||||
action = "ScrollToTop"
|
||||
key = "Home"
|
||||
mods = "Shift"
|
||||
|
||||
[[keyboard.bindings]]
|
||||
action = "ScrollToBottom"
|
||||
key = "End"
|
||||
mods = "Shift"
|
||||
|
||||
[mouse]
|
||||
hide_when_typing = true
|
||||
|
||||
[debug]
|
||||
highlight_damage = false
|
||||
log_level = "Warn"
|
||||
persistent_logging = false
|
||||
print_events = false
|
||||
render_timer = false
|
||||
|
||||
[general]
|
||||
# alacritty.toml
|
||||
|
||||
live_config_reload = true # Live config reload (changes require restart)
|
||||
|
||||
import = [
|
||||
"~/.config/alacritty/themes/falcon.toml"
|
||||
]
|
||||
|
||||
@@ -0,0 +1,33 @@
|
||||
# From the famous Cobalt2 sublime theme
|
||||
# Source https//github.com/wesbos/cobalt2/tree/master/Cobalt2
|
||||
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#122637'
|
||||
foreground = '#ffffff'
|
||||
|
||||
[colors.cursor]
|
||||
text = '#122637'
|
||||
cursor = '#f0cb09'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#000000'
|
||||
red = '#ff0000'
|
||||
green = '#37dd21'
|
||||
yellow = '#fee409'
|
||||
blue = '#1460d2'
|
||||
magenta = '#ff005d'
|
||||
cyan = '#00bbbb'
|
||||
white = '#bbbbbb'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#545454'
|
||||
red = '#f40d17'
|
||||
green = '#3bcf1d'
|
||||
yellow = '#ecc809'
|
||||
blue = '#5555ff'
|
||||
magenta = '#ff55ff'
|
||||
cyan = '#6ae3f9'
|
||||
white = '#ffffff'
|
||||
@@ -0,0 +1,39 @@
|
||||
# Mariana (ported from Sublime Text 4)
|
||||
# Source https//github.com/mbadolato/iTerm2-Color-Schemes/blob/master/alacritty/Mariana.yml
|
||||
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#343d46'
|
||||
foreground = '#d8dee9'
|
||||
|
||||
# Cursor colors
|
||||
[colors.cursor]
|
||||
cursor = '#fcbb6a'
|
||||
text = '#ffffff'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#000000'
|
||||
blue = '#6699cc'
|
||||
cyan = '#5fb4b4'
|
||||
green = '#99c794'
|
||||
magenta = '#c695c6'
|
||||
red = '#ec5f66'
|
||||
white = '#f7f7f7'
|
||||
yellow = '#f9ae58'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#333333'
|
||||
blue = '#85add6'
|
||||
cyan = '#82c4c4'
|
||||
green = '#acd1a8'
|
||||
magenta = '#d8b6d8'
|
||||
red = '#f97b58'
|
||||
white = '#ffffff'
|
||||
yellow = '#fac761'
|
||||
|
||||
# Selection colors
|
||||
[colors.selection]
|
||||
background = '#4e5a65'
|
||||
text = '#d8dee9'
|
||||
@@ -0,0 +1,28 @@
|
||||
# Colors (acme)
|
||||
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#ffffea'
|
||||
foreground = '#000000'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#101010'
|
||||
red = '#af5f00'
|
||||
green = '#cccc7c'
|
||||
yellow = '#ffff5f'
|
||||
blue = '#aeeeee'
|
||||
magenta = '#505050'
|
||||
cyan = '#afffd7'
|
||||
white = '#fcfcce'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#101010'
|
||||
red = '#af5f00'
|
||||
green = '#cccc7c'
|
||||
yellow = '#ffff5f'
|
||||
blue = '#aeeeee'
|
||||
magenta = '#505050'
|
||||
cyan = '#afffd7'
|
||||
white = '#fcfcce'
|
||||
@@ -0,0 +1,45 @@
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#2c2c2c'
|
||||
foreground = '#d6d6d6'
|
||||
|
||||
dim_foreground = '#dbdbdb'
|
||||
bright_foreground = '#d9d9d9'
|
||||
|
||||
# Cursor colors
|
||||
[colors.cursor]
|
||||
text = '#2c2c2c'
|
||||
cursor = '#d9d9d9'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#1c1c1c'
|
||||
red = '#bc5653'
|
||||
green = '#909d63'
|
||||
yellow = '#ebc17a'
|
||||
blue = '#7eaac7'
|
||||
magenta = '#aa6292'
|
||||
cyan = '#86d3ce'
|
||||
white = '#cacaca'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#636363'
|
||||
red = '#bc5653'
|
||||
green = '#909d63'
|
||||
yellow = '#ebc17a'
|
||||
blue = '#7eaac7'
|
||||
magenta = '#aa6292'
|
||||
cyan = '#86d3ce'
|
||||
white = '#f7f7f7'
|
||||
|
||||
# Dim colors
|
||||
[colors.dim]
|
||||
black = '#232323'
|
||||
red = '#74423f'
|
||||
green = '#5e6547'
|
||||
yellow = '#8b7653'
|
||||
blue = '#556b79'
|
||||
magenta = '#6e4962'
|
||||
cyan = '#5c8482'
|
||||
white = '#828282'
|
||||
@@ -0,0 +1,30 @@
|
||||
# Colors (Alabaster)
|
||||
# author tonsky
|
||||
|
||||
[colors.primary]
|
||||
background = '#F7F7F7'
|
||||
foreground = '#434343'
|
||||
|
||||
[colors.cursor]
|
||||
text = '#F7F7F7'
|
||||
cursor = '#434343'
|
||||
|
||||
[colors.normal]
|
||||
black = '#000000'
|
||||
red = '#AA3731'
|
||||
green = '#448C27'
|
||||
yellow = '#CB9000'
|
||||
blue = '#325CC0'
|
||||
magenta = '#7A3E9D'
|
||||
cyan = '#0083B2'
|
||||
white = '#BBBBBB'
|
||||
|
||||
[colors.bright]
|
||||
black = '#777777'
|
||||
red = '#F05050'
|
||||
green = '#60CB00'
|
||||
yellow = '#FFBC5D'
|
||||
blue = '#007ACC'
|
||||
magenta = '#E64CE6'
|
||||
cyan = '#00AACB'
|
||||
white = '#FFFFFF'
|
||||
@@ -0,0 +1,30 @@
|
||||
# Colors (Alabaster Dark)
|
||||
# author tonsky
|
||||
|
||||
[colors.primary]
|
||||
background = '#0E1415'
|
||||
foreground = '#CECECE'
|
||||
|
||||
[colors.cursor]
|
||||
text = '#0E1415'
|
||||
cursor = '#CECECE'
|
||||
|
||||
[colors.normal]
|
||||
black = '#0E1415'
|
||||
red = '#e25d56'
|
||||
green = '#73ca50'
|
||||
yellow = '#e9bf57'
|
||||
blue = '#4a88e4'
|
||||
magenta = '#915caf'
|
||||
cyan = '#23acdd'
|
||||
white = '#f0f0f0'
|
||||
|
||||
[colors.bright]
|
||||
black = '#777777'
|
||||
red = '#f36868'
|
||||
green = '#88db3f'
|
||||
yellow = '#f0bf7a'
|
||||
blue = '#6f8fdb'
|
||||
magenta = '#e987e9'
|
||||
cyan = '#4ac9e2'
|
||||
white = '#FFFFFF'
|
||||
@@ -0,0 +1,44 @@
|
||||
# Alacritty's default color scheme pre-0.13 (based on tomorrow_night)
|
||||
# https://github.com/alacritty/alacritty/blob/v0.12.3/alacritty/src/config/color.rs
|
||||
|
||||
[colors.primary]
|
||||
foreground = "#c5c8c6"
|
||||
background = "#1d1f21"
|
||||
|
||||
[colors.normal]
|
||||
black = "#1d1f21"
|
||||
red = "#cc6666"
|
||||
green = "#b5bd68"
|
||||
yellow = "#f0c674"
|
||||
blue = "#81a2be"
|
||||
magenta = "#b294bb"
|
||||
cyan = "#8abeb7"
|
||||
white = "#c5c8c6"
|
||||
|
||||
[colors.bright]
|
||||
black = "#666666"
|
||||
red = "#d54e53"
|
||||
green = "#b9ca4a"
|
||||
yellow = "#e7c547"
|
||||
blue = "#7aa6da"
|
||||
magenta = "#c397d8"
|
||||
cyan = "#70c0b1"
|
||||
white = "#eaeaea"
|
||||
|
||||
[colors.dim]
|
||||
black = "#131415"
|
||||
red = "#864343"
|
||||
green = "#777c44"
|
||||
yellow = "#9e824c"
|
||||
blue = "#556a7d"
|
||||
magenta = "#75617b"
|
||||
cyan = "#5b7d78"
|
||||
white = "#828482"
|
||||
|
||||
[colors.hints]
|
||||
start = { foreground = "#1d1f21", background = "#e9ff5e" }
|
||||
end = { foreground = "#e9ff5e", background = "#1d1f21" }
|
||||
|
||||
[colors.search]
|
||||
matches = { foreground = "#000000", background = "#ffffff" }
|
||||
focused_match = { foreground = "#ffffff", background = "#000000" }
|
||||
@@ -0,0 +1,31 @@
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#292C3E'
|
||||
foreground = '#EBEBEB'
|
||||
|
||||
# Cursor colors
|
||||
[colors.cursor]
|
||||
text = '#EBEBEB'
|
||||
cursor = '#FF261E'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#0d0d0d'
|
||||
red = '#FF301B'
|
||||
green = '#A0E521'
|
||||
yellow = '#FFC620'
|
||||
blue = '#1BA6FA'
|
||||
magenta = '#8763B8'
|
||||
cyan = '#21DEEF'
|
||||
white = '#EBEBEB'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#6D7070'
|
||||
red = '#FF4352'
|
||||
green = '#B8E466'
|
||||
yellow = '#FFD750'
|
||||
blue = '#1BA6FA'
|
||||
magenta = '#A578EA'
|
||||
cyan = '#73FBF1'
|
||||
white = '#FEFEF8'
|
||||
@@ -0,0 +1,27 @@
|
||||
[colors.primary]
|
||||
background = '#1c2023'
|
||||
foreground = '#c7ccd1'
|
||||
|
||||
[colors.cursor]
|
||||
text = '#1c2023'
|
||||
cursor = '#c7ccd1'
|
||||
|
||||
[colors.normal]
|
||||
black = '#1c2023'
|
||||
red = '#c7ae95'
|
||||
green = '#95c7ae'
|
||||
yellow = '#aec795'
|
||||
blue = '#ae95c7'
|
||||
magenta = '#c795ae'
|
||||
cyan = '#95aec7'
|
||||
white = '#c7ccd1'
|
||||
|
||||
[colors.bright]
|
||||
black = '#747c84'
|
||||
red = '#c7ae95'
|
||||
green = '#95c7ae'
|
||||
yellow = '#aec795'
|
||||
blue = '#ae95c7'
|
||||
magenta = '#c795ae'
|
||||
cyan = '#95aec7'
|
||||
white = '#f3f4f5'
|
||||
@@ -0,0 +1,27 @@
|
||||
[colors.primary]
|
||||
background = '#f3f4f5'
|
||||
foreground = '#565e65'
|
||||
|
||||
[colors.cursor]
|
||||
text = '#f3f4f5'
|
||||
cursor = '#565e65'
|
||||
|
||||
[colors.normal]
|
||||
black = '#1c2023'
|
||||
red = '#c7ae95'
|
||||
green = '#95c7ae'
|
||||
yellow = '#aec795'
|
||||
blue = '#ae95c7'
|
||||
magenta = '#c795ae'
|
||||
cyan = '#95aec7'
|
||||
white = '#c7ccd1'
|
||||
|
||||
[colors.bright]
|
||||
black = '#747c84'
|
||||
red = '#c7ae95'
|
||||
green = '#95c7ae'
|
||||
yellow = '#aec795'
|
||||
blue = '#ae95c7'
|
||||
magenta = '#c795ae'
|
||||
cyan = '#95aec7'
|
||||
white = '#f3f4f5'
|
||||
@@ -0,0 +1,30 @@
|
||||
[colors.primary]
|
||||
background = "#15141b"
|
||||
foreground = "#edecee"
|
||||
|
||||
[colors.cursor]
|
||||
cursor = "#a277ff"
|
||||
|
||||
[colors.selection]
|
||||
text = "CellForeground"
|
||||
background = "#29263c"
|
||||
|
||||
[colors.normal]
|
||||
black = "#110f18"
|
||||
red = "#ff6767"
|
||||
green = "#61ffca"
|
||||
yellow = "#ffca85"
|
||||
blue = "#a277ff"
|
||||
magenta = "#a277ff"
|
||||
cyan = "#61ffca"
|
||||
white = "#edecee"
|
||||
|
||||
[colors.bright]
|
||||
black = "#4d4d4d"
|
||||
red = "#ff6767"
|
||||
green = "#61ffca"
|
||||
yellow = "#ffca85"
|
||||
blue = "#a277ff"
|
||||
magenta = "#a277ff"
|
||||
cyan = "#61ffca"
|
||||
white = "#edecee"
|
||||
@@ -0,0 +1,30 @@
|
||||
# From: https://github.com/yorickpeterse/Autumn.vim/blob/master/colors/autumn.vim
|
||||
|
||||
[colors.primary]
|
||||
foreground = "#F3F2CC"
|
||||
background = "#232323"
|
||||
|
||||
[colors.cursor]
|
||||
text = "#232323"
|
||||
cursor = "#F3F2CC"
|
||||
|
||||
[colors.normal]
|
||||
black = "#212121"
|
||||
red = "#F05E48"
|
||||
green = "#99be70"
|
||||
yellow = "#FAD566"
|
||||
blue = "#86c1b9"
|
||||
magenta = "#cfba8b"
|
||||
cyan = "#72a59e"
|
||||
white = "#c8c8c8"
|
||||
|
||||
[colors.bright]
|
||||
black = "#404040"
|
||||
red = "#F05E48"
|
||||
green = "#99be70"
|
||||
yellow = "#ffff9f"
|
||||
blue = "#86c1b9"
|
||||
magenta = "#cfba8b"
|
||||
cyan = "#72a59e"
|
||||
white = "#e8e8e8"
|
||||
|
||||
@@ -0,0 +1,28 @@
|
||||
# Colors (Ayu Dark)
|
||||
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#0A0E14'
|
||||
foreground = '#B3B1AD'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#01060E'
|
||||
red = '#EA6C73'
|
||||
green = '#91B362'
|
||||
yellow = '#F9AF4F'
|
||||
blue = '#53BDFA'
|
||||
magenta = '#FAE994'
|
||||
cyan = '#90E1C6'
|
||||
white = '#C7C7C7'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#686868'
|
||||
red = '#F07178'
|
||||
green = '#C2D94C'
|
||||
yellow = '#FFB454'
|
||||
blue = '#59C2FF'
|
||||
magenta = '#FFEE99'
|
||||
cyan = '#95E6CB'
|
||||
white = '#FFFFFF'
|
||||
@@ -0,0 +1,28 @@
|
||||
# Colors (Ayu Light)
|
||||
|
||||
# Default colors - taken from ayu-colors
|
||||
[colors.primary]
|
||||
background = '#FCFCFC'
|
||||
foreground = '#5C6166'
|
||||
|
||||
# Normal colors - taken from ayu-iTerm
|
||||
[colors.normal]
|
||||
black = '#010101'
|
||||
red = '#e7666a'
|
||||
green = '#80ab24'
|
||||
yellow = '#eba54d'
|
||||
blue = '#4196df'
|
||||
magenta = '#9870c3'
|
||||
cyan = '#51b891'
|
||||
white = '#c1c1c1'
|
||||
|
||||
# Bright colors - pastel lighten 0.1 <normal> except black lighten with 0.2
|
||||
[colors.bright]
|
||||
black = '#343434'
|
||||
red = '#ee9295'
|
||||
green = '#9fd32f'
|
||||
yellow = '#f0bc7b'
|
||||
blue = '#6daee6'
|
||||
magenta = '#b294d2'
|
||||
cyan = '#75c7a8'
|
||||
white = '#dbdbdb'
|
||||
@@ -0,0 +1,29 @@
|
||||
# Colors (Ayu Mirage)
|
||||
|
||||
# Default Colors
|
||||
[colors.primary]
|
||||
background = "#1f2430"
|
||||
foreground = "#cbccc6"
|
||||
bright_foreground = "#f28779"
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = "#212733"
|
||||
red = "#f08778"
|
||||
green = "#53bf97"
|
||||
yellow = "#fdcc60"
|
||||
blue = "#60b8d6"
|
||||
magenta = "#ec7171"
|
||||
cyan = "#98e6ca"
|
||||
white = "#fafafa"
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = "#686868"
|
||||
red = "#f58c7d"
|
||||
green = "#58c49c"
|
||||
yellow = "#ffd165"
|
||||
blue = "#65bddb"
|
||||
magenta = "#f17676"
|
||||
cyan = "#9debcf"
|
||||
white = "#ffffff"
|
||||
@@ -0,0 +1,55 @@
|
||||
# Colors (Baitong)
|
||||
|
||||
[colors.primary]
|
||||
background = '#112a2a'
|
||||
foreground = '#33ff33'
|
||||
|
||||
[colors.cursor]
|
||||
text = '#112a2a'
|
||||
cursor = '#ff00ff'
|
||||
|
||||
[colors.vi_mode_cursor]
|
||||
text = '#112a2a'
|
||||
cursor = '#ff00ff'
|
||||
|
||||
[colors.search]
|
||||
matches = { foreground = '#000000', background = '#1AE642' }
|
||||
focused_match = { foreground = '#000000', background = '#ff00ff' }
|
||||
|
||||
[colors.hints]
|
||||
start = { foreground = '#1d1f21', background = '#1AE642' }
|
||||
end = { foreground = '#1AE642', background = '#1d1f21' }
|
||||
|
||||
[colors.line_indicator]
|
||||
foreground = '#33ff33'
|
||||
background = '#1d1f21'
|
||||
|
||||
[colors.footer_bar]
|
||||
background = '#731d8b'
|
||||
foreground = '#ffffff'
|
||||
|
||||
[colors.selection]
|
||||
text = '#112a2a'
|
||||
background = '#1AE642'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#000000'
|
||||
red = '#f77272'
|
||||
green = '#33ff33'
|
||||
yellow = '#1AE642'
|
||||
blue = '#68FDFE'
|
||||
magenta = '#ff66ff'
|
||||
cyan = '#87CEFA'
|
||||
white = '#dbdbd9'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#ffffff'
|
||||
red = '#f77272'
|
||||
green = '#33ff33'
|
||||
yellow = '#1AE642'
|
||||
blue = '#68FDFE'
|
||||
magenta = '#ff66ff'
|
||||
cyan = '#68FDFE'
|
||||
white = '#dbdbd9'
|
||||
@@ -0,0 +1,32 @@
|
||||
# Colors (Base16 Default Dark)
|
||||
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#181818'
|
||||
foreground = '#d8d8d8'
|
||||
|
||||
[colors.cursor]
|
||||
text = '#181818'
|
||||
cursor = '#d8d8d8'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#181818'
|
||||
red = '#ab4642'
|
||||
green = '#a1b56c'
|
||||
yellow = '#f7ca88'
|
||||
blue = '#7cafc2'
|
||||
magenta = '#ba8baf'
|
||||
cyan = '#86c1b9'
|
||||
white = '#d8d8d8'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#585858'
|
||||
red = '#ab4642'
|
||||
green = '#a1b56c'
|
||||
yellow = '#f7ca88'
|
||||
blue = '#7cafc2'
|
||||
magenta = '#ba8baf'
|
||||
cyan = '#86c1b9'
|
||||
white = '#f8f8f8'
|
||||
@@ -0,0 +1,28 @@
|
||||
# Colors (Blood Moon)
|
||||
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#10100E'
|
||||
foreground = '#C6C6C4'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#10100E'
|
||||
red = '#C40233'
|
||||
green = '#009F6B'
|
||||
yellow = '#FFD700'
|
||||
blue = '#0087BD'
|
||||
magenta = '#9A4EAE'
|
||||
cyan = '#20B2AA'
|
||||
white = '#C6C6C4'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#696969'
|
||||
red = '#FF2400'
|
||||
green = '#03C03C'
|
||||
yellow = '#FDFF00'
|
||||
blue = '#007FFF'
|
||||
magenta = '#FF1493'
|
||||
cyan = '#00CCCC'
|
||||
white = '#FFFAFA'
|
||||
@@ -0,0 +1,26 @@
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#2c3640'
|
||||
foreground = '#297dd3'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#0b0b0c'
|
||||
red = '#377fc4'
|
||||
green = '#2691e7'
|
||||
yellow = '#2090c1'
|
||||
blue = '#2c5e87'
|
||||
magenta = '#436280'
|
||||
cyan = '#547aa2'
|
||||
white = '#536679'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#23272c'
|
||||
red = '#66a5cc'
|
||||
green = '#59b0f2'
|
||||
yellow = '#4bb0d3'
|
||||
blue = '#487092'
|
||||
magenta = '#50829e'
|
||||
cyan = '#658795'
|
||||
white = '#4d676b'
|
||||
@@ -0,0 +1,42 @@
|
||||
# KDE Breeze (Ported from Konsole)
|
||||
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#232627'
|
||||
foreground = '#fcfcfc'
|
||||
|
||||
dim_foreground = '#eff0f1'
|
||||
bright_foreground = '#ffffff'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#232627'
|
||||
red = '#ed1515'
|
||||
green = '#11d116'
|
||||
yellow = '#f67400'
|
||||
blue = '#1d99f3'
|
||||
magenta = '#9b59b6'
|
||||
cyan = '#1abc9c'
|
||||
white = '#fcfcfc'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#7f8c8d'
|
||||
red = '#c0392b'
|
||||
green = '#1cdc9a'
|
||||
yellow = '#fdbc4b'
|
||||
blue = '#3daee9'
|
||||
magenta = '#8e44ad'
|
||||
cyan = '#16a085'
|
||||
white = '#ffffff'
|
||||
|
||||
# Dim colors
|
||||
[colors.dim]
|
||||
black = '#31363b'
|
||||
red = '#783228'
|
||||
green = '#17a262'
|
||||
yellow = '#b65619'
|
||||
blue = '#1b668f'
|
||||
magenta = '#614a73'
|
||||
cyan = '#186c60'
|
||||
white = '#63686d'
|
||||
@@ -0,0 +1,28 @@
|
||||
# Campbell (Windows 10 default)
|
||||
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#0c0c0c'
|
||||
foreground = '#cccccc'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#0c0c0c'
|
||||
red = '#c50f1f'
|
||||
green = '#13a10e'
|
||||
yellow = '#c19c00'
|
||||
blue = '#0037da'
|
||||
magenta = '#881798'
|
||||
cyan = '#3a96dd'
|
||||
white = '#cccccc'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#767676'
|
||||
red = '#e74856'
|
||||
green = '#16c60c'
|
||||
yellow = '#f9f1a5'
|
||||
blue = '#3b78ff'
|
||||
magenta = '#b4009e'
|
||||
cyan = '#61d6d6'
|
||||
white = '#f2f2f2'
|
||||
@@ -0,0 +1,71 @@
|
||||
# Nightfox Alacritty Colors
|
||||
## name: carbonfox
|
||||
## upstream: https://github.com/edeneast/nightfox.nvim/raw/main/extra/carbonfox/alacritty.toml
|
||||
|
||||
[colors.primary]
|
||||
background = "#161616"
|
||||
foreground = "#f2f4f8"
|
||||
dim_foreground = "#b6b8bb"
|
||||
bright_foreground = "#f9fbff"
|
||||
|
||||
[colors.cursor]
|
||||
text = "#f2f4f8"
|
||||
cursor = "#b6b8bb"
|
||||
|
||||
[colors.vi_mode_cursor]
|
||||
text = "#f2f4f8"
|
||||
cursor = "#33b1ff"
|
||||
|
||||
[colors.search.matches]
|
||||
foreground = "#f2f4f8"
|
||||
background = "#525253"
|
||||
|
||||
[colors.search.focused_match]
|
||||
foreground = "#f2f4f8"
|
||||
background = "#3ddbd9"
|
||||
|
||||
[colors.footer_bar]
|
||||
foreground = "#f2f4f8"
|
||||
background = "#353535"
|
||||
|
||||
[colors.hints.start]
|
||||
foreground = "#f2f4f8"
|
||||
background = "#3ddbd9"
|
||||
|
||||
[colors.hints.end]
|
||||
foreground = "#f2f4f8"
|
||||
background = "#353535"
|
||||
|
||||
[colors.selection]
|
||||
text = "#f2f4f8"
|
||||
background = "#2a2a2a"
|
||||
|
||||
[colors.normal]
|
||||
black = "#282828"
|
||||
red = "#ee5396"
|
||||
green = "#25be6a"
|
||||
yellow = "#08bdba"
|
||||
blue = "#78a9ff"
|
||||
magenta = "#be95ff"
|
||||
cyan = "#33b1ff"
|
||||
white = "#dfdfe0"
|
||||
|
||||
[colors.bright]
|
||||
black = "#484848"
|
||||
red = "#f16da6"
|
||||
green = "#46c880"
|
||||
yellow = "#2dc7c4"
|
||||
blue = "#8cb6ff"
|
||||
magenta = "#c8a5ff"
|
||||
cyan = "#52bdff"
|
||||
white = "#e4e4e5"
|
||||
|
||||
[colors.dim]
|
||||
black = "#222222"
|
||||
red = "#ca4780"
|
||||
green = "#1fa25a"
|
||||
yellow = "#07a19e"
|
||||
blue = "#6690d9"
|
||||
magenta = "#a27fd9"
|
||||
cyan = "#2b96d9"
|
||||
white = "#bebebe"
|
||||
@@ -0,0 +1,39 @@
|
||||
# Catppuccino theme scheme for Alacritty
|
||||
|
||||
[colors.primary]
|
||||
background = '#1E1E2E'
|
||||
foreground = '#D6D6D6'
|
||||
|
||||
[colors.cursor]
|
||||
text = '#1E1E2E'
|
||||
cursor = '#D9D9D9'
|
||||
|
||||
[colors.normal]
|
||||
black = '#181A1F'
|
||||
red = '#E86671'
|
||||
green = '#98C379'
|
||||
yellow = '#E5C07B'
|
||||
blue = '#61AFEF'
|
||||
magenta = '#C678DD'
|
||||
cyan = '#54AFBC'
|
||||
white = '#ABB2BF'
|
||||
|
||||
[colors.bright]
|
||||
black = '#5C6370'
|
||||
red = '#E86671'
|
||||
green = '#98C379'
|
||||
yellow = '#E5C07B'
|
||||
blue = '#61AFEF'
|
||||
magenta = '#C678DD'
|
||||
cyan = '#54AFBC'
|
||||
white = '#F7F7F7'
|
||||
|
||||
[colors.dim]
|
||||
black = '#5C6370'
|
||||
red = '#74423F'
|
||||
green = '#98C379'
|
||||
yellow = '#E5C07B'
|
||||
blue = '#61AFEF'
|
||||
magenta = '#6E4962'
|
||||
cyan = '#5C8482'
|
||||
white = '#828282'
|
||||
@@ -0,0 +1,73 @@
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#303446' # base
|
||||
foreground = '#C6D0F5' # text
|
||||
# Bright and dim foreground colors
|
||||
dim_foreground = '#C6D0F5' # text
|
||||
bright_foreground = '#C6D0F5' # text
|
||||
|
||||
# Cursor colors
|
||||
[colors.cursor]
|
||||
text = '#303446' # base
|
||||
cursor = '#F2D5CF' # rosewater
|
||||
|
||||
[colors.vi_mode_cursor]
|
||||
text = '#303446' # base
|
||||
cursor = '#BABBF1' # lavender
|
||||
|
||||
# Search colors
|
||||
[colors.search.matches]
|
||||
foreground = '#303446' # base
|
||||
background = '#A5ADCE' # subtext0
|
||||
[colors.search.focused_match]
|
||||
foreground = '#303446' # base
|
||||
background = '#A6D189' # green
|
||||
[colors.footer_bar]
|
||||
foreground = '#303446' # base
|
||||
background = '#A5ADCE' # subtext0
|
||||
|
||||
# Keyboard regex hints
|
||||
[colors.hints.start]
|
||||
foreground = '#303446' # base
|
||||
background = '#E5C890' # yellow
|
||||
[colors.hints.end]
|
||||
foreground = '#303446' # base
|
||||
background = '#A5ADCE' # subtext0
|
||||
|
||||
# Selection colors
|
||||
[colors.selection]
|
||||
text = '#303446' # base
|
||||
background = '#F2D5CF' # rosewater
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#51576D' # surface1
|
||||
red = '#E78284' # red
|
||||
green = '#A6D189' # green
|
||||
yellow = '#E5C890' # yellow
|
||||
blue = '#8CAAEE' # blue
|
||||
magenta = '#F4B8E4' # pink
|
||||
cyan = '#81C8BE' # teal
|
||||
white = '#B5BFE2' # subtext1
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#626880' # surface2
|
||||
red = '#E78284' # red
|
||||
green = '#A6D189' # green
|
||||
yellow = '#E5C890' # yellow
|
||||
blue = '#8CAAEE' # blue
|
||||
magenta = '#F4B8E4' # pink
|
||||
cyan = '#81C8BE' # teal
|
||||
white = '#A5ADCE' # subtext0
|
||||
|
||||
# Dim colors
|
||||
[colors.dim]
|
||||
black = '#51576D' # surface1
|
||||
red = '#E78284' # red
|
||||
green = '#A6D189' # green
|
||||
yellow = '#E5C890' # yellow
|
||||
blue = '#8CAAEE' # blue
|
||||
magenta = '#F4B8E4' # pink
|
||||
cyan = '#81C8BE' # teal
|
||||
white = '#B5BFE2' # subtext1
|
||||
@@ -0,0 +1,76 @@
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#EFF1F5' # base
|
||||
foreground = '#4C4F69' # text
|
||||
# Bright and dim foreground colors
|
||||
dim_foreground = '#4C4F69' # text
|
||||
bright_foreground = '#4C4F69' # text
|
||||
|
||||
# Cursor colors
|
||||
[colors.cursor]
|
||||
text = '#EFF1F5' # base
|
||||
cursor = '#DC8A78' # rosewater
|
||||
|
||||
[colors.vi_mode_cursor]
|
||||
text = '#EFF1F5' # base
|
||||
cursor = '#7287FD' # lavender
|
||||
|
||||
# Search colors
|
||||
[colors.search.matches]
|
||||
foreground = '#EFF1F5' # base
|
||||
background = '#6C6F85' # subtext0
|
||||
|
||||
[colors.search.focused_match]
|
||||
foreground = '#EFF1F5' # base
|
||||
background = '#40A02B' # green
|
||||
|
||||
[colors.footer_bar]
|
||||
foreground = '#EFF1F5' # base
|
||||
background = '#6C6F85' # subtext0
|
||||
|
||||
# Keyboard regex hints
|
||||
[colors.hints.start]
|
||||
foreground = '#EFF1F5' # base
|
||||
background = '#DF8E1D' # yellow
|
||||
|
||||
[colors.hints.end]
|
||||
foreground = '#EFF1F5' # base
|
||||
background = '#6C6F85' # subtext0
|
||||
|
||||
# Selection colors
|
||||
[colors.selection]
|
||||
text = '#EFF1F5' # base
|
||||
background = '#DC8A78' # rosewater
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#5C5F77' # subtext1
|
||||
red = '#D20F39' # red
|
||||
green = '#40A02B' # green
|
||||
yellow = '#DF8E1D' # yellow
|
||||
blue = '#1E66F5' # blue
|
||||
magenta = '#EA76CB' # pink
|
||||
cyan = '#179299' # teal
|
||||
white = '#ACB0BE' # surface2
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#6C6F85' # subtext0
|
||||
red = '#D20F39' # red
|
||||
green = '#40A02B' # green
|
||||
yellow = '#DF8E1D' # yellow
|
||||
blue = '#1E66F5' # blue
|
||||
magenta = '#EA76CB' # pink
|
||||
cyan = '#179299' # teal
|
||||
white = '#BCC0CC' # surface1
|
||||
|
||||
# Dim colors
|
||||
[colors.dim]
|
||||
black = '#5C5F77' # subtext1
|
||||
red = '#D20F39' # red
|
||||
green = '#40A02B' # green
|
||||
yellow = '#DF8E1D' # yellow
|
||||
blue = '#1E66F5' # blue
|
||||
magenta = '#EA76CB' # pink
|
||||
cyan = '#179299' # teal
|
||||
white = '#ACB0BE' # surface2
|
||||
@@ -0,0 +1,76 @@
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#24273A' # base
|
||||
foreground = '#CAD3F5' # text
|
||||
# Bright and dim foreground colors
|
||||
dim_foreground = '#CAD3F5' # text
|
||||
bright_foreground = '#CAD3F5' # text
|
||||
|
||||
# Cursor colors
|
||||
[colors.cursor]
|
||||
text = '#24273A' # base
|
||||
cursor = '#F4DBD6' # rosewater
|
||||
|
||||
[colors.vi_mode_cursor]
|
||||
text = '#24273A' # base
|
||||
cursor = '#B7BDF8' # lavender
|
||||
|
||||
# Search colors
|
||||
[colors.search.matches]
|
||||
foreground = '#24273A' # base
|
||||
background = '#A5ADCB' # subtext0
|
||||
|
||||
[colors.search.focused_match]
|
||||
foreground = '#24273A' # base
|
||||
background = '#A6DA95' # green
|
||||
|
||||
[colors.footer_bar]
|
||||
foreground = '#24273A' # base
|
||||
background = '#A5ADCB' # subtext0
|
||||
|
||||
# Keyboard regex hints
|
||||
[colors.hints.start]
|
||||
foreground = '#24273A' # base
|
||||
background = '#EED49F' # yellow
|
||||
|
||||
[colors.hints.end]
|
||||
foreground = '#24273A' # base
|
||||
background = '#A5ADCB' # subtext0
|
||||
|
||||
# Selection colors
|
||||
[colors.selection]
|
||||
text = '#24273A' # base
|
||||
background = '#F4DBD6' # rosewater
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#494D64' # surface1
|
||||
red = '#ED8796' # red
|
||||
green = '#A6DA95' # green
|
||||
yellow = '#EED49F' # yellow
|
||||
blue = '#8AADF4' # blue
|
||||
magenta = '#F5BDE6' # pink
|
||||
cyan = '#8BD5CA' # teal
|
||||
white = '#B8C0E0' # subtext1
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#5B6078' # surface2
|
||||
red = '#ED8796' # red
|
||||
green = '#A6DA95' # green
|
||||
yellow = '#EED49F' # yellow
|
||||
blue = '#8AADF4' # blue
|
||||
magenta = '#F5BDE6' # pink
|
||||
cyan = '#8BD5CA' # teal
|
||||
white = '#A5ADCB' # subtext0
|
||||
|
||||
# Dim colors
|
||||
[colors.dim]
|
||||
black = '#494D64' # surface1
|
||||
red = '#ED8796' # red
|
||||
green = '#A6DA95' # green
|
||||
yellow = '#EED49F' # yellow
|
||||
blue = '#8AADF4' # blue
|
||||
magenta = '#F5BDE6' # pink
|
||||
cyan = '#8BD5CA' # teal
|
||||
white = '#B8C0E0' # subtext1
|
||||
@@ -0,0 +1,75 @@
|
||||
[colors.primary]
|
||||
background = '#1E1E2E' # base
|
||||
foreground = '#CDD6F4' # text
|
||||
# Bright and dim foreground colors
|
||||
dim_foreground = '#CDD6F4' # text
|
||||
bright_foreground = '#CDD6F4' # text
|
||||
|
||||
# Cursor colors
|
||||
[colors.cursor]
|
||||
text = '#1E1E2E' # base
|
||||
cursor = '#F5E0DC' # rosewater
|
||||
|
||||
[colors.vi_mode_cursor]
|
||||
text = '#1E1E2E' # base
|
||||
cursor = '#B4BEFE' # lavender
|
||||
|
||||
# Search colors
|
||||
[colors.search.matches]
|
||||
foreground = '#1E1E2E' # base
|
||||
background = '#A6ADC8' # subtext0
|
||||
|
||||
[colors.search.focused_match]
|
||||
foreground = '#1E1E2E' # base
|
||||
background = '#A6E3A1' # green
|
||||
|
||||
[colors.footer_bar]
|
||||
foreground = '#1E1E2E' # base
|
||||
background = '#A6ADC8' # subtext0
|
||||
|
||||
# Keyboard regex hints
|
||||
[colors.hints.start]
|
||||
foreground = '#1E1E2E' # base
|
||||
background = '#F9E2AF' # yellow
|
||||
|
||||
[colors.hints.end]
|
||||
foreground = '#1E1E2E' # base
|
||||
background = '#A6ADC8' # subtext0
|
||||
|
||||
# Selection colors
|
||||
[colors.selection]
|
||||
text = '#1E1E2E' # base
|
||||
background = '#F5E0DC' # rosewater
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#45475A' # surface1
|
||||
red = '#F38BA8' # red
|
||||
green = '#A6E3A1' # green
|
||||
yellow = '#F9E2AF' # yellow
|
||||
blue = '#89B4FA' # blue
|
||||
magenta = '#F5C2E7' # pink
|
||||
cyan = '#94E2D5' # teal
|
||||
white = '#BAC2DE' # subtext1
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#585B70' # surface2
|
||||
red = '#F38BA8' # red
|
||||
green = '#A6E3A1' # green
|
||||
yellow = '#F9E2AF' # yellow
|
||||
blue = '#89B4FA' # blue
|
||||
magenta = '#F5C2E7' # pink
|
||||
cyan = '#94E2D5' # teal
|
||||
white = '#A6ADC8' # subtext0
|
||||
|
||||
# Dim colors
|
||||
[colors.dim]
|
||||
black = '#45475A' # surface1
|
||||
red = '#F38BA8' # red
|
||||
green = '#A6E3A1' # green
|
||||
yellow = '#F9E2AF' # yellow
|
||||
blue = '#89B4FA' # blue
|
||||
magenta = '#F5C2E7' # pink
|
||||
cyan = '#94E2D5' # teal
|
||||
white = '#BAC2DE' # subtext1
|
||||
@@ -0,0 +1,32 @@
|
||||
# Colors (Challenger Deep)
|
||||
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#1e1c31'
|
||||
foreground = '#cbe1e7'
|
||||
|
||||
[colors.cursor]
|
||||
text = '#ff271d'
|
||||
cursor = '#fbfcfc'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#141228'
|
||||
red = '#ff5458'
|
||||
green = '#62d196'
|
||||
yellow = '#ffb378'
|
||||
blue = '#65b2ff'
|
||||
magenta = '#906cff'
|
||||
cyan = '#63f2f1'
|
||||
white = '#a6b3cc'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#565575'
|
||||
red = '#ff8080'
|
||||
green = '#95ffa4'
|
||||
yellow = '#ffe9aa'
|
||||
blue = '#91ddff'
|
||||
magenta = '#c991e1'
|
||||
cyan = '#aaffe4'
|
||||
white = '#cbe3e7'
|
||||
@@ -0,0 +1,29 @@
|
||||
# Windows 95 Color Scheme
|
||||
# To have the authentic experience in Chicago95 GTK Theme.
|
||||
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#000000'
|
||||
foreground = '#C0C7C8'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#000000'
|
||||
red = '#A80000'
|
||||
green = '#00A800'
|
||||
yellow = '#A85400'
|
||||
blue = '#0000A8'
|
||||
magenta = '#A800A8'
|
||||
cyan = '#00A8A8'
|
||||
white = '#A8A8A8'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#545454'
|
||||
red = '#FC5454'
|
||||
green = '#54FC54'
|
||||
yellow = '#FCFC54'
|
||||
blue = '#5454FC'
|
||||
magenta = '#FC54FC'
|
||||
cyan = '#54FCFC'
|
||||
white = '#FFFFFF'
|
||||
@@ -0,0 +1,30 @@
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#171d23'
|
||||
foreground = '#ffffff'
|
||||
|
||||
# Cursor colors
|
||||
[colors.cursor]
|
||||
text = '#fafafa'
|
||||
cursor = '#008b94'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#333f4a'
|
||||
red = '#d95468'
|
||||
green = '#8bd49c'
|
||||
blue = '#539afc'
|
||||
magenta = '#b62d65'
|
||||
cyan = '#70e1e8'
|
||||
white = '#b7c5d3'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#41505e'
|
||||
red = '#d95468'
|
||||
green = '#8bd49c'
|
||||
yellow = '#ebbf83'
|
||||
blue = '#5ec4ff'
|
||||
magenta = '#e27e8d'
|
||||
cyan = '#70e1e8'
|
||||
white = '#ffffff'
|
||||
@@ -0,0 +1,33 @@
|
||||
# Cyber Punk Neon
|
||||
# Source https//github.com/Roboron3042/Cyberpunk-Neon
|
||||
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#000b1e'
|
||||
foreground = '#0abdc6'
|
||||
|
||||
[colors.cursor]
|
||||
text = '#000b1e'
|
||||
cursor = '#0abdc6'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#123e7c'
|
||||
red = '#ff0000'
|
||||
green = '#d300c4'
|
||||
yellow = '#f57800'
|
||||
blue = '#123e7c'
|
||||
magenta = '#711c91'
|
||||
cyan = '#0abdc6'
|
||||
white = '#d7d7d5'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#1c61c2'
|
||||
red = '#ff0000'
|
||||
green = '#d300c4'
|
||||
yellow = '#f57800'
|
||||
blue = '#00ff00'
|
||||
magenta = '#711c91'
|
||||
cyan = '#0abdc6'
|
||||
white = '#d7d7d5'
|
||||
@@ -0,0 +1,28 @@
|
||||
# Colors (Konsole's Dark Pastels)
|
||||
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#2C2C2C'
|
||||
foreground = '#DCDCCC'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#3F3F3F'
|
||||
red = '#705050'
|
||||
green = '#60B48A'
|
||||
yellow = '#DFAF8F'
|
||||
blue = '#9AB8D7'
|
||||
magenta = '#DC8CC3'
|
||||
cyan = '#8CD0D3'
|
||||
white = '#DCDCCC'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#709080'
|
||||
red = '#DCA3A3'
|
||||
green = '#72D5A3'
|
||||
yellow = '#F0DFAF'
|
||||
blue = '#94BFF3'
|
||||
magenta = '#EC93D3'
|
||||
cyan = '#93E0E3'
|
||||
white = '#FFFFFF'
|
||||
@@ -0,0 +1,23 @@
|
||||
[colors.primary]
|
||||
background = "#1F1F1F"
|
||||
foreground = "#CCCCCC"
|
||||
|
||||
[colors.normal]
|
||||
black = "#000000"
|
||||
red = "#d6181b"
|
||||
green = "#6A9955"
|
||||
yellow = "#e4d201"
|
||||
blue = "#569cd6"
|
||||
magenta = "#bc3fbc"
|
||||
cyan = "#4EC9B0"
|
||||
white = "#e5e5e5"
|
||||
|
||||
[colors.bright]
|
||||
black = "#666666"
|
||||
red = "#ce9178"
|
||||
green = "#b5cea8"
|
||||
yellow = "#DCDCAA"
|
||||
blue = "#9cdcfe"
|
||||
magenta = "#d670d6"
|
||||
cyan = "#9cdcfe"
|
||||
white = "#e5e5e5"
|
||||
@@ -0,0 +1,34 @@
|
||||
# Dark Pride
|
||||
# A dark trans pride colour inspired theme
|
||||
|
||||
# Primary colors
|
||||
[colors.primary]
|
||||
background = '#0d0d1b'
|
||||
foreground = '#ccccce'
|
||||
|
||||
# Colors used for 'custom_cursor_colors'
|
||||
[colors.cursor]
|
||||
text = '#bbbbbb'
|
||||
cursor = '#ff0017'
|
||||
|
||||
# Colors 0 through 7
|
||||
[colors.normal]
|
||||
black = '#282828'
|
||||
red = '#ca1444'
|
||||
green = '#789aba'
|
||||
yellow = '#b3879f'
|
||||
blue = '#95569b'
|
||||
magenta = '#cb6fa1'
|
||||
cyan = '#fb6e93'
|
||||
white = '#cf98c1'
|
||||
|
||||
# Colors 8 through 15
|
||||
[colors.bright]
|
||||
black = '#98218e'
|
||||
red = '#cb515d'
|
||||
green = '#5a87b1'
|
||||
yellow = '#9c61ab'
|
||||
blue = '#9a77b1'
|
||||
magenta = '#f2a297'
|
||||
cyan = '#f4436f'
|
||||
white = '#ebdbb2'
|
||||
@@ -0,0 +1,71 @@
|
||||
# Nightfox Alacritty Colors
|
||||
## name: dawnfox
|
||||
## upstream: https://github.com/edeneast/nightfox.nvim/raw/main/extra/dawnfox/alacritty.toml
|
||||
|
||||
[colors.primary]
|
||||
background = "#faf4ed"
|
||||
foreground = "#575279"
|
||||
dim_foreground = "#4c4769"
|
||||
bright_foreground = "#625c87"
|
||||
|
||||
[colors.cursor]
|
||||
text = "#575279"
|
||||
cursor = "#625c87"
|
||||
|
||||
[colors.vi_mode_cursor]
|
||||
text = "#575279"
|
||||
cursor = "#56949f"
|
||||
|
||||
[colors.search.matches]
|
||||
foreground = "#575279"
|
||||
background = "#b8cece"
|
||||
|
||||
[colors.search.focused_match]
|
||||
foreground = "#575279"
|
||||
background = "#618774"
|
||||
|
||||
[colors.footer_bar]
|
||||
foreground = "#575279"
|
||||
background = "#ebdfe4"
|
||||
|
||||
[colors.hints.start]
|
||||
foreground = "#575279"
|
||||
background = "#d7827e"
|
||||
|
||||
[colors.hints.end]
|
||||
foreground = "#575279"
|
||||
background = "#ebdfe4"
|
||||
|
||||
[colors.selection]
|
||||
text = "#575279"
|
||||
background = "#d0d8d8"
|
||||
|
||||
[colors.normal]
|
||||
black = "#575279"
|
||||
red = "#b4637a"
|
||||
green = "#618774"
|
||||
yellow = "#ea9d34"
|
||||
blue = "#286983"
|
||||
magenta = "#907aa9"
|
||||
cyan = "#56949f"
|
||||
white = "#e5e9f0"
|
||||
|
||||
[colors.bright]
|
||||
black = "#5f5695"
|
||||
red = "#c26d85"
|
||||
green = "#629f81"
|
||||
yellow = "#eea846"
|
||||
blue = "#2d81a3"
|
||||
magenta = "#9a80b9"
|
||||
cyan = "#5ca7b4"
|
||||
white = "#e6ebf3"
|
||||
|
||||
[colors.dim]
|
||||
black = "#504c6b"
|
||||
red = "#a5576d"
|
||||
green = "#597668"
|
||||
yellow = "#dd9024"
|
||||
blue = "#295e73"
|
||||
magenta = "#816b9a"
|
||||
cyan = "#50848c"
|
||||
white = "#c8cfde"
|
||||
@@ -0,0 +1,71 @@
|
||||
# Nightfox Alacritty Colors
|
||||
## name: dayfox
|
||||
## upstream: https://github.com/edeneast/nightfox.nvim/raw/main/extra/dayfox/alacritty.toml
|
||||
|
||||
[colors.primary]
|
||||
background = "#f6f2ee"
|
||||
foreground = "#3d2b5a"
|
||||
dim_foreground = "#302b5d"
|
||||
bright_foreground = "#643f61"
|
||||
|
||||
[colors.cursor]
|
||||
text = "#3d2b5a"
|
||||
cursor = "#643f61"
|
||||
|
||||
[colors.vi_mode_cursor]
|
||||
text = "#3d2b5a"
|
||||
cursor = "#287980"
|
||||
|
||||
[colors.search.matches]
|
||||
foreground = "#3d2b5a"
|
||||
background = "#a4c1c2"
|
||||
|
||||
[colors.search.focused_match]
|
||||
foreground = "#3d2b5a"
|
||||
background = "#396847"
|
||||
|
||||
[colors.footer_bar]
|
||||
foreground = "#3d2b5a"
|
||||
background = "#d3c7bb"
|
||||
|
||||
[colors.hints.start]
|
||||
foreground = "#3d2b5a"
|
||||
background = "#955f61"
|
||||
|
||||
[colors.hints.end]
|
||||
foreground = "#3d2b5a"
|
||||
background = "#d3c7bb"
|
||||
|
||||
[colors.selection]
|
||||
text = "#3d2b5a"
|
||||
background = "#e7d2be"
|
||||
|
||||
[colors.normal]
|
||||
black = "#352c24"
|
||||
red = "#a5222f"
|
||||
green = "#396847"
|
||||
yellow = "#ac5402"
|
||||
blue = "#2848a9"
|
||||
magenta = "#6e33ce"
|
||||
cyan = "#287980"
|
||||
white = "#f2e9e1"
|
||||
|
||||
[colors.bright]
|
||||
black = "#534c45"
|
||||
red = "#b3434e"
|
||||
green = "#577f63"
|
||||
yellow = "#b86e28"
|
||||
blue = "#4863b6"
|
||||
magenta = "#8452d5"
|
||||
cyan = "#488d93"
|
||||
white = "#f4ece6"
|
||||
|
||||
[colors.dim]
|
||||
black = "#2d251f"
|
||||
red = "#8c1d28"
|
||||
green = "#30583c"
|
||||
yellow = "#924702"
|
||||
blue = "#223d90"
|
||||
magenta = "#5e2baf"
|
||||
cyan = "#22676d"
|
||||
white = "#cec6bf"
|
||||
@@ -0,0 +1,33 @@
|
||||
# Source https//github.com/tyrannicaltoucan/vim-deep-space
|
||||
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#1b202a'
|
||||
foreground = '#9aa7bd'
|
||||
|
||||
# Colors the cursor will use if `custom_cursor_colors` is true
|
||||
[colors.cursor]
|
||||
text = '#232936'
|
||||
cursor = '#51617d'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#1b202a'
|
||||
red = '#b15e7c'
|
||||
green = '#709d6c'
|
||||
yellow = '#b5a262'
|
||||
blue = '#608cc3'
|
||||
magenta = '#8f72bf'
|
||||
cyan = '#56adb7'
|
||||
white = '#9aa7bd'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#232936'
|
||||
red = '#b3785d'
|
||||
green = '#709d6c'
|
||||
yellow = '#d5b875'
|
||||
blue = '#608cc3'
|
||||
magenta = '#c47ebd'
|
||||
cyan = '#51617d'
|
||||
white = '#9aa7bd'
|
||||
@@ -0,0 +1,17 @@
|
||||
# Colors (Doom One)
|
||||
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#282c34'
|
||||
foreground = '#bbc2cf'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#282c34'
|
||||
red = '#ff6c6b'
|
||||
green = '#98be65'
|
||||
yellow = '#ecbe7b'
|
||||
blue = '#51afef'
|
||||
magenta = '#c678dd'
|
||||
cyan = '#46d9ff'
|
||||
white = '#bbc2cf'
|
||||
@@ -0,0 +1,28 @@
|
||||
# Colors (Dracula)
|
||||
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#282a36'
|
||||
foreground = '#f8f8f2'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#000000'
|
||||
red = '#ff5555'
|
||||
green = '#50fa7b'
|
||||
yellow = '#f1fa8c'
|
||||
blue = '#bd93f9'
|
||||
magenta = '#ff79c6'
|
||||
cyan = '#8be9fd'
|
||||
white = '#bbbbbb'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#555555'
|
||||
red = '#ff5555'
|
||||
green = '#50fa7b'
|
||||
yellow = '#f1fa8c'
|
||||
blue = '#caa9fa'
|
||||
magenta = '#ff79c6'
|
||||
cyan = '#8be9fd'
|
||||
white = '#ffffff'
|
||||
@@ -0,0 +1,29 @@
|
||||
# Colors (Dracula+)
|
||||
|
||||
[colors.primary]
|
||||
background = '#212121'
|
||||
foreground = '#F8F8F2'
|
||||
|
||||
[colors.cursor]
|
||||
text = '#0E1415'
|
||||
cursor = '#ECEFF4'
|
||||
|
||||
[colors.normal]
|
||||
black = '#21222C'
|
||||
red = '#FF5555'
|
||||
green = '#50FA7B'
|
||||
yellow = '#FFCB6B'
|
||||
blue = '#82AAFF'
|
||||
magenta = '#C792EA'
|
||||
cyan = '#8BE9FD'
|
||||
white = '#F8F9F2'
|
||||
|
||||
[colors.bright]
|
||||
black = '#545454'
|
||||
red = '#FF6E6E'
|
||||
green = '#69FF94'
|
||||
yellow = '#FFCB6B'
|
||||
blue = '#D6ACFF'
|
||||
magenta = '#FF92DF'
|
||||
cyan = '#A4FFFF'
|
||||
white = '#F8F8F2'
|
||||
@@ -0,0 +1,71 @@
|
||||
# Nightfox Alacritty Colors
|
||||
## name: duskfox
|
||||
## upstream: https://github.com/edeneast/nightfox.nvim/raw/main/extra/duskfox/alacritty.toml
|
||||
|
||||
[colors.primary]
|
||||
background = "#232136"
|
||||
foreground = "#e0def4"
|
||||
dim_foreground = "#cdcbe0"
|
||||
bright_foreground = "#eae8ff"
|
||||
|
||||
[colors.cursor]
|
||||
text = "#e0def4"
|
||||
cursor = "#cdcbe0"
|
||||
|
||||
[colors.vi_mode_cursor]
|
||||
text = "#e0def4"
|
||||
cursor = "#9ccfd8"
|
||||
|
||||
[colors.search.matches]
|
||||
foreground = "#e0def4"
|
||||
background = "#63577d"
|
||||
|
||||
[colors.search.focused_match]
|
||||
foreground = "#e0def4"
|
||||
background = "#a3be8c"
|
||||
|
||||
[colors.footer_bar]
|
||||
foreground = "#e0def4"
|
||||
background = "#373354"
|
||||
|
||||
[colors.hints.start]
|
||||
foreground = "#e0def4"
|
||||
background = "#ea9a97"
|
||||
|
||||
[colors.hints.end]
|
||||
foreground = "#e0def4"
|
||||
background = "#373354"
|
||||
|
||||
[colors.selection]
|
||||
text = "#e0def4"
|
||||
background = "#433c59"
|
||||
|
||||
[colors.normal]
|
||||
black = "#393552"
|
||||
red = "#eb6f92"
|
||||
green = "#a3be8c"
|
||||
yellow = "#f6c177"
|
||||
blue = "#569fba"
|
||||
magenta = "#c4a7e7"
|
||||
cyan = "#9ccfd8"
|
||||
white = "#e0def4"
|
||||
|
||||
[colors.bright]
|
||||
black = "#47407d"
|
||||
red = "#f083a2"
|
||||
green = "#b1d196"
|
||||
yellow = "#f9cb8c"
|
||||
blue = "#65b1cd"
|
||||
magenta = "#ccb1ed"
|
||||
cyan = "#a6dae3"
|
||||
white = "#e2e0f7"
|
||||
|
||||
[colors.dim]
|
||||
black = "#322e42"
|
||||
red = "#d84f76"
|
||||
green = "#8aa872"
|
||||
yellow = "#e6a852"
|
||||
blue = "#4a869c"
|
||||
magenta = "#a580d2"
|
||||
cyan = "#7bb8c1"
|
||||
white = "#b1acde"
|
||||
@@ -0,0 +1,29 @@
|
||||
# Theme: enfocado_dark
|
||||
# Source: https://github.com/wuelnerdotexe/vim-enfocado
|
||||
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#181818'
|
||||
foreground = '#b9b9b9'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#3b3b3b'
|
||||
red = '#ed4a46'
|
||||
green = '#70b433'
|
||||
yellow = '#dbb32d'
|
||||
blue = '#368aeb'
|
||||
magenta = '#eb6eb7'
|
||||
cyan = '#3fc5b7'
|
||||
white = '#b9b9b9'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#777777'
|
||||
red = '#ff5e56'
|
||||
green = '#83c746'
|
||||
yellow = '#efc541'
|
||||
blue = '#4f9cfe'
|
||||
magenta = '#ff81ca'
|
||||
cyan = '#56d8c9'
|
||||
white = '#dedede'
|
||||
@@ -0,0 +1,29 @@
|
||||
# Theme: enfocado_light
|
||||
# Source: https://github.com/wuelnerdotexe/vim-enfocado
|
||||
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#ffffff'
|
||||
foreground = '#474747'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#282828'
|
||||
red = '#d6000c'
|
||||
green = '#1d9700'
|
||||
yellow = '#c49700'
|
||||
blue = '#0064e4'
|
||||
magenta = '#dd0f9d'
|
||||
cyan = '#00ad9c'
|
||||
white = '#cdcdcd'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#878787'
|
||||
red = '#df0000'
|
||||
green = '#008400'
|
||||
yellow = '#af8500'
|
||||
blue = '#0054cf'
|
||||
magenta = '#c7008b'
|
||||
cyan = '#009a8a'
|
||||
white = '#ebebeb'
|
||||
@@ -0,0 +1,28 @@
|
||||
# Colors (Everforest Dark)
|
||||
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#2d353b'
|
||||
foreground = '#d3c6aa'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#475258'
|
||||
red = '#e67e80'
|
||||
green = '#a7c080'
|
||||
yellow = '#dbbc7f'
|
||||
blue = '#7fbbb3'
|
||||
magenta = '#d699b6'
|
||||
cyan = '#83c092'
|
||||
white = '#d3c6aa'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#475258'
|
||||
red = '#e67e80'
|
||||
green = '#a7c080'
|
||||
yellow = '#dbbc7f'
|
||||
blue = '#7fbbb3'
|
||||
magenta = '#d699b6'
|
||||
cyan = '#83c092'
|
||||
white = '#d3c6aa'
|
||||
@@ -0,0 +1,28 @@
|
||||
# Colors (Everforest Light)
|
||||
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#fdf6e3'
|
||||
foreground = '#5c6a72'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#5c6a72'
|
||||
red = '#f85552'
|
||||
green = '#8da101'
|
||||
yellow = '#dfa000'
|
||||
blue = '#3a94c5'
|
||||
magenta = '#df69ba'
|
||||
cyan = '#35a77c'
|
||||
white = '#e0dcc7'
|
||||
|
||||
# Bright Colors
|
||||
[colors.bright]
|
||||
black = '#5c6a72'
|
||||
red = '#f85552'
|
||||
green = '#8da101'
|
||||
yellow = '#dfa000'
|
||||
blue = '#3a94c5'
|
||||
magenta = '#df69ba'
|
||||
cyan = '#35a77c'
|
||||
white = '#e0dcc7'
|
||||
@@ -0,0 +1,33 @@
|
||||
# falcon colorscheme for alacritty
|
||||
# by fenetikm, https//github.com/fenetikm/falcon
|
||||
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#020221'
|
||||
foreground = '#b4b4b9'
|
||||
|
||||
[colors.cursor]
|
||||
text = '#020221'
|
||||
cursor = '#ffe8c0'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#000004'
|
||||
red = '#ff3600'
|
||||
green = '#718e3f'
|
||||
yellow = '#ffc552'
|
||||
blue = '#635196'
|
||||
magenta = '#ff761a'
|
||||
cyan = '#34bfa4'
|
||||
white = '#b4b4b9'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#020221'
|
||||
red = '#ff8e78'
|
||||
green = '#b1bf75'
|
||||
yellow = '#ffd392'
|
||||
blue = '#99a4bc'
|
||||
magenta = '#ffb07b'
|
||||
cyan = '#8bccbf'
|
||||
white = '#f8f8ff'
|
||||
@@ -0,0 +1,23 @@
|
||||
[colors.primary]
|
||||
background = '#272a34'
|
||||
foreground = '#FFFFFF'
|
||||
|
||||
[colors.normal]
|
||||
black = '#1F2229'
|
||||
red = '#EC0101'
|
||||
green = '#47D4B9'
|
||||
yellow = '#FF8A18'
|
||||
blue = '#277FFF'
|
||||
magenta = '#D71655'
|
||||
cyan = '#05A1F7'
|
||||
white = '#FFFFFF'
|
||||
|
||||
[colors.bright]
|
||||
black = '#1F2229'
|
||||
red = '#D41919'
|
||||
green = '#5EBDAB'
|
||||
yellow = '#FEA44C'
|
||||
blue = '#367bf0'
|
||||
magenta = '#BF2E5D'
|
||||
cyan = '#49AEE6'
|
||||
white = '#FFFFFF'
|
||||
@@ -0,0 +1,46 @@
|
||||
# based on https//stephango.com/flexoki and https//github.com/kepano/flexoki/tree/main/alacritty
|
||||
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#282726'
|
||||
foreground = '#FFFCF0'
|
||||
dim_foreground = '#FFFCF0'
|
||||
bright_foreground = '#FFFCF0'
|
||||
|
||||
# Cursor colors
|
||||
[colors.cursor]
|
||||
text = '#FFFCF0'
|
||||
cursor = '#FFFCF0'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#100F0F'
|
||||
red = '#AF3029'
|
||||
green = '#66800B'
|
||||
yellow = '#AD8301'
|
||||
blue = '#205EA6'
|
||||
magenta = '#A02F6F'
|
||||
cyan = '#24837B'
|
||||
white = '#FFFCF0'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#100F0F'
|
||||
red = '#D14D41'
|
||||
green = '#879A39'
|
||||
yellow = '#D0A215'
|
||||
blue = '#4385BE'
|
||||
magenta = '#CE5D97'
|
||||
cyan = '#3AA99F'
|
||||
white = '#FFFCF0'
|
||||
|
||||
# Dim colors
|
||||
[colors.dim]
|
||||
black = '#100F0F'
|
||||
red = '#AF3029'
|
||||
green = '#66800B'
|
||||
yellow = '#AD8301'
|
||||
blue = '#205EA6'
|
||||
magenta = '#A02F6F'
|
||||
cyan = '#24837B'
|
||||
white = '#FFFCF0'
|
||||
@@ -0,0 +1,36 @@
|
||||
# github Alacritty Colors
|
||||
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#24292e'
|
||||
foreground = '#d1d5da'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#586069'
|
||||
red = '#ea4a5a'
|
||||
green = '#34d058'
|
||||
yellow = '#ffea7f'
|
||||
blue = '#2188ff'
|
||||
magenta = '#b392f0'
|
||||
cyan = '#39c5cf'
|
||||
white = '#d1d5da'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#959da5'
|
||||
red = '#f97583'
|
||||
green = '#85e89d'
|
||||
yellow = '#ffea7f'
|
||||
blue = '#79b8ff'
|
||||
magenta = '#b392f0'
|
||||
cyan = '#56d4dd'
|
||||
white = '#fafbfc'
|
||||
|
||||
[[colors.indexed_colors]]
|
||||
index = 16
|
||||
color = '#d18616'
|
||||
|
||||
[[colors.indexed_colors]]
|
||||
index = 17
|
||||
color = '#f97583'
|
||||
@@ -0,0 +1,36 @@
|
||||
# github Alacritty Colors
|
||||
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#0d1117'
|
||||
foreground = '#b3b1ad'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#484f58'
|
||||
red = '#ff7b72'
|
||||
green = '#3fb950'
|
||||
yellow = '#d29922'
|
||||
blue = '#58a6ff'
|
||||
magenta = '#bc8cff'
|
||||
cyan = '#39c5cf'
|
||||
white = '#b1bac4'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#6e7681'
|
||||
red = '#ffa198'
|
||||
green = '#56d364'
|
||||
yellow = '#e3b341'
|
||||
blue = '#79c0ff'
|
||||
magenta = '#d2a8ff'
|
||||
cyan = '#56d4dd'
|
||||
white = '#f0f6fc'
|
||||
|
||||
[[colors.indexed_colors]]
|
||||
index = 16
|
||||
color = '#d18616'
|
||||
|
||||
[[colors.indexed_colors]]
|
||||
index = 17
|
||||
color = '#ffa198'
|
||||
@@ -0,0 +1,36 @@
|
||||
# github Alacritty Colors
|
||||
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#0d1117'
|
||||
foreground = '#b3b1ad'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#484f58'
|
||||
red = '#ff7b72'
|
||||
green = '#3fb950'
|
||||
yellow = '#d29922'
|
||||
blue = '#58a6ff'
|
||||
magenta = '#bc8cff'
|
||||
cyan = '#39c5cf'
|
||||
white = '#b1bac4'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#6e7681'
|
||||
red = '#ffa198'
|
||||
green = '#56d364'
|
||||
yellow = '#e3b341'
|
||||
blue = '#79c0ff'
|
||||
magenta = '#d2a8ff'
|
||||
cyan = '#56d4dd'
|
||||
white = '#f0f6fc'
|
||||
|
||||
[[colors.indexed_colors]]
|
||||
index = 16
|
||||
color = '#d18616'
|
||||
|
||||
[[colors.indexed_colors]]
|
||||
index = 17
|
||||
color = '#ffa198'
|
||||
@@ -0,0 +1,36 @@
|
||||
# github Alacritty Colors
|
||||
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#22272e'
|
||||
foreground = '#768390'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#545d68'
|
||||
red = '#f47067'
|
||||
green = '#57ab5a'
|
||||
yellow = '#c69026'
|
||||
blue = '#539bf5'
|
||||
magenta = '#b083f0'
|
||||
cyan = '#39c5cf'
|
||||
white = '#909dab'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#636e7b'
|
||||
red = '#ff938a'
|
||||
green = '#6bc46d'
|
||||
yellow = '#daaa3f'
|
||||
blue = '#6cb6ff'
|
||||
magenta = '#dcbdfb'
|
||||
cyan = '#56d4dd'
|
||||
white = '#cdd9e5'
|
||||
|
||||
[[colors.indexed_colors]]
|
||||
index = 16
|
||||
color = '#d18616'
|
||||
|
||||
[[colors.indexed_colors]]
|
||||
index = 17
|
||||
color = '#ff938a'
|
||||
@@ -0,0 +1,33 @@
|
||||
# (Github Dark High Contrast) Colors for Alacritty
|
||||
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#0a0c10'
|
||||
foreground = '#f0f3f6'
|
||||
|
||||
# Cursor colors
|
||||
[colors.cursor]
|
||||
text = '#0a0c10'
|
||||
cursor = '#f0f3f6'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#7a828e'
|
||||
red = '#ff9492'
|
||||
green = '#26cd4d'
|
||||
yellow = '#f0b72f'
|
||||
blue = '#71b7ff'
|
||||
magenta = '#cb9eff'
|
||||
cyan = '#39c5cf'
|
||||
white = '#d9dee3'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#9ea7b3'
|
||||
red = '#ffb1af'
|
||||
green = '#4ae168'
|
||||
yellow = '#f7c843'
|
||||
blue = '#91cbff'
|
||||
magenta = '#cb9eff'
|
||||
cyan = '#39c5cf'
|
||||
white = '#d9dee3'
|
||||
@@ -0,0 +1,33 @@
|
||||
# (Github Dark Tritanopia) Colors for Alacritty
|
||||
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#0d1117'
|
||||
foreground = '#c9d1d9'
|
||||
|
||||
# Cursor colors
|
||||
[colors.cursor]
|
||||
text = '#0d1117'
|
||||
cursor = '#c9d1d9'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#484f58'
|
||||
red = '#ff7b72'
|
||||
green = '#58a6ff'
|
||||
yellow = '#d29922'
|
||||
blue = '#58a6ff'
|
||||
magenta = '#bc8cff'
|
||||
cyan = '#39c5cf'
|
||||
white = '#b1bac4'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#6e7681'
|
||||
red = '#ffa198'
|
||||
green = '#79c0ff'
|
||||
yellow = '#e3b341'
|
||||
blue = '#79c0ff'
|
||||
magenta = '#bc8cff'
|
||||
cyan = '#39c5cf'
|
||||
white = '#b1bac4'
|
||||
@@ -0,0 +1,36 @@
|
||||
# github Alacritty Colors
|
||||
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#ffffff'
|
||||
foreground = '#24292f'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#24292e'
|
||||
red = '#d73a49'
|
||||
green = '#28a745'
|
||||
yellow = '#dbab09'
|
||||
blue = '#0366d6'
|
||||
magenta = '#5a32a3'
|
||||
cyan = '#0598bc'
|
||||
white = '#6a737d'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#959da5'
|
||||
red = '#cb2431'
|
||||
green = '#22863a'
|
||||
yellow = '#b08800'
|
||||
blue = '#005cc5'
|
||||
magenta = '#5a32a3'
|
||||
cyan = '#3192aa'
|
||||
white = '#d1d5da'
|
||||
|
||||
[[colors.indexed_colors]]
|
||||
index = 16
|
||||
color = '#d18616'
|
||||
|
||||
[[colors.indexed_colors]]
|
||||
index = 17
|
||||
color = '#cb2431'
|
||||
@@ -0,0 +1,36 @@
|
||||
# github Alacritty Colors
|
||||
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#ffffff'
|
||||
foreground = '#0E1116'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#24292f'
|
||||
red = '#cf222e'
|
||||
green = '#116329'
|
||||
yellow = '#4d2d00'
|
||||
blue = '#0969da'
|
||||
magenta = '#8250df'
|
||||
cyan = '#1b7c83'
|
||||
white = '#6e7781'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#57606a'
|
||||
red = '#a40e26'
|
||||
green = '#1a7f37'
|
||||
yellow = '#633c01'
|
||||
blue = '#218bff'
|
||||
magenta = '#a475f9'
|
||||
cyan = '#3192aa'
|
||||
white = '#8c959f'
|
||||
|
||||
[[colors.indexed_colors]]
|
||||
index = 16
|
||||
color = '#d18616'
|
||||
|
||||
[[colors.indexed_colors]]
|
||||
index = 17
|
||||
color = '#a40e26'
|
||||
@@ -0,0 +1,36 @@
|
||||
# github Alacritty Colors
|
||||
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#ffffff'
|
||||
foreground = '#0E1116'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#24292f'
|
||||
red = '#cf222e'
|
||||
green = '#116329'
|
||||
yellow = '#4d2d00'
|
||||
blue = '#0969da'
|
||||
magenta = '#8250df'
|
||||
cyan = '#1b7c83'
|
||||
white = '#6e7781'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#57606a'
|
||||
red = '#a40e26'
|
||||
green = '#1a7f37'
|
||||
yellow = '#633c01'
|
||||
blue = '#218bff'
|
||||
magenta = '#a475f9'
|
||||
cyan = '#3192aa'
|
||||
white = '#8c959f'
|
||||
|
||||
[[colors.indexed_colors]]
|
||||
index = 16
|
||||
color = '#d18616'
|
||||
|
||||
[[colors.indexed_colors]]
|
||||
index = 17
|
||||
color = '#a40e26'
|
||||
@@ -0,0 +1,33 @@
|
||||
# (Github Light High Contrast) Colors for Alacritty
|
||||
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#ffffff'
|
||||
foreground = '#010409'
|
||||
|
||||
# Cursor colors
|
||||
[colors.cursor]
|
||||
text = '#ffffff'
|
||||
cursor = '#0e1116'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#0e1116'
|
||||
red = '#a0111f'
|
||||
green = '#024c1a'
|
||||
yellow = '#3f2200'
|
||||
blue = '#0349b4'
|
||||
magenta = '#622cbc'
|
||||
cyan = '#1b7c83'
|
||||
white = '#66707b'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#4b535d'
|
||||
red = '#86061d'
|
||||
green = '#055d20'
|
||||
yellow = '#4e2c00'
|
||||
blue = '#1168e3'
|
||||
magenta = '#622cbc'
|
||||
cyan = '#1b7c83'
|
||||
white = '#66707b'
|
||||
@@ -0,0 +1,33 @@
|
||||
# (Github Light Tritanopia) Colors for Alacritty
|
||||
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#ffffff'
|
||||
foreground = '#1b1f24'
|
||||
|
||||
# Cursor colors
|
||||
[colors.cursor]
|
||||
text = '#ffffff'
|
||||
cursor = '#24292f'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#24292f'
|
||||
red = '#cf222e'
|
||||
green = '#0550ae'
|
||||
yellow = '#4d2d00'
|
||||
blue = '#0969da'
|
||||
magenta = '#8250df'
|
||||
cyan = '#1b7c83'
|
||||
white = '#6e7781'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#57606a'
|
||||
red = '#a40e26'
|
||||
green = '#0969da'
|
||||
yellow = '#633c01'
|
||||
blue = '#218bff'
|
||||
magenta = '#8250df'
|
||||
cyan = '#1b7c83'
|
||||
white = '#6e7781'
|
||||
@@ -0,0 +1,28 @@
|
||||
# Gnome (Gnome Terminal Default)
|
||||
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#1e1e1e'
|
||||
foreground = '#ffffff'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#171421'
|
||||
red = '#c01c28'
|
||||
green = '#26a269'
|
||||
yellow = '#a2734c'
|
||||
blue = '#12488b'
|
||||
magenta = '#a347ba'
|
||||
cyan = '#2aa1b3'
|
||||
white = '#d0cfcc'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#5e5c64'
|
||||
red = '#f66151'
|
||||
green = '#33d17a'
|
||||
yellow = '#e9ad0c'
|
||||
blue = '#2a7bde'
|
||||
magenta = '#c061cb'
|
||||
cyan = '#33c7de'
|
||||
white = '#ffffff'
|
||||
@@ -0,0 +1,23 @@
|
||||
[colors.primary]
|
||||
background = '#1d1f21'
|
||||
foreground = '#c5c8c6'
|
||||
|
||||
[colors.normal]
|
||||
black = '#1d1f21'
|
||||
red = '#cc342b'
|
||||
green = '#198844'
|
||||
yellow = '#fba922'
|
||||
blue = '#3971ed'
|
||||
magenta = '#a36ac7'
|
||||
cyan = '#3971ed'
|
||||
white = '#c5c8c6'
|
||||
|
||||
[colors.bright]
|
||||
black = '#969896'
|
||||
red = '#cc342b'
|
||||
green = '#198844'
|
||||
yellow = '#fba922'
|
||||
blue = '#3971ed'
|
||||
magenta = '#a36ac7'
|
||||
cyan = '#3971ed'
|
||||
white = '#ffffff'
|
||||
@@ -0,0 +1,28 @@
|
||||
# Colors (Gotham)
|
||||
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#0a0f14'
|
||||
foreground = '#98d1ce'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#0a0f14'
|
||||
red = '#c33027'
|
||||
green = '#26a98b'
|
||||
yellow = '#edb54b'
|
||||
blue = '#195465'
|
||||
magenta = '#4e5165'
|
||||
cyan = '#33859d'
|
||||
white = '#98d1ce'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#10151b'
|
||||
red = '#d26939'
|
||||
green = '#081f2d'
|
||||
yellow = '#245361'
|
||||
blue = '#093748'
|
||||
magenta = '#888ba5'
|
||||
cyan = '#599caa'
|
||||
white = '#d3ebe9'
|
||||
@@ -0,0 +1,26 @@
|
||||
# author: rexim
|
||||
# from: https://github.com/rexim/gruber-darker-theme
|
||||
|
||||
[colors.primary]
|
||||
background = "#181818"
|
||||
foreground = "#E4E4E4"
|
||||
|
||||
[colors.normal]
|
||||
black = "#181818"
|
||||
red = "#F43841"
|
||||
green = "#73D936"
|
||||
yellow = "#FFDD33"
|
||||
blue = "#96A6C8"
|
||||
magenta = "#9E95C7"
|
||||
cyan = "#95A99F"
|
||||
white = "#E4E4E4"
|
||||
|
||||
[colors.bright]
|
||||
black = "#52494E"
|
||||
red = "#FF4F58"
|
||||
green = "#73D936"
|
||||
yellow = "#FFDD33"
|
||||
blue = "#96A6C8"
|
||||
magenta = "#AFAFD7"
|
||||
cyan = "#95A99F"
|
||||
white = "#F5F5F5"
|
||||
@@ -0,0 +1,30 @@
|
||||
# Colors (Gruvbox dark)
|
||||
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
# hard contrast background = = '#1d2021'
|
||||
background = '#282828'
|
||||
# soft contrast background = = '#32302f'
|
||||
foreground = '#ebdbb2'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#282828'
|
||||
red = '#cc241d'
|
||||
green = '#98971a'
|
||||
yellow = '#d79921'
|
||||
blue = '#458588'
|
||||
magenta = '#b16286'
|
||||
cyan = '#689d6a'
|
||||
white = '#a89984'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#928374'
|
||||
red = '#fb4934'
|
||||
green = '#b8bb26'
|
||||
yellow = '#fabd2f'
|
||||
blue = '#83a598'
|
||||
magenta = '#d3869b'
|
||||
cyan = '#8ec07c'
|
||||
white = '#ebdbb2'
|
||||
@@ -0,0 +1,30 @@
|
||||
# Colors (Gruvbox light)
|
||||
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
# hard contrast background = = '#f9f5d7'
|
||||
background = '#fbf1c7'
|
||||
# soft contrast background = = '#f2e5bc'
|
||||
foreground = '#3c3836'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#fbf1c7'
|
||||
red = '#cc241d'
|
||||
green = '#98971a'
|
||||
yellow = '#d79921'
|
||||
blue = '#458588'
|
||||
magenta = '#b16286'
|
||||
cyan = '#689d6a'
|
||||
white = '#7c6f64'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#928374'
|
||||
red = '#9d0006'
|
||||
green = '#79740e'
|
||||
yellow = '#b57614'
|
||||
blue = '#076678'
|
||||
magenta = '#8f3f71'
|
||||
cyan = '#427b58'
|
||||
white = '#3c3836'
|
||||
@@ -0,0 +1,25 @@
|
||||
# Colors (Gruvbox Material Dark Medium)
|
||||
|
||||
[colors.primary]
|
||||
background = '#282828'
|
||||
foreground = '#dfbf8e'
|
||||
|
||||
[colors.normal]
|
||||
black = '#665c54'
|
||||
red = '#ea6962'
|
||||
green = '#a9b665'
|
||||
yellow = '#e78a4e'
|
||||
blue = '#7daea3'
|
||||
magenta = '#d3869b'
|
||||
cyan = '#89b482'
|
||||
white = '#dfbf8e'
|
||||
|
||||
[colors.bright]
|
||||
black = '#928374'
|
||||
red = '#ea6962'
|
||||
green = '#a9b665'
|
||||
yellow = '#e3a84e'
|
||||
blue = '#7daea3'
|
||||
magenta = '#d3869b'
|
||||
cyan = '#89b482'
|
||||
white = '#dfbf8e'
|
||||
@@ -0,0 +1,28 @@
|
||||
# Colors (Gruvbox Material Hard Dark)
|
||||
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#1d2021'
|
||||
foreground = '#d4be98'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#32302f'
|
||||
red = '#ea6962'
|
||||
green = '#a9b665'
|
||||
yellow = '#d8a657'
|
||||
blue = '#7daea3'
|
||||
magenta = '#d3869b'
|
||||
cyan = '#89b482'
|
||||
white = '#d4be98'
|
||||
|
||||
# Bright colors (same as normal colors)
|
||||
[colors.bright]
|
||||
black = '#32302f'
|
||||
red = '#ea6962'
|
||||
green = '#a9b665'
|
||||
yellow = '#d8a657'
|
||||
blue = '#7daea3'
|
||||
magenta = '#d3869b'
|
||||
cyan = '#89b482'
|
||||
white = '#d4be98'
|
||||
@@ -0,0 +1,28 @@
|
||||
# Colors (Gruvbox Material Hard Light)
|
||||
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#f9f5d7'
|
||||
foreground = '#654735'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#654735'
|
||||
red = '#c14a4a'
|
||||
green = '#6c782e'
|
||||
yellow = '#b47109'
|
||||
blue = '#45707a'
|
||||
magenta = '#945e80'
|
||||
cyan = '#4c7a5d'
|
||||
white = '#f2e5bc'
|
||||
|
||||
# Bright colors (same as normal colors)
|
||||
[colors.bright]
|
||||
black = '#654735'
|
||||
red = '#c14a4a'
|
||||
green = '#6c782e'
|
||||
yellow = '#b47109'
|
||||
blue = '#45707a'
|
||||
magenta = '#945e80'
|
||||
cyan = '#4c7a5d'
|
||||
white = '#f2e5bc'
|
||||
@@ -0,0 +1,28 @@
|
||||
# Colors (Gruvbox Material Medium Dark)
|
||||
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#282828'
|
||||
foreground = '#d4be98'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#3c3836'
|
||||
red = '#ea6962'
|
||||
green = '#a9b665'
|
||||
yellow = '#d8a657'
|
||||
blue = '#7daea3'
|
||||
magenta = '#d3869b'
|
||||
cyan = '#89b482'
|
||||
white = '#d4be98'
|
||||
|
||||
# Bright colors (same as normal colors)
|
||||
[colors.bright]
|
||||
black = '#3c3836'
|
||||
red = '#ea6962'
|
||||
green = '#a9b665'
|
||||
yellow = '#d8a657'
|
||||
blue = '#7daea3'
|
||||
magenta = '#d3869b'
|
||||
cyan = '#89b482'
|
||||
white = '#d4be98'
|
||||
@@ -0,0 +1,28 @@
|
||||
# Colors (Gruvbox Material Medium Light)
|
||||
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#fbf1c7'
|
||||
foreground = '#654735'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#654735'
|
||||
red = '#c14a4a'
|
||||
green = '#6c782e'
|
||||
yellow = '#b47109'
|
||||
blue = '#45707a'
|
||||
magenta = '#945e80'
|
||||
cyan = '#4c7a5d'
|
||||
white = '#eee0b7'
|
||||
|
||||
# Bright colors (same as normal colors)
|
||||
[colors.bright]
|
||||
black = '#654735'
|
||||
red = '#c14a4a'
|
||||
green = '#6c782e'
|
||||
yellow = '#b47109'
|
||||
blue = '#45707a'
|
||||
magenta = '#945e80'
|
||||
cyan = '#4c7a5d'
|
||||
white = '#eee0b7'
|
||||
@@ -0,0 +1,33 @@
|
||||
# hardhacker colorscheme for alacritty
|
||||
# by xin wu, https//github.com/hardhackerlabs/theme-alacritty
|
||||
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#282433'
|
||||
foreground = '#eee9fc'
|
||||
|
||||
[colors.cursor]
|
||||
text = '#eee9fc'
|
||||
cursor = '#eee9fc'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#282433'
|
||||
red = '#e965a5'
|
||||
green = '#b1f2a7'
|
||||
yellow = '#ebde76'
|
||||
blue = '#b1baf4'
|
||||
magenta = '#e192ef'
|
||||
cyan = '#b3f4f3'
|
||||
white = '#eee9fc'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#3f3951'
|
||||
red = '#e965a5'
|
||||
green = '#b1f2a7'
|
||||
yellow = '#ebde76'
|
||||
blue = '#b1baf4'
|
||||
magenta = '#e192ef'
|
||||
cyan = '#b3f4f3'
|
||||
white = '#eee9fc'
|
||||
@@ -0,0 +1,23 @@
|
||||
[colors.primary]
|
||||
background = '#242829'
|
||||
foreground = '#dcd7d7'
|
||||
|
||||
[colors.normal]
|
||||
black = '#242829'
|
||||
red = '#df2683'
|
||||
green = '#13868c'
|
||||
yellow = '#fcfcdf'
|
||||
blue = '#1a86b9'
|
||||
magenta = '#bc7fd2'
|
||||
cyan = '#7cc7d6'
|
||||
white = '#4a4b4b'
|
||||
|
||||
[colors.bright]
|
||||
black = '#7b8b99'
|
||||
red = '#df2683'
|
||||
green = '#13868c'
|
||||
yellow = '#fcfcdf'
|
||||
blue = '#1a86b9'
|
||||
magenta = '#bc7fd2'
|
||||
cyan = '#7cc7d6'
|
||||
white = '#dcd7d7'
|
||||
@@ -0,0 +1,33 @@
|
||||
# Colors (High Contrast)
|
||||
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#444444'
|
||||
foreground = '#dddddd'
|
||||
|
||||
# Colors the cursor will use if `custom_cursor_colors` is true
|
||||
[colors.cursor]
|
||||
text = '#aaaaaa'
|
||||
cursor = '#ffffff'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#000000'
|
||||
red = '#ff0000'
|
||||
green = '#00ff00'
|
||||
yellow = '#ffff00'
|
||||
blue = '#0000ff'
|
||||
magenta = '#ff00ff'
|
||||
cyan = '#00ffff'
|
||||
white = '#ffffff'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#000000'
|
||||
red = '#ff0000'
|
||||
green = '#00ff00'
|
||||
yellow = '#ffff00'
|
||||
blue = '#0000ff'
|
||||
magenta = '#ff00ff'
|
||||
cyan = '#00ffff'
|
||||
white = '#ffffff'
|
||||
@@ -0,0 +1,28 @@
|
||||
# Colors (Horizon Dark)
|
||||
|
||||
# Primary colors
|
||||
[colors.primary]
|
||||
background = '#1c1e26'
|
||||
foreground = '#e0e0e0'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#16161c'
|
||||
red = '#e95678'
|
||||
green = '#29d398'
|
||||
yellow = '#fab795'
|
||||
blue = '#26bbd9'
|
||||
magenta = '#ee64ac'
|
||||
cyan = '#59e1e3'
|
||||
white = '#d5d8da'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#5b5858'
|
||||
red = '#ec6a88'
|
||||
green = '#3fdaa4'
|
||||
yellow = '#fbc3a7'
|
||||
blue = '#3fc4de'
|
||||
magenta = '#f075b5'
|
||||
cyan = '#6be4e6'
|
||||
white = '#d5d8da'
|
||||
@@ -0,0 +1,32 @@
|
||||
# Colors (Hyper)
|
||||
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#000000'
|
||||
foreground = '#ffffff'
|
||||
|
||||
[colors.cursor]
|
||||
text = '#F81CE5'
|
||||
cursor = '#ffffff'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#000000'
|
||||
red = '#fe0100'
|
||||
green = '#33ff00'
|
||||
yellow = '#feff00'
|
||||
blue = '#0066ff'
|
||||
magenta = '#cc00ff'
|
||||
cyan = '#00ffff'
|
||||
white = '#d0d0d0'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#808080'
|
||||
red = '#fe0100'
|
||||
green = '#33ff00'
|
||||
yellow = '#feff00'
|
||||
blue = '#0066ff'
|
||||
magenta = '#cc00ff'
|
||||
cyan = '#00ffff'
|
||||
white = '#FFFFFF'
|
||||
@@ -0,0 +1,29 @@
|
||||
# Inferno theme
|
||||
# Source https//github.com/hafiz-muhammad/inferno-alacritty-theme
|
||||
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#270d06'
|
||||
foreground = '#d9d9d9'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#330000'
|
||||
red = '#ff3300'
|
||||
green = '#ff6600'
|
||||
yellow = '#ff9900'
|
||||
blue = '#ffcc00'
|
||||
magenta = '#ff6600'
|
||||
cyan = '#ff9900'
|
||||
white = '#d9d9d9'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#663300'
|
||||
red = '#ff6633'
|
||||
green = '#ff9966'
|
||||
yellow = '#ffcc99'
|
||||
blue = '#ffcc33'
|
||||
magenta = '#ff9966'
|
||||
cyan = '#ffcc99'
|
||||
white = '#d9d9d9'
|
||||
@@ -0,0 +1,28 @@
|
||||
# Colors (Iris)
|
||||
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#272537'
|
||||
foreground = '#e8e6e9'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#111133'
|
||||
red = '#d61d52'
|
||||
green = '#48a842'
|
||||
yellow = '#e1a51c'
|
||||
blue = '#5556d3'
|
||||
magenta = '#8650d3'
|
||||
cyan = '#52afb7'
|
||||
white = '#9f9aa7'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#484867'
|
||||
red = '#e15877'
|
||||
green = '#71ab3a'
|
||||
yellow = '#c6a642'
|
||||
blue = '#6d6dc9'
|
||||
magenta = '#956ad3'
|
||||
cyan = '#6ab6bd'
|
||||
white = '#e8e6e9'
|
||||
@@ -0,0 +1,28 @@
|
||||
# Colors (iTerm 2 default theme)
|
||||
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#101421'
|
||||
foreground = '#fffbf6'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#2e2e2e'
|
||||
red = '#eb4129'
|
||||
green = '#abe047'
|
||||
yellow = '#f6c744'
|
||||
blue = '#47a0f3'
|
||||
magenta = '#7b5cb0'
|
||||
cyan = '#64dbed'
|
||||
white = '#e5e9f0'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#565656'
|
||||
red = '#ec5357'
|
||||
green = '#c0e17d'
|
||||
yellow = '#f9da6a'
|
||||
blue = '#49a4f8'
|
||||
magenta = '#a47de9'
|
||||
cyan = '#99faf2'
|
||||
white = '#ffffff'
|
||||
@@ -0,0 +1,38 @@
|
||||
# Colors (Kanagawa Dragon)
|
||||
# Source https//github.com/rebelot/kanagawa.nvim
|
||||
|
||||
[colors.primary]
|
||||
background = '#181616'
|
||||
foreground = '#c5c9c5'
|
||||
|
||||
[colors.normal]
|
||||
black = '#0d0c0c'
|
||||
blue = '#8ba4b0'
|
||||
cyan = '#8ea4a2'
|
||||
green = '#8a9a7b'
|
||||
magenta = '#a292a3'
|
||||
red = '#c4746e'
|
||||
white = '#C8C093'
|
||||
yellow = '#c4b28a'
|
||||
|
||||
[colors.bright]
|
||||
black = '#a6a69c'
|
||||
blue = '#7FB4CA'
|
||||
cyan = '#7AA89F'
|
||||
green = '#87a987'
|
||||
magenta = '#938AA9'
|
||||
red = '#E46876'
|
||||
white = '#c5c9c5'
|
||||
yellow = '#E6C384'
|
||||
|
||||
[colors.selection]
|
||||
background = '#2d4f67'
|
||||
foreground = '#c8c093'
|
||||
|
||||
[[colors.indexed_colors]]
|
||||
index = 16
|
||||
color = '#ffa066'
|
||||
|
||||
[[colors.indexed_colors]]
|
||||
index = 17
|
||||
color = '#ff5d62'
|
||||
@@ -0,0 +1,38 @@
|
||||
# Colors (Kanagawa Wave)
|
||||
# Source https//github.com/rebelot/kanagawa.nvim
|
||||
|
||||
[colors.primary]
|
||||
background = '#1f1f28'
|
||||
foreground = '#dcd7ba'
|
||||
|
||||
[colors.normal]
|
||||
black = '#090618'
|
||||
red = '#c34043'
|
||||
green = '#76946a'
|
||||
yellow = '#c0a36e'
|
||||
blue = '#7e9cd8'
|
||||
magenta = '#957fb8'
|
||||
cyan = '#6a9589'
|
||||
white = '#c8c093'
|
||||
|
||||
[colors.bright]
|
||||
black = '#727169'
|
||||
red = '#e82424'
|
||||
green = '#98bb6c'
|
||||
yellow = '#e6c384'
|
||||
blue = '#7fb4ca'
|
||||
magenta = '#938aa9'
|
||||
cyan = '#7aa89f'
|
||||
white = '#dcd7ba'
|
||||
|
||||
[colors.selection]
|
||||
background = '#2d4f67'
|
||||
foreground = '#c8c093'
|
||||
|
||||
[[colors.indexed_colors]]
|
||||
index = 16
|
||||
color = '#ffa066'
|
||||
|
||||
[[colors.indexed_colors]]
|
||||
index = 17
|
||||
color = '#ff5d62'
|
||||
@@ -0,0 +1,24 @@
|
||||
[colors.primary]
|
||||
background = "#221a0f"
|
||||
foreground = "#d3af86"
|
||||
|
||||
[colors.normal]
|
||||
black = "#221a0f"
|
||||
red = "#c87e5a"
|
||||
green = "#879a6b"
|
||||
yellow = "#e4b581"
|
||||
blue = "#5d90cd"
|
||||
magenta = "#c792ea"
|
||||
cyan = "#6bbab2"
|
||||
white = "#d3af86"
|
||||
|
||||
[colors.bright]
|
||||
black = "#7d6f48"
|
||||
red = "#c87e5a"
|
||||
green = "#879a6b"
|
||||
yellow = "#e4b581"
|
||||
blue = "#5d90cd"
|
||||
magenta = "#c792ea"
|
||||
cyan = "#6bbab2"
|
||||
white = "#f2cca8"
|
||||
|
||||
@@ -0,0 +1,24 @@
|
||||
[colors.primary]
|
||||
background = "#fbebd4"
|
||||
foreground = "#6e5346"
|
||||
|
||||
[colors.normal]
|
||||
black = "#fbebd4"
|
||||
red = "#d43552"
|
||||
green = "#b8bb26"
|
||||
yellow = "#f0c674"
|
||||
blue = "#7cafc2"
|
||||
magenta = "#d3869b"
|
||||
cyan = "#8abeb7"
|
||||
white = "#6e5346"
|
||||
|
||||
[colors.bright]
|
||||
black = "#f7e4c6"
|
||||
red = "#d43552"
|
||||
green = "#b8bb26"
|
||||
yellow = "#f0c674"
|
||||
blue = "#7cafc2"
|
||||
magenta = "#d3869b"
|
||||
cyan = "#8abeb7"
|
||||
white = "#4a3631"
|
||||
|
||||
@@ -0,0 +1,44 @@
|
||||
# Color theme ported from Konsole Linux colors
|
||||
|
||||
[colors.primary]
|
||||
foreground = '#e3e3e3'
|
||||
bright_foreground = '#ffffff'
|
||||
background = '#1f1f1f'
|
||||
|
||||
[colors.cursor]
|
||||
text = '#191622'
|
||||
cursor = '#f8f8f2'
|
||||
|
||||
[colors.search]
|
||||
matches = { foreground = '#b2b2b2', background = '#b26818' }
|
||||
focused_match = { foreground = "CellBackground", background = "CellForeground" }
|
||||
|
||||
[colors.normal]
|
||||
black = '#000000'
|
||||
red = '#b21818'
|
||||
green = '#18b218'
|
||||
yellow = '#b26818'
|
||||
blue = '#1818b2'
|
||||
magenta = '#b218b2'
|
||||
cyan = '#18b2b2'
|
||||
white = '#b2b2b2'
|
||||
|
||||
[colors.bright]
|
||||
black = '#686868'
|
||||
red = '#ff5454'
|
||||
green = '#54ff54'
|
||||
yellow = '#ffff54'
|
||||
blue = '#5454ff'
|
||||
magenta = '#ff54ff'
|
||||
cyan = '#54ffff'
|
||||
white = '#ffffff'
|
||||
|
||||
[colors.dim]
|
||||
black = '#000000'
|
||||
red = '#b21818'
|
||||
green = '#18b218'
|
||||
yellow = '#b26818'
|
||||
blue = '#1818b2'
|
||||
magenta = '#b218b2'
|
||||
cyan = '#18b2b2'
|
||||
white = '#b2b2b2'
|
||||
@@ -0,0 +1,32 @@
|
||||
# Colors (Dim)
|
||||
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#333333'
|
||||
foreground = '#dddddd'
|
||||
|
||||
[colors.cursor]
|
||||
text = '#aaaaaa'
|
||||
cursor = '#ffffff'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#000000'
|
||||
red = '#bb0000'
|
||||
green = '#00bb00'
|
||||
yellow = '#bbbb00'
|
||||
blue = '#0000bb'
|
||||
magenta = '#bb00bb'
|
||||
cyan = '#00bbbb'
|
||||
white = '#bbbbbb'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#000000'
|
||||
red = '#bb0000'
|
||||
green = '#00bb00'
|
||||
yellow = '#bbbb00'
|
||||
blue = '#0000bb'
|
||||
magenta = '#bb00bb'
|
||||
cyan = '#00bbbb'
|
||||
white = '#bbbbbb'
|
||||
@@ -0,0 +1,29 @@
|
||||
# Marine Dark Theme
|
||||
# Source https//github.com/ProDeSquare/alacritty-colorschemes/blob/master/themes/marine_dark.yaml
|
||||
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#002221'
|
||||
foreground = '#e6f8f8'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#002221'
|
||||
red = '#ea3431'
|
||||
green = '#00b6b6'
|
||||
yellow = '#f8b017'
|
||||
blue = '#4894fd'
|
||||
magenta = '#e01dca'
|
||||
cyan = '#1ab2ad'
|
||||
white = '#99dddb'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#006562'
|
||||
red = '#ea3431'
|
||||
green = '#00b6b6'
|
||||
yellow = '#f8b017'
|
||||
blue = '#4894fd'
|
||||
magenta = '#e01dca'
|
||||
cyan = '#1ab2ad'
|
||||
white = '#e6f6f6'
|
||||
@@ -0,0 +1,28 @@
|
||||
# Colors (Material Theme)
|
||||
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#1e282d'
|
||||
foreground = '#c4c7d1'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#666666'
|
||||
red = '#eb606b'
|
||||
green = '#c3e88d'
|
||||
yellow = '#f7eb95'
|
||||
blue = '#80cbc4'
|
||||
magenta = '#ff2f90'
|
||||
cyan = '#aeddff'
|
||||
white = '#ffffff'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#ff262b'
|
||||
red = '#eb606b'
|
||||
green = '#c3e88d'
|
||||
yellow = '#f7eb95'
|
||||
blue = '#7dc6bf'
|
||||
magenta = '#6c71c4'
|
||||
cyan = '#35434d'
|
||||
white = '#ffffff'
|
||||
@@ -0,0 +1,28 @@
|
||||
# Colors (Material Theme)
|
||||
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#1e282d'
|
||||
foreground = '#c4c7d1'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#666666'
|
||||
red = '#eb606b'
|
||||
green = '#c3e88d'
|
||||
yellow = '#f7eb95'
|
||||
blue = '#80cbc4'
|
||||
magenta = '#ff2f90'
|
||||
cyan = '#aeddff'
|
||||
white = '#ffffff'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#a1a1a1'
|
||||
red = '#eb606b'
|
||||
green = '#c3e88d'
|
||||
yellow = '#f7eb95'
|
||||
blue = '#7dc6bf'
|
||||
magenta = '#6c71c4'
|
||||
cyan = '#35434d'
|
||||
white = '#ffffff'
|
||||
@@ -0,0 +1,75 @@
|
||||
[colors.primary]
|
||||
background = '#1c1917'
|
||||
foreground = '#d6d0cd'
|
||||
# Bright and dim foreground colors
|
||||
dim_foreground = '#d6d0cd'
|
||||
bright_foreground = '#d6d0cd'
|
||||
|
||||
# Cursor colors
|
||||
[colors.cursor]
|
||||
text = '#1c1917'
|
||||
cursor = '#d6d0cd'
|
||||
|
||||
[colors.vi_mode_cursor]
|
||||
text = '#1c1917'
|
||||
cursor = '#d6d0cd'
|
||||
|
||||
# Search colors
|
||||
[colors.search]
|
||||
matches = { foreground = '#1c1917', background = '#24201e' }
|
||||
focused_match = { foreground = '#1c1917', background = '#2a2522' }
|
||||
|
||||
[colors.footer_bar]
|
||||
foreground = '#1c1917'
|
||||
background = '#b8aea8'
|
||||
|
||||
# Keyboard regex hints
|
||||
[colors.hints]
|
||||
start = { foreground = '#1c1917', background = '#c4b392' }
|
||||
end = { foreground = '#1c1917', background = '#24201e' }
|
||||
|
||||
# Selection colors
|
||||
[colors.selection]
|
||||
text = '#d6d0cd'
|
||||
background = '#2a2522'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#2a2421'
|
||||
red = '#d49191'
|
||||
green = '#b6b696'
|
||||
yellow = '#c4b392'
|
||||
blue = '#9e96b6'
|
||||
magenta = '#b696b1'
|
||||
cyan = '#98acc8'
|
||||
white = '#ddd9d6'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#2e2622'
|
||||
red = '#d89393'
|
||||
green = '#b9b99b'
|
||||
yellow = '#c8b692'
|
||||
blue = '#a299b9'
|
||||
magenta = '#b997b4'
|
||||
cyan = '#9bb0ca'
|
||||
white = '#e1dbd9'
|
||||
|
||||
# Dim colors
|
||||
[colors.dim]
|
||||
black = '#2a2421'
|
||||
red = '#d18989'
|
||||
green = '#727246'
|
||||
yellow = '#c1b090'
|
||||
blue = '#9b92b3'
|
||||
magenta = '#b393ad'
|
||||
cyan = '#95a9c5'
|
||||
white = '#e3d5ce'
|
||||
|
||||
[[colors.indexed_colors]]
|
||||
index = 16
|
||||
color = '#c4b392'
|
||||
|
||||
[[colors.indexed_colors]]
|
||||
index = 17
|
||||
color = '#ddd9d6'
|
||||
@@ -0,0 +1,28 @@
|
||||
# miasma: https://github.com/xero/miasma.nvim
|
||||
|
||||
# Primary colors
|
||||
[colors.primary]
|
||||
background = "#222222"
|
||||
foreground = "#c2c2b0"
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = "#222222"
|
||||
red = "#685742"
|
||||
green = "#5f875f"
|
||||
yellow = "#b36d43"
|
||||
blue = "#78824b"
|
||||
magenta = "#bb7744"
|
||||
cyan = "#c9a554"
|
||||
white = "#d7c483"
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = "#666666"
|
||||
red = "#685742"
|
||||
green = "#5f875f"
|
||||
yellow = "#b36d43"
|
||||
blue = "#78824b"
|
||||
magenta = "#bb7744"
|
||||
cyan = "#c9a554"
|
||||
white = "#d7c483"
|
||||
@@ -0,0 +1,29 @@
|
||||
# Midnight Haze theme
|
||||
# Source https//github.com/hafiz-muhammad/midnight-haze-alacritty-theme
|
||||
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
background = '#0c0c16'
|
||||
foreground = '#d8dee9'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#2c2c3d'
|
||||
red = '#ff6e6e'
|
||||
green = '#9ec875'
|
||||
yellow = '#ffa759'
|
||||
blue = '#70a7d4'
|
||||
magenta = '#d291e0'
|
||||
cyan = '#96e0e0'
|
||||
white = '#d8dee9'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#414166'
|
||||
red = '#ff8d8d'
|
||||
green = '#b3d987'
|
||||
yellow = '#ffc57f'
|
||||
blue = '#9bb3d3'
|
||||
magenta = '#ffa1ff'
|
||||
cyan = '#9cd8d8'
|
||||
white = '#ffffff'
|
||||
@@ -0,0 +1,23 @@
|
||||
[colors.primary]
|
||||
background = "#272822"
|
||||
foreground = "#f8f8f2"
|
||||
|
||||
[colors.normal]
|
||||
black = "#272822"
|
||||
red = "#f92672"
|
||||
green = "#a6e22e"
|
||||
yellow = "#f4bf75"
|
||||
blue = "#66d9ef"
|
||||
magenta = "#ae81ff"
|
||||
cyan = "#a1efe4"
|
||||
white = "#f8f8f2"
|
||||
|
||||
[colors.bright]
|
||||
black = "#75715e"
|
||||
red = "#f92672"
|
||||
green = "#a6e22e"
|
||||
yellow = "#f4bf75"
|
||||
blue = "#66d9ef"
|
||||
magenta = "#ae81ff"
|
||||
cyan = "#a1efe4"
|
||||
white = "#f9f8f5"
|
||||
@@ -0,0 +1,28 @@
|
||||
# Colours (Monokai Charcoal)
|
||||
|
||||
# Default Colours
|
||||
[colors.primary]
|
||||
background = '#000000'
|
||||
foreground = '#FFFFFF'
|
||||
|
||||
# Normal Colours
|
||||
[colors.normal]
|
||||
black = '#1a1a1a'
|
||||
red = '#f4005f'
|
||||
green = '#98e024'
|
||||
yellow = '#fa8419'
|
||||
blue = '#9d65ff'
|
||||
magenta = '#f4005f'
|
||||
cyan = '#58d1eb'
|
||||
white = '#c4c5b5'
|
||||
|
||||
# Bright Colours
|
||||
[colors.bright]
|
||||
black = '#625e4c'
|
||||
red = '#f4005f'
|
||||
green = '#98e024'
|
||||
yellow = '#e0d561'
|
||||
blue = '#9d65ff'
|
||||
magenta = '#f4005f'
|
||||
cyan = '#58d1eb'
|
||||
white = '#f6f6ef'
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user