diff --git a/common/vars/default.nix b/common/vars/default.nix index 865efff..7a72415 100644 --- a/common/vars/default.nix +++ b/common/vars/default.nix @@ -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"; }; diff --git a/common/vars/prompt-schemes.nix b/common/vars/prompt-schemes.nix index 7518c01..a8d6938 100644 --- a/common/vars/prompt-schemes.nix +++ b/common/vars/prompt-schemes.nix @@ -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 = ""; diff --git a/devices/nos/default.nix b/devices/nos/default.nix index 48a3d08..b6b4eee 100644 --- a/devices/nos/default.nix +++ b/devices/nos/default.nix @@ -20,7 +20,7 @@ in { vars = { mainUser = "matt"; hostName = "nos"; - #promptMainColor = "?"; + promptMainColor = "orange"; }; users.users.${mainUser} = {