diff --git a/alacritty/alacritty.toml b/alacritty/alacritty.toml index 10b5d11..66a4883 100644 --- a/alacritty/alacritty.toml +++ b/alacritty/alacritty.toml @@ -95,75 +95,3 @@ opacity = 0.8 x = 32 y = 32 -[colors.primary] -foreground = "#e0def4" -background = "#191724" -dim_foreground = "#908caa" -bright_foreground = "#e0def4" - -[colors.cursor] -text = "#e0def4" -cursor = "#524f67" - -[colors.vi_mode_cursor] -text = "#e0def4" -cursor = "#524f67" - -[colors.search.matches] -foreground = "#908caa" -background = "#26233a" - -[colors.search.focused_match] -foreground = "#191724" -background = "#ebbcba" - -[colors.hints.start] -foreground = "#908caa" -background = "#1f1d2e" - -[colors.hints.end] -foreground = "#6e6a86" -background = "#1f1d2e" - -[colors.line_indicator] -foreground = "None" -background = "None" - -[colors.footer_bar] -foreground = "#e0def4" -background = "#1f1d2e" - -[colors.selection] -text = "#e0def4" -background = "#403d52" - -[colors.normal] -black = "#26233a" -red = "#eb6f92" -green = "#31748f" -yellow = "#f6c177" -blue = "#9ccfd8" -magenta = "#c4a7e7" -cyan = "#ebbcba" -white = "#e0def4" - -[colors.bright] -black = "#6e6a86" -red = "#eb6f92" -green = "#31748f" -yellow = "#f6c177" -blue = "#9ccfd8" -magenta = "#c4a7e7" -cyan = "#ebbcba" -white = "#e0def4" - -[colors.dim] -black = "#6e6a86" -red = "#eb6f92" -green = "#31748f" -yellow = "#f6c177" -blue = "#9ccfd8" -magenta = "#c4a7e7" -cyan = "#ebbcba" -white = "#e0def4" - diff --git a/alacritty/alacritty.yml b/alacritty/alacritty.yml index 1f22b39..2361bca 100755 --- a/alacritty/alacritty.yml +++ b/alacritty/alacritty.yml @@ -58,45 +58,3 @@ live_config_reload: true shell: program: /bin/zsh -colors: - primary: - background: "0x191724" - foreground: "0xe0def4" - cursor: - text: "0xe0def4" - cursor: "0x524f67" - vi_mode_cursor: - text: "0xe0def4" - cursor: "0x524f67" - line_indicator: - foreground: None - background: None - selection: - text: "0xe0def4" - background: "0x403d52" - normal: - black: "0x26233a" - red: "0xeb6f92" - green: "0x31748f" - yellow: "0xf6c177" - blue: "0x9ccfd8" - magenta: "0xc4a7e7" - cyan: "0xebbcba" - white: "0xe0def4" - bright: - black: "0x6e6a86" - red: "0xeb6f92" - green: "0x31748f" - yellow: "0xf6c177" - blue: "0x9ccfd8" - magenta: "0xc4a7e7" - cyan: "0xebbcba" - white: "0xe0def4" - hints: - start: - foreground: "#908caa" - background: "#1f1d2e" - end: - foreground: "#6e6a86" - background: "#1f1d2e" - diff --git a/nvim/init.vim b/nvim/init.vim index 2946d6f..4403d52 100755 --- a/nvim/init.vim +++ b/nvim/init.vim @@ -36,7 +36,6 @@ call plug#begin("~/.local/share/nvim/site/autoload/plugged") Plug 'https://github.com/907th/vim-auto-save.git' Plug 'https://github.com/alvan/vim-closetag' Plug 'vim-airline/vim-airline' - Plug 'vim-airline/vim-airline-themes' call plug#end() let g:vimtex_view_method = 'zathura' diff --git a/waybar/style.css b/waybar/style.css index ef93daf..502d4cf 100644 --- a/waybar/style.css +++ b/waybar/style.css @@ -1,22 +1,3 @@ -@define-color base #191724; -@define-color surface #1f1d2e; -@define-color overlay #26233a; - -@define-color muted #6e6a86; -@define-color subtle #908caa; -@define-color text #e0def4; - -@define-color love #eb6f92; -@define-color gold #f6c177; -@define-color rose #ebbcba; -@define-color pine #31748f; -@define-color foam #9ccfd8; -@define-color iris #c4a7e7; - -@define-color highlightLow #21202e; -@define-color highlightMed #403d52; -@define-color highlightHigh #524f67; - * { border: none; border-radius: 0; @@ -28,20 +9,21 @@ } window#waybar { - background: @base; - color: @text; + background: #031720; + color: #9bacb4; } #workspaces button { padding: 0 10px; - color: @text; + color: #9bacb4; } #workspaces button.focused { - background-color: @overlay; + background-color: #052838; } #battery { margin-left: 7px; margin-right: 3px; } + diff --git a/zsh/variables b/zsh/variables index 94405c8..d378acf 100644 --- a/zsh/variables +++ b/zsh/variables @@ -14,4 +14,4 @@ export GTK2_RC_FILES="$XDG_CONFIG_HOME"/gtk-2.0/gtkrc export TEXMFVAR="$XDG_CACHE_HOME"/texlive/texmf-var export PATH="$PATH:$HOME/.local/bin:/sbin" -export DMENU_COLORS="-nf '#e0def4' -nb '#26233a' -sb '#6e6a86' -sf '#ebbcba' -fn 'JetBrainsMono Nerd Font-12'" +export DMENU_COLORS="-nf '#9bacb4' -nb '#031720' -sb '#052838' -sf '#9bacb4' -fn 'JetBrainsMono Nerd Font-12'"