feat(starship): add more color schemes and use orange for nos
All checks were successful
Discord / discord commits (push) Has been skipped
All checks were successful
Discord / discord commits (push) Has been skipped
This commit is contained in:
parent
aa2f5b2906
commit
21e2502995
3 changed files with 39 additions and 7 deletions
|
@ -23,7 +23,7 @@ in {
|
|||
};
|
||||
|
||||
promptMainColor = mkOption {
|
||||
type = types.enum ["red" "green" "blue" "purple"];
|
||||
type = types.enum ["red" "green" "blue" "purple" "orange" "yellow" "cyan" "pink"];
|
||||
default = "purple";
|
||||
};
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
color: let
|
||||
schemes = {
|
||||
"purple" = {
|
||||
textColor = "#e3e5e5";
|
||||
textColor = "#090c0c";
|
||||
firstColor = "#bd93f9";
|
||||
secondColor = "#715895";
|
||||
thirdColor = "#382c4a";
|
||||
|
@ -9,7 +9,7 @@ color: let
|
|||
};
|
||||
|
||||
"green" = {
|
||||
textColor = "#e3e5e5";
|
||||
textColor = "#090c0c";
|
||||
firstColor = "#78ae66";
|
||||
secondColor = "#567c49";
|
||||
thirdColor = "#334a2c";
|
||||
|
@ -17,7 +17,7 @@ color: let
|
|||
};
|
||||
|
||||
"red" = {
|
||||
textColor = "#e3e5e5";
|
||||
textColor = "#090c0c";
|
||||
firstColor = "#e04242";
|
||||
secondColor = "#9c2e2e";
|
||||
thirdColor = "#591a1a";
|
||||
|
@ -25,16 +25,48 @@ color: let
|
|||
};
|
||||
|
||||
"blue" = {
|
||||
textColor = "#e3e5e5";
|
||||
textColor = "#090c0c";
|
||||
firstColor = "#6684ee";
|
||||
secondColor = "#475ca6";
|
||||
thirdColor = "#28345f";
|
||||
fourthColor = "#010617";
|
||||
};
|
||||
|
||||
"orange" = {
|
||||
textColor = "#090c0c";
|
||||
firstColor = "#ff9c42";
|
||||
secondColor = "#c66b00";
|
||||
thirdColor = "#874500";
|
||||
fourthColor = "#3a1c00";
|
||||
};
|
||||
|
||||
"yellow" = {
|
||||
textColor = "#090c0c";
|
||||
firstColor = "#ffea42";
|
||||
secondColor = "#d4c300";
|
||||
thirdColor = "#8f8b00";
|
||||
fourthColor = "#3e3c00";
|
||||
};
|
||||
|
||||
"cyan" = {
|
||||
textColor = "#090c0c";
|
||||
firstColor = "#42eaff";
|
||||
secondColor = "#00a2b8";
|
||||
thirdColor = "#005768";
|
||||
fourthColor = "#001f26";
|
||||
};
|
||||
|
||||
"pink" = {
|
||||
textColor = "#090c0c";
|
||||
firstColor = "#ff42cb";
|
||||
secondColor = "#b80073";
|
||||
thirdColor = "#6b003f";
|
||||
fourthColor = "#2d0017";
|
||||
};
|
||||
|
||||
# Template
|
||||
"color" = {
|
||||
textColor = "#e3e5e5";
|
||||
textColor = "#090c0c";
|
||||
firstColor = "";
|
||||
secondColor = "";
|
||||
thirdColor = "";
|
||||
|
|
|
@ -20,7 +20,7 @@ in {
|
|||
vars = {
|
||||
mainUser = "matt";
|
||||
hostName = "nos";
|
||||
#promptMainColor = "?";
|
||||
promptMainColor = "orange";
|
||||
};
|
||||
|
||||
users.users.${mainUser} = {
|
||||
|
|
Loading…
Reference in a new issue