Retheme alacritty, sway, and waybar to Tokyo Night

This commit is contained in:
Kiana Sheibani 2022-09-23 17:23:08 -04:00
parent db1a4958ea
commit 1e9f79c731
11 changed files with 317 additions and 300 deletions

View file

@ -5,31 +5,30 @@
settings = {
window.opacity = 0.9;
# Based on the GNOME Dark theme
# Based on the Tokyo Night theme
colors.primary = {
foreground = "#d0cfcc";
background = "#000000";
bright_foreground = "#ffffff";
foreground = "#a9b1d6";
background = "#1a1b26";
};
colors.normal = {
black = "#171421";
red = "#c01c28";
green = "#26a269";
yellow = "#a2734c";
blue = "#12488b";
magenta = "#a347ba";
cyan = "#2aa1b3";
white = "#d0cfcc";
black = "#32344a";
red = "#ce7284";
green = "#7dc5a0";
yellow = "#caaa6a";
blue = "#7bc5e4";
magenta = "#ad8ee6";
cyan = "#449dab";
white = "#787c99";
};
colors.bright = {
black = "#5e5c64";
red = "#f66151";
green = "#33d17a";
yellow = "#e9ad0c";
blue = "#2a7bde";
magenta = "#c061cb";
cyan = "#33c7de";
white = "#ffffff";
black = "#444b6a";
red = "#d5556f";
green = "#b9f27c";
yellow = "#ff9e64";
blue = "#7da6ff";
magenta = "#bb9af7";
cyan = "#0db9d7";
white = "#acb0d0";
};
font =

View file

@ -1,6 +1,5 @@
{ ... }:
let bright-green = ''#60c000'';
in {
{
programs.starship.enable = true;
# This config is intended to make starship look like Tide,
@ -18,9 +17,9 @@ in {
character =
let char = ""; charVi = "";
in {
success_symbol = "[${char}](bold ${bright-green})";
error_symbol = "[${char}](bold red)";
vicmd_symbol = "[${charVi}](bold ${bright-green})";
success_symbol = "[${char}](bold bright-green)";
error_symbol = "[${char}](bold bright-red)";
vicmd_symbol = "[${charVi}](bold bright-green)";
};
directory = {
@ -38,7 +37,7 @@ in {
jobs = {
format = "[$symbol$number]($style) ";
symbol = " ";
style = "${bright-green}";
style = "green";
};
status = {
@ -52,7 +51,7 @@ in {
style = "dimmed cyan";
};
git_branch.style = "bold ${bright-green}";
git_branch.style = "bold green";
git_status = {
format = "$stashed$ahead_behind$conflicted$deleted$renamed$staged$modified$untracked";
@ -63,9 +62,9 @@ in {
diverged = "[ ](cyan)";
untracked = "[?$count ](cyan)";
stashed = "[\\$$count ](cyan)";
modified = "[!$count ](bright-yellow)";
staged = "[+$count ](bright-yellow)";
renamed = "[»$count ](bright-yellow)";
modified = "[!$count ](yellow)";
staged = "[+$count ](yellow)";
renamed = "[»$count ](yellow)";
deleted = "[$count ](red)";
};
};