home-manager @ 9fcdfe5d6b1c5d518d79345571038d90b6bd6dbf

feat: Add configuration from private dotfiles repo
    1diff --git a/.gitattributes b/.gitattributes
    2new file mode 100644
    3index 0000000000000000000000000000000000000000..45b5ca3db8a0845bbd4f4b01aed6f58dfbbba43b
    4--- /dev/null
    5+++ b/.gitattributes
    6@@ -0,0 +1 @@
    7+secrets/** filter=git-crypt diff=git-crypt
    8diff --git a/aerc.nix b/aerc.nix
    9new file mode 100644
   10index 0000000000000000000000000000000000000000..1d3b1e2e4aaa91a62fe57c310acfe7ac28b98672
   11--- /dev/null
   12+++ b/aerc.nix
   13@@ -0,0 +1,199 @@
   14+{
   15+  pkgs,
   16+  inputs,
   17+  ...
   18+}: {
   19+  xdg.configFile."aerc/map.conf".text = ''
   20+    1.Open=tag:github and not tag:checked
   21+    2.Jira=tag:jira and not tag:checked
   22+    2.Confluence=tag:confluence and not tag:checked
   23+    4.Inbox=tag:inbox and not tag:archived and not tag:deleted and not tag:github
   24+    5.Done=tag:github and tag:checked
   25+  '';
   26+
   27+  xdg.configFile."aerc/aerc.conf".text = ''
   28+    [general]
   29+
   30+    [statusline]
   31+
   32+    [viewer]
   33+
   34+    [compose]
   35+
   36+    [multipart-converters]
   37+
   38+    [filters]
   39+    text/plain=colorize
   40+    text/calendar=calendar
   41+    text/html=pandoc -f html -t plain
   42+    message/delivery-status=colorize
   43+    message/rfc822=colorize
   44+    .headers=colorize
   45+
   46+    [openers]
   47+
   48+    [hooks]
   49+    mail-received=notify-send "Mail from $AERC_FROM_NAME" "$AERC_FOLDER/$AERC_SUBJECT"
   50+
   51+    [templates]
   52+
   53+    [ui]
   54+    threading-enabled=true
   55+    fuzzy-complete=true
   56+    icon-attachment=📎
   57+    column-labels = {{map .Labels \
   58+                        (exclude "read") \
   59+                        (exclude "sent") \
   60+                        (exclude "github") \
   61+                        (exclude "unread") \
   62+                        (case "open" "O") \
   63+                        (case "jira" "J") \
   64+                        (case "confluence" "W") \
   65+                        (case "merged" "M") \
   66+                        (case "closed" "C") \
   67+                        (case "approved" "A") \
   68+                        (case "checked" "X") \
   69+                        | join ""}}
   70+    index-columns = date<=,name<10,flags>=,labels>5,subject<*
   71+  '';
   72+
   73+  xdg.configFile."aerc/binds.conf".text = ''
   74+    # Binds are of the form <key sequence> = <command to run>
   75+    # To use '=' in a key sequence, substitute it with "Eq": "<Ctrl+Eq>"
   76+    # If you wish to bind #, you can wrap the key sequence in quotes: "#" = quit
   77+    <C-p> = :prev-tab<Enter>
   78+    <C-n> = :next-tab<Enter>
   79+    <C-t> = :term<Enter>
   80+    ? = :help keys<Enter>
   81+
   82+    [messages]
   83+    q = :quit<Enter>
   84+
   85+    j = :next<Enter>
   86+    <Down> = :next<Enter>
   87+    <C-d> = :next 50%<Enter>
   88+    <C-f> = :next 100%<Enter>
   89+    <PgDn> = :next 100%<Enter>
   90+
   91+    k = :prev<Enter>
   92+    <Up> = :prev<Enter>
   93+    <C-u> = :prev 50%<Enter>
   94+    <C-b> = :prev 100%<Enter>
   95+    <PgUp> = :prev 100%<Enter>
   96+    g = :select 0<Enter>
   97+    G = :select -1<Enter>
   98+
   99+    J = :next-folder<Enter>
  100+    K = :prev-folder<Enter>
  101+    H = :collapse-folder<Enter>
  102+    L = :expand-folder<Enter>
  103+
  104+    v = :mark -t<Enter>
  105+    V = :mark -v<Enter>
  106+
  107+    T = :toggle-threads<Enter>
  108+
  109+    <Enter> = :view<Enter>
  110+    d = :prompt 'Really delete this message?' 'delete-message'<Enter>
  111+    D = :delete<Enter>
  112+    A = :archive flat<Enter>
  113+
  114+    C = :compose<Enter>
  115+
  116+    rr = :reply -a<Enter>
  117+    rq = :reply -aq<Enter>
  118+    Rr = :reply<Enter>
  119+    Rq = :reply -q<Enter>
  120+    RR = :read<Enter>
  121+    RC = :tag +checked<Enter>
  122+
  123+    c = :cf<space>
  124+    $ = :term<space>
  125+    ! = :term<space>
  126+    | = :pipe<space>
  127+
  128+    / = :search<space>
  129+    \ = :filter<space>
  130+    n = :next-result<Enter>
  131+    N = :prev-result<Enter>
  132+    <Esc> = :clear<Enter>
  133+
  134+    z = :pipe -b workctl open<Enter>
  135+    Z = :pipe workctl edit<Enter>
  136+    PA = :pipe -b workctl approve<Enter>
  137+    PM = :pipe -b workctl merge<Enter>
  138+    PD = :pipe -b workctl dependabot<Enter>
  139+
  140+    [messages:folder=Drafts]
  141+    <Enter> = :recall<Enter>
  142+
  143+    [view]
  144+    / = :toggle-key-passthrough<Enter>/
  145+    q = :close<Enter>
  146+    O = :open<Enter>
  147+    S = :save<space>
  148+    | = :pipe<space>
  149+    D = :delete<Enter>
  150+    A = :archive flat<Enter>
  151+
  152+    <C-l> = :open-link <space>
  153+
  154+    f = :forward<Enter>
  155+    rr = :reply -a<Enter>
  156+    rq = :reply -aq<Enter>
  157+    Rr = :reply<Enter>
  158+    Rq = :reply -q<Enter>
  159+
  160+    H = :toggle-headers<Enter>
  161+    <C-k> = :prev-part<Enter>
  162+    <C-j> = :next-part<Enter>
  163+    J = :next<Enter>
  164+    K = :prev<Enter>
  165+
  166+    [view::passthrough]
  167+    $noinherit = true
  168+    $ex = <C-x>
  169+    <Esc> = :toggle-key-passthrough<Enter>
  170+
  171+    [compose]
  172+    # Keybindings used when the embedded terminal is not selected in the compose
  173+    # view
  174+    $noinherit = true
  175+    $ex = <C-x>
  176+    <C-k> = :prev-field<Enter>
  177+    <C-j> = :next-field<Enter>
  178+    <A-p> = :switch-account -p<Enter>
  179+    <A-n> = :switch-account -n<Enter>
  180+    <tab> = :next-field<Enter>
  181+    <backtab> = :prev-field<Enter>
  182+    <C-p> = :prev-tab<Enter>
  183+    <C-n> = :next-tab<Enter>
  184+
  185+    [compose::editor]
  186+    # Keybindings used when the embedded terminal is selected in the compose view
  187+    $noinherit = true
  188+    $ex = <C-x>
  189+    <C-k> = :prev-field<Enter>
  190+    <C-j> = :next-field<Enter>
  191+    <C-p> = :prev-tab<Enter>
  192+    <C-n> = :next-tab<Enter>
  193+
  194+    [compose::review]
  195+    # Keybindings used when reviewing a message to be sent
  196+    y = :send<Enter>
  197+    n = :abort<Enter>
  198+    v = :preview<Enter>
  199+    p = :postpone<Enter>
  200+    q = :choose -o d discard abort -o p postpone postpone<Enter>
  201+    e = :edit<Enter>
  202+    a = :attach<space>
  203+    d = :detach<space>
  204+
  205+    [terminal]
  206+    $noinherit = true
  207+    $ex = <C-x>
  208+
  209+    <C-p> = :prev-tab<Enter>
  210+    <C-n> = :next-tab<Enter>
  211+  '';
  212+}
  213diff --git a/alacritty.nix b/alacritty.nix
  214new file mode 100644
  215index 0000000000000000000000000000000000000000..3cc462476fa16cc861d4ea4ea9087d84a79a42ca
  216--- /dev/null
  217+++ b/alacritty.nix
  218@@ -0,0 +1,58 @@
  219+{
  220+  pkgs,
  221+  inputs,
  222+  ...
  223+}: let
  224+  tomlFormat = pkgs.formats.toml {};
  225+in {
  226+  xdg.configFile."alacritty/alacritty.toml".source = tomlFormat.generate "alacritty.toml" {
  227+    shell = {
  228+      program = "/usr/bin/fish";
  229+    };
  230+    colors = {
  231+      primary = {
  232+        background = "#ffffff";
  233+        foreground = "#24292f";
  234+      };
  235+      normal = {
  236+        black = "#24292e";
  237+        red = "#d73a49";
  238+        green = "#28a745";
  239+        yellow = "#dbab09";
  240+        blue = "#0366d6";
  241+        magenta = "#5a32a3";
  242+        cyan = "#0598bc";
  243+        white = "#6a737d";
  244+      };
  245+      bright = {
  246+        black = "#959da5";
  247+        red = "#cb2431";
  248+        green = "#22863a";
  249+        yellow = "#b08800";
  250+        blue = "#005cc5";
  251+        magenta = "#5a32a3";
  252+        cyan = "#3192aa";
  253+        white = "#d1d5da";
  254+      };
  255+    };
  256+    font = {
  257+      normal = {
  258+        family = "iosevka";
  259+        style = "Regular";
  260+      };
  261+      bold = {
  262+        family = "iosevka";
  263+        style = "Bold";
  264+      };
  265+      italic = {
  266+        family = "iosevka";
  267+        style = "Italic";
  268+      };
  269+      bold_italic = {
  270+        family = "iosevka";
  271+        style = "BoldItalic";
  272+      };
  273+      size = 15;
  274+    };
  275+  };
  276+}
  277diff --git a/awslocal.nix b/awslocal.nix
  278new file mode 100644
  279index 0000000000000000000000000000000000000000..1968b0806e2ecd794a95bc333d1bc62a09b86213
  280--- /dev/null
  281+++ b/awslocal.nix
  282@@ -0,0 +1,55 @@
  283+{
  284+  lib,
  285+  buildPythonPackage,
  286+  fetchPypi,
  287+  # build-system
  288+  setuptools,
  289+  setuptools-scm,
  290+  # dependencies
  291+  attrs,
  292+  pluggy,
  293+  py,
  294+  six,
  295+  # tests
  296+  hypothesis,
  297+}:
  298+buildPythonPackage rec {
  299+  pname = "awscli-local";
  300+  version = "3.3.1";
  301+  pyproject = true;
  302+
  303+  src = fetchPypi {
  304+    inherit pname version;
  305+    hash = "sha256-z4Q23FnYaVNG/NOrKW3kZCXsqwDWQJbOvnn7Ueyy65M=";
  306+  };
  307+
  308+  postPatch = ''
  309+    # don't test bash builtins
  310+    rm testing/test_argcomplete.py
  311+  '';
  312+
  313+  build-system = [
  314+    setuptools
  315+    setuptools-scm
  316+  ];
  317+
  318+  dependencies = [
  319+    attrs
  320+    py
  321+    setuptools
  322+    six
  323+    pluggy
  324+  ];
  325+
  326+  nativeCheckInputs = [
  327+    hypothesis
  328+  ];
  329+
  330+  meta = {
  331+    changelog = "https://github.com/pytest-dev/pytest/releases/tag/${version}";
  332+    description = "Framework for writing tests";
  333+    homepage = "https://github.com/pytest-dev/pytest";
  334+    license = lib.licenses.mit;
  335+    maintainers = with lib.maintainers; [domenkozar lovek323 madjar lsix];
  336+  };
  337+}
  338diff --git a/flake.lock b/flake.lock
  339new file mode 100644
  340index 0000000000000000000000000000000000000000..3b09b0523dba15bd81618f366d0d272301371a8f
  341--- /dev/null
  342+++ b/flake.lock
  343@@ -0,0 +1,256 @@
  344+{
  345+  "nodes": {
  346+    "flake-compat": {
  347+      "flake": false,
  348+      "locked": {
  349+        "lastModified": 1747046372,
  350+        "narHash": "sha256-CIVLLkVgvHYbgI2UpXvIIBJ12HWgX+fjA8Xf8PUmqCY=",
  351+        "owner": "edolstra",
  352+        "repo": "flake-compat",
  353+        "rev": "9100a0f413b0c601e0533d1d94ffd501ce2e7885",
  354+        "type": "github"
  355+      },
  356+      "original": {
  357+        "owner": "edolstra",
  358+        "repo": "flake-compat",
  359+        "type": "github"
  360+      }
  361+    },
  362+    "flake-utils": {
  363+      "inputs": {
  364+        "systems": "systems"
  365+      },
  366+      "locked": {
  367+        "lastModified": 1731533236,
  368+        "narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=",
  369+        "owner": "numtide",
  370+        "repo": "flake-utils",
  371+        "rev": "11707dc2f618dd54ca8739b309ec4fc024de578b",
  372+        "type": "github"
  373+      },
  374+      "original": {
  375+        "owner": "numtide",
  376+        "repo": "flake-utils",
  377+        "type": "github"
  378+      }
  379+    },
  380+    "flake-utils_2": {
  381+      "inputs": {
  382+        "systems": "systems_2"
  383+      },
  384+      "locked": {
  385+        "lastModified": 1710146030,
  386+        "narHash": "sha256-SZ5L6eA7HJ/nmkzGG7/ISclqe6oZdOZTNoesiInkXPQ=",
  387+        "owner": "numtide",
  388+        "repo": "flake-utils",
  389+        "rev": "b1d9ab70662946ef0850d488da1c9019f3a9752a",
  390+        "type": "github"
  391+      },
  392+      "original": {
  393+        "owner": "numtide",
  394+        "repo": "flake-utils",
  395+        "type": "github"
  396+      }
  397+    },
  398+    "ghostty": {
  399+      "inputs": {
  400+        "flake-compat": "flake-compat",
  401+        "flake-utils": "flake-utils",
  402+        "nixpkgs": "nixpkgs",
  403+        "zig": "zig",
  404+        "zon2nix": "zon2nix"
  405+      },
  406+      "locked": {
  407+        "lastModified": 1750679248,
  408+        "narHash": "sha256-zRv0FqFwR4xenvgpyh386gtEXEWdRKZJDvLJV1MRyVc=",
  409+        "ref": "refs/heads/main",
  410+        "rev": "373fc6bcbf04f50bc8a8d19c7688f8ee24fb3849",
  411+        "revCount": 10710,
  412+        "type": "git",
  413+        "url": "ssh://git@github.com/ghostty-org/ghostty"
  414+      },
  415+      "original": {
  416+        "type": "git",
  417+        "url": "ssh://git@github.com/ghostty-org/ghostty"
  418+      }
  419+    },
  420+    "gxctl": {
  421+      "inputs": {
  422+        "flake-utils": "flake-utils_2",
  423+        "nixpkgs": "nixpkgs_2"
  424+      },
  425+      "locked": {
  426+        "lastModified": 1750671555,
  427+        "narHash": "sha256-6G/tp3vkZD5KTdOOcUeDMqckSD4sBqXN2hCIW08LPrs=",
  428+        "ref": "refs/heads/develop",
  429+        "rev": "fd165d11ac6c3b48870588641c282e0b3aad16d8",
  430+        "revCount": 724,
  431+        "type": "git",
  432+        "url": "ssh://git@github.com/grid-x/gxctl"
  433+      },
  434+      "original": {
  435+        "type": "git",
  436+        "url": "ssh://git@github.com/grid-x/gxctl"
  437+      }
  438+    },
  439+    "home-manager": {
  440+      "inputs": {
  441+        "nixpkgs": [
  442+          "nixpkgs"
  443+        ]
  444+      },
  445+      "locked": {
  446+        "lastModified": 1750654717,
  447+        "narHash": "sha256-YXlhTUGaLAY1rSosaRXO5RSGriEyF9BGdLkpKV+9jyI=",
  448+        "owner": "nix-community",
  449+        "repo": "home-manager",
  450+        "rev": "4c9e99e8e8e36bcdfa9cdb102e45e4dc95aa5c5b",
  451+        "type": "github"
  452+      },
  453+      "original": {
  454+        "owner": "nix-community",
  455+        "repo": "home-manager",
  456+        "type": "github"
  457+      }
  458+    },
  459+    "nixpkgs": {
  460+      "locked": {
  461+        "lastModified": 1748189127,
  462+        "narHash": "sha256-zRDR+EbbeObu4V2X5QCd2Bk5eltfDlCr5yvhBwUT6pY=",
  463+        "rev": "7c43f080a7f28b2774f3b3f43234ca11661bf334",
  464+        "type": "tarball",
  465+        "url": "https://releases.nixos.org/nixos/25.05/nixos-25.05.802491.7c43f080a7f2/nixexprs.tar.xz"
  466+      },
  467+      "original": {
  468+        "type": "tarball",
  469+        "url": "https://channels.nixos.org/nixos-25.05/nixexprs.tar.xz"
  470+      }
  471+    },
  472+    "nixpkgs_2": {
  473+      "locked": {
  474+        "lastModified": 1720691131,
  475+        "narHash": "sha256-CWT+KN8aTPyMIx8P303gsVxUnkinIz0a/Cmasz1jyIM=",
  476+        "owner": "NixOS",
  477+        "repo": "nixpkgs",
  478+        "rev": "a046c1202e11b62cbede5385ba64908feb7bfac4",
  479+        "type": "github"
  480+      },
  481+      "original": {
  482+        "owner": "NixOS",
  483+        "ref": "nixos-24.05",
  484+        "repo": "nixpkgs",
  485+        "type": "github"
  486+      }
  487+    },
  488+    "nixpkgs_3": {
  489+      "locked": {
  490+        "lastModified": 1750506804,
  491+        "narHash": "sha256-VLFNc4egNjovYVxDGyBYTrvVCgDYgENp5bVi9fPTDYc=",
  492+        "owner": "nixos",
  493+        "repo": "nixpkgs",
  494+        "rev": "4206c4cb56751df534751b058295ea61357bbbaa",
  495+        "type": "github"
  496+      },
  497+      "original": {
  498+        "owner": "nixos",
  499+        "ref": "nixos-unstable",
  500+        "repo": "nixpkgs",
  501+        "type": "github"
  502+      }
  503+    },
  504+    "root": {
  505+      "inputs": {
  506+        "ghostty": "ghostty",
  507+        "gxctl": "gxctl",
  508+        "home-manager": "home-manager",
  509+        "nixpkgs": "nixpkgs_3"
  510+      }
  511+    },
  512+    "systems": {
  513+      "locked": {
  514+        "lastModified": 1681028828,
  515+        "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
  516+        "owner": "nix-systems",
  517+        "repo": "default",
  518+        "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
  519+        "type": "github"
  520+      },
  521+      "original": {
  522+        "owner": "nix-systems",
  523+        "repo": "default",
  524+        "type": "github"
  525+      }
  526+    },
  527+    "systems_2": {
  528+      "locked": {
  529+        "lastModified": 1681028828,
  530+        "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
  531+        "owner": "nix-systems",
  532+        "repo": "default",
  533+        "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
  534+        "type": "github"
  535+      },
  536+      "original": {
  537+        "owner": "nix-systems",
  538+        "repo": "default",
  539+        "type": "github"
  540+      }
  541+    },
  542+    "zig": {
  543+      "inputs": {
  544+        "flake-compat": [
  545+          "ghostty"
  546+        ],
  547+        "flake-utils": [
  548+          "ghostty",
  549+          "flake-utils"
  550+        ],
  551+        "nixpkgs": [
  552+          "ghostty",
  553+          "nixpkgs"
  554+        ]
  555+      },
  556+      "locked": {
  557+        "lastModified": 1748261582,
  558+        "narHash": "sha256-3i0IL3s18hdDlbsf0/E+5kyPRkZwGPbSFngq5eToiAA=",
  559+        "owner": "mitchellh",
  560+        "repo": "zig-overlay",
  561+        "rev": "aafb1b093fb838f7a02613b719e85ec912914221",
  562+        "type": "github"
  563+      },
  564+      "original": {
  565+        "owner": "mitchellh",
  566+        "repo": "zig-overlay",
  567+        "type": "github"
  568+      }
  569+    },
  570+    "zon2nix": {
  571+      "inputs": {
  572+        "flake-utils": [
  573+          "ghostty",
  574+          "flake-utils"
  575+        ],
  576+        "nixpkgs": [
  577+          "ghostty",
  578+          "nixpkgs"
  579+        ]
  580+      },
  581+      "locked": {
  582+        "lastModified": 1742104771,
  583+        "narHash": "sha256-LhidlyEA9MP8jGe1rEnyjGFCzLLgCdDpYeWggibayr0=",
  584+        "owner": "jcollie",
  585+        "repo": "zon2nix",
  586+        "rev": "56c159be489cc6c0e73c3930bd908ddc6fe89613",
  587+        "type": "github"
  588+      },
  589+      "original": {
  590+        "owner": "jcollie",
  591+        "ref": "56c159be489cc6c0e73c3930bd908ddc6fe89613",
  592+        "repo": "zon2nix",
  593+        "type": "github"
  594+      }
  595+    }
  596+  },
  597+  "root": "root",
  598+  "version": 7
  599+}
  600diff --git a/flake.nix b/flake.nix
  601new file mode 100644
  602index 0000000000000000000000000000000000000000..0177c835a23eadee0285a43f4c91823b8cc530bb
  603--- /dev/null
  604+++ b/flake.nix
  605@@ -0,0 +1,40 @@
  606+{
  607+  description = "My Home Manager Flake";
  608+
  609+  inputs = {
  610+    nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
  611+    gxctl.url = "git+ssh://git@github.com/grid-x/gxctl";
  612+    ghostty.url = "git+ssh://git@github.com/ghostty-org/ghostty";
  613+    home-manager = {
  614+      url = "github:nix-community/home-manager";
  615+      inputs.nixpkgs.follows = "nixpkgs";
  616+    };
  617+  };
  618+
  619+  outputs = inputs @ {
  620+    self,
  621+    nixpkgs,
  622+    home-manager,
  623+    gxctl,
  624+    ...
  625+  }: {
  626+    defaultPackage.x86_64-linux = home-manager.defaultPackage.x86_64-linux;
  627+    homeConfigurations = let
  628+      pkgs = import nixpkgs {
  629+        system = "x86_64-linux";
  630+      };
  631+    in {
  632+      "gabrielgio" = home-manager.lib.homeManagerConfiguration {
  633+        inherit pkgs;
  634+
  635+        extraSpecialArgs = {
  636+          inherit inputs;
  637+        };
  638+
  639+        modules = [
  640+          ./home.nix
  641+        ];
  642+      };
  643+    };
  644+  };
  645+}
  646diff --git a/ghostty-themes/0x96f b/ghostty-themes/0x96f
  647new file mode 100644
  648index 0000000000000000000000000000000000000000..c27a0e4d5022d2ac8a2c8580636d62552772a926
  649--- /dev/null
  650+++ b/ghostty-themes/0x96f
  651@@ -0,0 +1,22 @@
  652+palette = 0=#262427
  653+palette = 1=#ff7272
  654+palette = 2=#bcdf59
  655+palette = 3=#ffca58
  656+palette = 4=#49cae4
  657+palette = 5=#a093e2
  658+palette = 6=#aee8f4
  659+palette = 7=#fcfcfa
  660+palette = 8=#545452
  661+palette = 9=#ff8787
  662+palette = 10=#c6e472
  663+palette = 11=#ffd271
  664+palette = 12=#64d2e8
  665+palette = 13=#aea3e6
  666+palette = 14=#baebf6
  667+palette = 15=#fcfcfa
  668+background = #262427
  669+foreground = #fcfcfa
  670+cursor-color = #fcfcfa
  671+cursor-text = #000000
  672+selection-background = #fcfcfa
  673+selection-foreground = #262427
  674diff --git a/ghostty-themes/3024 Day b/ghostty-themes/3024 Day
  675new file mode 100644
  676index 0000000000000000000000000000000000000000..a6d42bb0e9d4751e3a5a4dc0b456f62f3126baa3
  677--- /dev/null
  678+++ b/ghostty-themes/3024 Day
  679@@ -0,0 +1,22 @@
  680+palette = 0=#090300
  681+palette = 1=#db2d20
  682+palette = 2=#01a252
  683+palette = 3=#fded02
  684+palette = 4=#01a0e4
  685+palette = 5=#a16a94
  686+palette = 6=#b5e4f4
  687+palette = 7=#a5a2a2
  688+palette = 8=#5c5855
  689+palette = 9=#e8bbd0
  690+palette = 10=#3a3432
  691+palette = 11=#4a4543
  692+palette = 12=#807d7c
  693+palette = 13=#d6d5d4
  694+palette = 14=#cdab53
  695+palette = 15=#f7f7f7
  696+background = #f7f7f7
  697+foreground = #4a4543
  698+cursor-color = #4a4543
  699+cursor-text = #f7f7f7
  700+selection-background = #a5a2a2
  701+selection-foreground = #4a4543
  702diff --git a/ghostty-themes/3024 Night b/ghostty-themes/3024 Night
  703new file mode 100644
  704index 0000000000000000000000000000000000000000..785f44abe617639241120eb6f7904161c74b63e1
  705--- /dev/null
  706+++ b/ghostty-themes/3024 Night
  707@@ -0,0 +1,22 @@
  708+palette = 0=#090300
  709+palette = 1=#db2d20
  710+palette = 2=#01a252
  711+palette = 3=#fded02
  712+palette = 4=#01a0e4
  713+palette = 5=#a16a94
  714+palette = 6=#b5e4f4
  715+palette = 7=#a5a2a2
  716+palette = 8=#5c5855
  717+palette = 9=#e8bbd0
  718+palette = 10=#3a3432
  719+palette = 11=#4a4543
  720+palette = 12=#807d7c
  721+palette = 13=#d6d5d4
  722+palette = 14=#cdab53
  723+palette = 15=#f7f7f7
  724+background = #090300
  725+foreground = #a5a2a2
  726+cursor-color = #a5a2a2
  727+cursor-text = #090300
  728+selection-background = #4a4543
  729+selection-foreground = #a5a2a2
  730diff --git a/ghostty-themes/Aardvark Blue b/ghostty-themes/Aardvark Blue
  731new file mode 100644
  732index 0000000000000000000000000000000000000000..c817515053690cdd4a4a45e1a55a3a7a408b6b3e
  733--- /dev/null
  734+++ b/ghostty-themes/Aardvark Blue
  735@@ -0,0 +1,22 @@
  736+palette = 0=#191919
  737+palette = 1=#aa342e
  738+palette = 2=#4b8c0f
  739+palette = 3=#dbba00
  740+palette = 4=#1370d3
  741+palette = 5=#c43ac3
  742+palette = 6=#008eb0
  743+palette = 7=#bebebe
  744+palette = 8=#454545
  745+palette = 9=#f05b50
  746+palette = 10=#95dc55
  747+palette = 11=#ffe763
  748+palette = 12=#60a4ec
  749+palette = 13=#e26be2
  750+palette = 14=#60b6cb
  751+palette = 15=#f7f7f7
  752+background = #102040
  753+foreground = #dddddd
  754+cursor-color = #007acc
  755+cursor-text = #bfdbfe
  756+selection-background = #bfdbfe
  757+selection-foreground = #000000
  758diff --git a/ghostty-themes/Abernathy b/ghostty-themes/Abernathy
  759new file mode 100644
  760index 0000000000000000000000000000000000000000..e004d86df77792030145268623cbc0cfe1410bb1
  761--- /dev/null
  762+++ b/ghostty-themes/Abernathy
  763@@ -0,0 +1,22 @@
  764+palette = 0=#000000
  765+palette = 1=#cd0000
  766+palette = 2=#00cd00
  767+palette = 3=#cdcd00
  768+palette = 4=#1093f5
  769+palette = 5=#cd00cd
  770+palette = 6=#00cdcd
  771+palette = 7=#faebd7
  772+palette = 8=#404040
  773+palette = 9=#ff0000
  774+palette = 10=#00ff00
  775+palette = 11=#ffff00
  776+palette = 12=#11b5f6
  777+palette = 13=#ff00ff
  778+palette = 14=#00ffff
  779+palette = 15=#ffffff
  780+background = #111416
  781+foreground = #eeeeec
  782+cursor-color = #bbbbbb
  783+cursor-text = #ffffff
  784+selection-background = #eeeeec
  785+selection-foreground = #333333
  786diff --git a/ghostty-themes/Adventure b/ghostty-themes/Adventure
  787new file mode 100644
  788index 0000000000000000000000000000000000000000..2c025c010aa180aa211ed28409b2f94256717dc0
  789--- /dev/null
  790+++ b/ghostty-themes/Adventure
  791@@ -0,0 +1,22 @@
  792+palette = 0=#040404
  793+palette = 1=#d84a33
  794+palette = 2=#5da602
  795+palette = 3=#eebb6e
  796+palette = 4=#417ab3
  797+palette = 5=#e5c499
  798+palette = 6=#bdcfe5
  799+palette = 7=#dbded8
  800+palette = 8=#685656
  801+palette = 9=#d76b42
  802+palette = 10=#99b52c
  803+palette = 11=#ffb670
  804+palette = 12=#97d7ef
  805+palette = 13=#aa7900
  806+palette = 14=#bdcfe5
  807+palette = 15=#e4d5c7
  808+background = #040404
  809+foreground = #feffff
  810+cursor-color = #feffff
  811+cursor-text = #000000
  812+selection-background = #606060
  813+selection-foreground = #ffffff
  814diff --git a/ghostty-themes/AdventureTime b/ghostty-themes/AdventureTime
  815new file mode 100644
  816index 0000000000000000000000000000000000000000..91639ea4b977152d11c2b3a4e2263b591b23fe0b
  817--- /dev/null
  818+++ b/ghostty-themes/AdventureTime
  819@@ -0,0 +1,22 @@
  820+palette = 0=#050404
  821+palette = 1=#bd0013
  822+palette = 2=#4ab118
  823+palette = 3=#e7741e
  824+palette = 4=#0f4ac6
  825+palette = 5=#665993
  826+palette = 6=#70a598
  827+palette = 7=#f8dcc0
  828+palette = 8=#4e7cbf
  829+palette = 9=#fc5f5a
  830+palette = 10=#9eff6e
  831+palette = 11=#efc11a
  832+palette = 12=#1997c6
  833+palette = 13=#9b5953
  834+palette = 14=#c8faf4
  835+palette = 15=#f6f5fb
  836+background = #1f1d45
  837+foreground = #f8dcc0
  838+cursor-color = #efbf38
  839+cursor-text = #08080a
  840+selection-background = #706b4e
  841+selection-foreground = #f3d9c4
  842diff --git a/ghostty-themes/Adwaita b/ghostty-themes/Adwaita
  843new file mode 100644
  844index 0000000000000000000000000000000000000000..a14fdc253e1745d79e3d9af7aff7fc96a095fd89
  845--- /dev/null
  846+++ b/ghostty-themes/Adwaita
  847@@ -0,0 +1,22 @@
  848+palette = 0=#241f31
  849+palette = 1=#c01c28
  850+palette = 2=#2ec27e
  851+palette = 3=#f5c211
  852+palette = 4=#1e78e4
  853+palette = 5=#9841bb
  854+palette = 6=#0ab9dc
  855+palette = 7=#c0bfbc
  856+palette = 8=#5e5c64
  857+palette = 9=#ed333b
  858+palette = 10=#57e389
  859+palette = 11=#f8e45c
  860+palette = 12=#51a1ff
  861+palette = 13=#c061cb
  862+palette = 14=#4fd2fd
  863+palette = 15=#f6f5f4
  864+background = #ffffff
  865+foreground = #000000
  866+cursor-color = #000000
  867+cursor-text = #ffffff
  868+selection-background = #c0bfbc
  869+selection-foreground = #000000
  870diff --git a/ghostty-themes/Adwaita Dark b/ghostty-themes/Adwaita Dark
  871new file mode 100644
  872index 0000000000000000000000000000000000000000..6cb8c0c3b1d3df641a778a3344eeabadb9eca873
  873--- /dev/null
  874+++ b/ghostty-themes/Adwaita Dark
  875@@ -0,0 +1,22 @@
  876+palette = 0=#241f31
  877+palette = 1=#c01c28
  878+palette = 2=#2ec27e
  879+palette = 3=#f5c211
  880+palette = 4=#1e78e4
  881+palette = 5=#9841bb
  882+palette = 6=#0ab9dc
  883+palette = 7=#c0bfbc
  884+palette = 8=#5e5c64
  885+palette = 9=#ed333b
  886+palette = 10=#57e389
  887+palette = 11=#f8e45c
  888+palette = 12=#51a1ff
  889+palette = 13=#c061cb
  890+palette = 14=#4fd2fd
  891+palette = 15=#f6f5f4
  892+background = #1e1e1e
  893+foreground = #ffffff
  894+cursor-color = #ffffff
  895+cursor-text = #1e1e1e
  896+selection-background = #ffffff
  897+selection-foreground = #5e5c64
  898diff --git a/ghostty-themes/Afterglow b/ghostty-themes/Afterglow
  899new file mode 100644
  900index 0000000000000000000000000000000000000000..8b323429d6596cd8f9da8c87a767552efc4ff464
  901--- /dev/null
  902+++ b/ghostty-themes/Afterglow
  903@@ -0,0 +1,22 @@
  904+palette = 0=#151515
  905+palette = 1=#ac4142
  906+palette = 2=#7e8e50
  907+palette = 3=#e5b567
  908+palette = 4=#6c99bb
  909+palette = 5=#9f4e85
  910+palette = 6=#7dd6cf
  911+palette = 7=#d0d0d0
  912+palette = 8=#505050
  913+palette = 9=#ac4142
  914+palette = 10=#7e8e50
  915+palette = 11=#e5b567
  916+palette = 12=#6c99bb
  917+palette = 13=#9f4e85
  918+palette = 14=#7dd6cf
  919+palette = 15=#f5f5f5
  920+background = #212121
  921+foreground = #d0d0d0
  922+cursor-color = #d0d0d0
  923+cursor-text = #151515
  924+selection-background = #303030
  925+selection-foreground = #d0d0d0
  926diff --git a/ghostty-themes/Alabaster b/ghostty-themes/Alabaster
  927new file mode 100644
  928index 0000000000000000000000000000000000000000..3f33920a497e550290a18a97c45895bdc53d5148
  929--- /dev/null
  930+++ b/ghostty-themes/Alabaster
  931@@ -0,0 +1,22 @@
  932+palette = 0=#000000
  933+palette = 1=#aa3731
  934+palette = 2=#448c27
  935+palette = 3=#cb9000
  936+palette = 4=#325cc0
  937+palette = 5=#7a3e9d
  938+palette = 6=#0083b2
  939+palette = 7=#f7f7f7
  940+palette = 8=#777777
  941+palette = 9=#f05050
  942+palette = 10=#60cb00
  943+palette = 11=#ffbc5d
  944+palette = 12=#007acc
  945+palette = 13=#e64ce6
  946+palette = 14=#00aacb
  947+palette = 15=#f7f7f7
  948+background = #f7f7f7
  949+foreground = #000000
  950+cursor-color = #007acc
  951+cursor-text = #bfdbfe
  952+selection-background = #bfdbfe
  953+selection-foreground = #000000
  954diff --git a/ghostty-themes/AlienBlood b/ghostty-themes/AlienBlood
  955new file mode 100644
  956index 0000000000000000000000000000000000000000..a41024cbd3471882843bbe036b23331115e25d5b
  957--- /dev/null
  958+++ b/ghostty-themes/AlienBlood
  959@@ -0,0 +1,22 @@
  960+palette = 0=#112616
  961+palette = 1=#7f2b27
  962+palette = 2=#2f7e25
  963+palette = 3=#717f24
  964+palette = 4=#2f6a7f
  965+palette = 5=#47587f
  966+palette = 6=#327f77
  967+palette = 7=#647d75
  968+palette = 8=#3c4812
  969+palette = 9=#e08009
  970+palette = 10=#18e000
  971+palette = 11=#bde000
  972+palette = 12=#00aae0
  973+palette = 13=#0058e0
  974+palette = 14=#00e0c4
  975+palette = 15=#73fa91
  976+background = #0f1610
  977+foreground = #637d75
  978+cursor-color = #73fa91
  979+cursor-text = #0f1610
  980+selection-background = #1d4125
  981+selection-foreground = #73fa91
  982diff --git a/ghostty-themes/Andromeda b/ghostty-themes/Andromeda
  983new file mode 100644
  984index 0000000000000000000000000000000000000000..4cd7fe99006f77239892458154ee895f55d94017
  985--- /dev/null
  986+++ b/ghostty-themes/Andromeda
  987@@ -0,0 +1,22 @@
  988+palette = 0=#000000
  989+palette = 1=#cd3131
  990+palette = 2=#05bc79
  991+palette = 3=#e5e512
  992+palette = 4=#2472c8
  993+palette = 5=#bc3fbc
  994+palette = 6=#0fa8cd
  995+palette = 7=#e5e5e5
  996+palette = 8=#666666
  997+palette = 9=#cd3131
  998+palette = 10=#05bc79
  999+palette = 11=#e5e512
 1000+palette = 12=#2472c8
 1001+palette = 13=#bc3fbc
 1002+palette = 14=#0fa8cd
 1003+palette = 15=#e5e5e5
 1004+background = #262a33
 1005+foreground = #e5e5e5
 1006+cursor-color = #f8f8f0
 1007+cursor-text = #cfcfc2
 1008+selection-background = #5a5c62
 1009+selection-foreground = #ece7e7
 1010diff --git a/ghostty-themes/Apple Classic b/ghostty-themes/Apple Classic
 1011new file mode 100644
 1012index 0000000000000000000000000000000000000000..dd7b5095b21130a24d4e1213bc2cf9179c581793
 1013--- /dev/null
 1014+++ b/ghostty-themes/Apple Classic
 1015@@ -0,0 +1,22 @@
 1016+palette = 0=#000000
 1017+palette = 1=#c91b00
 1018+palette = 2=#00c200
 1019+palette = 3=#c7c400
 1020+palette = 4=#0225c7
 1021+palette = 5=#ca30c7
 1022+palette = 6=#00c5c7
 1023+palette = 7=#c7c7c7
 1024+palette = 8=#686868
 1025+palette = 9=#ff6e67
 1026+palette = 10=#5ffa68
 1027+palette = 11=#fffc67
 1028+palette = 12=#6871ff
 1029+palette = 13=#ff77ff
 1030+palette = 14=#60fdff
 1031+palette = 15=#ffffff
 1032+background = #2c2b2b
 1033+foreground = #d5a200
 1034+cursor-color = #c7c7c7
 1035+cursor-text = #ffffff
 1036+selection-background = #6b5b02
 1037+selection-foreground = #67e000
 1038diff --git a/ghostty-themes/Apple System Colors b/ghostty-themes/Apple System Colors
 1039new file mode 100644
 1040index 0000000000000000000000000000000000000000..a4dd1a31b60ad0153c22cab37bbe81af0f029b19
 1041--- /dev/null
 1042+++ b/ghostty-themes/Apple System Colors
 1043@@ -0,0 +1,22 @@
 1044+palette = 0=#1a1a1a
 1045+palette = 1=#cc372e
 1046+palette = 2=#26a439
 1047+palette = 3=#cdac08
 1048+palette = 4=#0869cb
 1049+palette = 5=#9647bf
 1050+palette = 6=#479ec2
 1051+palette = 7=#98989d
 1052+palette = 8=#464646
 1053+palette = 9=#ff453a
 1054+palette = 10=#32d74b
 1055+palette = 11=#ffd60a
 1056+palette = 12=#0a84ff
 1057+palette = 13=#bf5af2
 1058+palette = 14=#76d6ff
 1059+palette = 15=#ffffff
 1060+background = #1e1e1e
 1061+foreground = #ffffff
 1062+cursor-color = #98989d
 1063+cursor-text = #ffffff
 1064+selection-background = #3f638b
 1065+selection-foreground = #ffffff
 1066diff --git a/ghostty-themes/Apple System Colors Light b/ghostty-themes/Apple System Colors Light
 1067new file mode 100644
 1068index 0000000000000000000000000000000000000000..1f5448da98ebd20d2ea034f628c7b0cd985ed5cb
 1069--- /dev/null
 1070+++ b/ghostty-themes/Apple System Colors Light
 1071@@ -0,0 +1,22 @@
 1072+palette = 0=#1a1a1a
 1073+palette = 1=#bc4437
 1074+palette = 2=#51a148
 1075+palette = 3=#c7ad3a
 1076+palette = 4=#2e68c5
 1077+palette = 5=#8c4bb8
 1078+palette = 6=#5e9cbe
 1079+palette = 7=#98989d
 1080+palette = 8=#464646
 1081+palette = 9=#eb5545
 1082+palette = 10=#6bd45f
 1083+palette = 11=#f8d84a
 1084+palette = 12=#3b82f7
 1085+palette = 13=#b260ea
 1086+palette = 14=#8dd3fb
 1087+palette = 15=#ffffff
 1088+background = #feffff
 1089+foreground = #000000
 1090+cursor-color = #98989d
 1091+cursor-text = #ffffff
 1092+selection-background = #b4d7ff
 1093+selection-foreground = #000000
 1094diff --git a/ghostty-themes/Argonaut b/ghostty-themes/Argonaut
 1095new file mode 100644
 1096index 0000000000000000000000000000000000000000..39d5e1bfdc4be25b055a20796524a99345f3cc05
 1097--- /dev/null
 1098+++ b/ghostty-themes/Argonaut
 1099@@ -0,0 +1,22 @@
 1100+palette = 0=#232323
 1101+palette = 1=#ff000f
 1102+palette = 2=#8ce10b
 1103+palette = 3=#ffb900
 1104+palette = 4=#008df8
 1105+palette = 5=#6d43a6
 1106+palette = 6=#00d8eb
 1107+palette = 7=#ffffff
 1108+palette = 8=#444444
 1109+palette = 9=#ff2740
 1110+palette = 10=#abe15b
 1111+palette = 11=#ffd242
 1112+palette = 12=#0092ff
 1113+palette = 13=#9a5feb
 1114+palette = 14=#67fff0
 1115+palette = 15=#ffffff
 1116+background = #0e1019
 1117+foreground = #fffaf4
 1118+cursor-color = #ff0018
 1119+cursor-text = #ff0018
 1120+selection-background = #002a3b
 1121+selection-foreground = #ffffff
 1122diff --git a/ghostty-themes/Arthur b/ghostty-themes/Arthur
 1123new file mode 100644
 1124index 0000000000000000000000000000000000000000..b2d08034a23b140a70733dbf4dfcc404c4e2eaa5
 1125--- /dev/null
 1126+++ b/ghostty-themes/Arthur
 1127@@ -0,0 +1,22 @@
 1128+palette = 0=#3d352a
 1129+palette = 1=#cd5c5c
 1130+palette = 2=#86af80
 1131+palette = 3=#e8ae5b
 1132+palette = 4=#6495ed
 1133+palette = 5=#deb887
 1134+palette = 6=#b0c4de
 1135+palette = 7=#bbaa99
 1136+palette = 8=#554444
 1137+palette = 9=#cc5533
 1138+palette = 10=#88aa22
 1139+palette = 11=#ffa75d
 1140+palette = 12=#87ceeb
 1141+palette = 13=#996600
 1142+palette = 14=#b0c4de
 1143+palette = 15=#ddccbb
 1144+background = #1c1c1c
 1145+foreground = #ddeedd
 1146+cursor-color = #e2bbef
 1147+cursor-text = #000000
 1148+selection-background = #4d4d4d
 1149+selection-foreground = #ffffff
 1150diff --git a/ghostty-themes/AtelierSulphurpool b/ghostty-themes/AtelierSulphurpool
 1151new file mode 100644
 1152index 0000000000000000000000000000000000000000..7a2018f564c6e2432cb3d949d76c60bbb65b0402
 1153--- /dev/null
 1154+++ b/ghostty-themes/AtelierSulphurpool
 1155@@ -0,0 +1,22 @@
 1156+palette = 0=#202746
 1157+palette = 1=#c94922
 1158+palette = 2=#ac9739
 1159+palette = 3=#c08b30
 1160+palette = 4=#3d8fd1
 1161+palette = 5=#6679cc
 1162+palette = 6=#22a2c9
 1163+palette = 7=#979db4
 1164+palette = 8=#6b7394
 1165+palette = 9=#c76b29
 1166+palette = 10=#293256
 1167+palette = 11=#5e6687
 1168+palette = 12=#898ea4
 1169+palette = 13=#dfe2f1
 1170+palette = 14=#9c637a
 1171+palette = 15=#f5f7ff
 1172+background = #202746
 1173+foreground = #979db4
 1174+cursor-color = #979db4
 1175+cursor-text = #202746
 1176+selection-background = #5e6687
 1177+selection-foreground = #979db4
 1178diff --git a/ghostty-themes/Atom b/ghostty-themes/Atom
 1179new file mode 100644
 1180index 0000000000000000000000000000000000000000..039e38333af059451b348317db06c42e809bc1b6
 1181--- /dev/null
 1182+++ b/ghostty-themes/Atom
 1183@@ -0,0 +1,22 @@
 1184+palette = 0=#000000
 1185+palette = 1=#fd5ff1
 1186+palette = 2=#87c38a
 1187+palette = 3=#ffd7b1
 1188+palette = 4=#85befd
 1189+palette = 5=#b9b6fc
 1190+palette = 6=#85befd
 1191+palette = 7=#e0e0e0
 1192+palette = 8=#000000
 1193+palette = 9=#fd5ff1
 1194+palette = 10=#94fa36
 1195+palette = 11=#f5ffa8
 1196+palette = 12=#96cbfe
 1197+palette = 13=#b9b6fc
 1198+palette = 14=#85befd
 1199+palette = 15=#e0e0e0
 1200+background = #161719
 1201+foreground = #c5c8c6
 1202+cursor-color = #d0d0d0
 1203+cursor-text = #151515
 1204+selection-background = #444444
 1205+selection-foreground = #c5c8c6
 1206diff --git a/ghostty-themes/AtomOneLight b/ghostty-themes/AtomOneLight
 1207new file mode 100644
 1208index 0000000000000000000000000000000000000000..53236fc6fc11475d3403fb490301ed45f867ea25
 1209--- /dev/null
 1210+++ b/ghostty-themes/AtomOneLight
 1211@@ -0,0 +1,22 @@
 1212+palette = 0=#000000
 1213+palette = 1=#de3e35
 1214+palette = 2=#3f953a
 1215+palette = 3=#d2b67c
 1216+palette = 4=#2f5af3
 1217+palette = 5=#950095
 1218+palette = 6=#3f953a
 1219+palette = 7=#bbbbbb
 1220+palette = 8=#000000
 1221+palette = 9=#de3e35
 1222+palette = 10=#3f953a
 1223+palette = 11=#d2b67c
 1224+palette = 12=#2f5af3
 1225+palette = 13=#a00095
 1226+palette = 14=#3f953a
 1227+palette = 15=#ffffff
 1228+background = #f9f9f9
 1229+foreground = #2a2c33
 1230+cursor-color = #bbbbbb
 1231+cursor-text = #ffffff
 1232+selection-background = #ededed
 1233+selection-foreground = #2a2c33
 1234diff --git a/ghostty-themes/Aura b/ghostty-themes/Aura
 1235new file mode 100644
 1236index 0000000000000000000000000000000000000000..98355da33bf85fbfbba3a8a281e74926f9958e76
 1237--- /dev/null
 1238+++ b/ghostty-themes/Aura
 1239@@ -0,0 +1,22 @@
 1240+palette = 0=#110f18
 1241+palette = 1=#ff6767
 1242+palette = 2=#61ffca
 1243+palette = 3=#ffca85
 1244+palette = 4=#a277ff
 1245+palette = 5=#a277ff
 1246+palette = 6=#61ffca
 1247+palette = 7=#edecee
 1248+palette = 8=#4d4d4d
 1249+palette = 9=#ffca85
 1250+palette = 10=#a277ff
 1251+palette = 11=#ffca85
 1252+palette = 12=#a277ff
 1253+palette = 13=#a277ff
 1254+palette = 14=#61ffca
 1255+palette = 15=#edecee
 1256+background = #15141b
 1257+foreground = #edecee
 1258+cursor-color = #a277ff
 1259+cursor-text = #edecee
 1260+selection-background = #a277ff
 1261+selection-foreground = #edecee
 1262diff --git a/ghostty-themes/Aurora b/ghostty-themes/Aurora
 1263new file mode 100644
 1264index 0000000000000000000000000000000000000000..8aeea611e680c0f51dd34a5f7f5a556904897823
 1265--- /dev/null
 1266+++ b/ghostty-themes/Aurora
 1267@@ -0,0 +1,22 @@
 1268+palette = 0=#23262e
 1269+palette = 1=#f0266f
 1270+palette = 2=#8fd46d
 1271+palette = 3=#ffe66d
 1272+palette = 4=#0321d7
 1273+palette = 5=#ee5d43
 1274+palette = 6=#03d6b8
 1275+palette = 7=#c74ded
 1276+palette = 8=#292e38
 1277+palette = 9=#f92672
 1278+palette = 10=#8fd46d
 1279+palette = 11=#ffe66d
 1280+palette = 12=#03d6b8
 1281+palette = 13=#ee5d43
 1282+palette = 14=#03d6b8
 1283+palette = 15=#c74ded
 1284+background = #23262e
 1285+foreground = #ffca28
 1286+cursor-color = #ee5d43
 1287+cursor-text = #ffd29c
 1288+selection-background = #292e38
 1289+selection-foreground = #00e8c6
 1290diff --git a/ghostty-themes/Ayu Mirage b/ghostty-themes/Ayu Mirage
 1291new file mode 100644
 1292index 0000000000000000000000000000000000000000..a9dd34b2acb4fd10233e5fc29f42a56f19a6c0d0
 1293--- /dev/null
 1294+++ b/ghostty-themes/Ayu Mirage
 1295@@ -0,0 +1,22 @@
 1296+palette = 0=#191e2a
 1297+palette = 1=#ed8274
 1298+palette = 2=#a6cc70
 1299+palette = 3=#fad07b
 1300+palette = 4=#6dcbfa
 1301+palette = 5=#cfbafa
 1302+palette = 6=#90e1c6
 1303+palette = 7=#c7c7c7
 1304+palette = 8=#686868
 1305+palette = 9=#f28779
 1306+palette = 10=#bae67e
 1307+palette = 11=#ffd580
 1308+palette = 12=#73d0ff
 1309+palette = 13=#d4bfff
 1310+palette = 14=#95e6cb
 1311+palette = 15=#ffffff
 1312+background = #1f2430
 1313+foreground = #cbccc6
 1314+cursor-color = #ffcc66
 1315+cursor-text = #1f2430
 1316+selection-background = #33415e
 1317+selection-foreground = #cbccc6
 1318diff --git a/ghostty-themes/Banana Blueberry b/ghostty-themes/Banana Blueberry
 1319new file mode 100644
 1320index 0000000000000000000000000000000000000000..5fd1c699396bf7c07667060c8057c4aaa0541f1c
 1321--- /dev/null
 1322+++ b/ghostty-themes/Banana Blueberry
 1323@@ -0,0 +1,22 @@
 1324+palette = 0=#17141f
 1325+palette = 1=#ff6b7f
 1326+palette = 2=#00bd9c
 1327+palette = 3=#e6c62f
 1328+palette = 4=#22e8df
 1329+palette = 5=#dc396a
 1330+palette = 6=#56b6c2
 1331+palette = 7=#f1f1f1
 1332+palette = 8=#495162
 1333+palette = 9=#fe9ea1
 1334+palette = 10=#98c379
 1335+palette = 11=#f9e46b
 1336+palette = 12=#91fff4
 1337+palette = 13=#da70d6
 1338+palette = 14=#bcf3ff
 1339+palette = 15=#ffffff
 1340+background = #191323
 1341+foreground = #cccccc
 1342+cursor-color = #e07d13
 1343+cursor-text = #ffffff
 1344+selection-background = #220525
 1345+selection-foreground = #f4f4f4
 1346diff --git a/ghostty-themes/Batman b/ghostty-themes/Batman
 1347new file mode 100644
 1348index 0000000000000000000000000000000000000000..78596cedd31a4a3f2ba0a75c813eb80f15f93166
 1349--- /dev/null
 1350+++ b/ghostty-themes/Batman
 1351@@ -0,0 +1,22 @@
 1352+palette = 0=#1b1d1e
 1353+palette = 1=#e6dc44
 1354+palette = 2=#c8be46
 1355+palette = 3=#f4fd22
 1356+palette = 4=#737174
 1357+palette = 5=#747271
 1358+palette = 6=#62605f
 1359+palette = 7=#c6c5bf
 1360+palette = 8=#505354
 1361+palette = 9=#fff78e
 1362+palette = 10=#fff27d
 1363+palette = 11=#feed6c
 1364+palette = 12=#919495
 1365+palette = 13=#9a9a9d
 1366+palette = 14=#a3a3a6
 1367+palette = 15=#dadbd6
 1368+background = #1b1d1e
 1369+foreground = #6f6f6f
 1370+cursor-color = #fcef0c
 1371+cursor-text = #000000
 1372+selection-background = #4d504c
 1373+selection-foreground = #f0e04a
 1374diff --git a/ghostty-themes/Belafonte Day b/ghostty-themes/Belafonte Day
 1375new file mode 100644
 1376index 0000000000000000000000000000000000000000..d133cb5c14be39d198f38854da4bb05fa721be02
 1377--- /dev/null
 1378+++ b/ghostty-themes/Belafonte Day
 1379@@ -0,0 +1,22 @@
 1380+palette = 0=#20111b
 1381+palette = 1=#be100e
 1382+palette = 2=#858162
 1383+palette = 3=#eaa549
 1384+palette = 4=#426a79
 1385+palette = 5=#97522c
 1386+palette = 6=#989a9c
 1387+palette = 7=#968c83
 1388+palette = 8=#5e5252
 1389+palette = 9=#be100e
 1390+palette = 10=#858162
 1391+palette = 11=#eaa549
 1392+palette = 12=#426a79
 1393+palette = 13=#97522c
 1394+palette = 14=#989a9c
 1395+palette = 15=#d5ccba
 1396+background = #d5ccba
 1397+foreground = #45373c
 1398+cursor-color = #45373c
 1399+cursor-text = #d5ccba
 1400+selection-background = #968c83
 1401+selection-foreground = #45373c
 1402diff --git a/ghostty-themes/Belafonte Night b/ghostty-themes/Belafonte Night
 1403new file mode 100644
 1404index 0000000000000000000000000000000000000000..0960f2b835d2f265ecc428d4693eb9fef042fb73
 1405--- /dev/null
 1406+++ b/ghostty-themes/Belafonte Night
 1407@@ -0,0 +1,22 @@
 1408+palette = 0=#20111b
 1409+palette = 1=#be100e
 1410+palette = 2=#858162
 1411+palette = 3=#eaa549
 1412+palette = 4=#426a79
 1413+palette = 5=#97522c
 1414+palette = 6=#989a9c
 1415+palette = 7=#968c83
 1416+palette = 8=#5e5252
 1417+palette = 9=#be100e
 1418+palette = 10=#858162
 1419+palette = 11=#eaa549
 1420+palette = 12=#426a79
 1421+palette = 13=#97522c
 1422+palette = 14=#989a9c
 1423+palette = 15=#d5ccba
 1424+background = #20111b
 1425+foreground = #968c83
 1426+cursor-color = #968c83
 1427+cursor-text = #20111b
 1428+selection-background = #45373c
 1429+selection-foreground = #968c83
 1430diff --git a/ghostty-themes/BirdsOfParadise b/ghostty-themes/BirdsOfParadise
 1431new file mode 100644
 1432index 0000000000000000000000000000000000000000..297c7cfc8f37c8b86891591a29eb43c308f968ea
 1433--- /dev/null
 1434+++ b/ghostty-themes/BirdsOfParadise
 1435@@ -0,0 +1,22 @@
 1436+palette = 0=#573d26
 1437+palette = 1=#be2d26
 1438+palette = 2=#6ba18a
 1439+palette = 3=#e99d2a
 1440+palette = 4=#5a86ad
 1441+palette = 5=#ac80a6
 1442+palette = 6=#74a6ad
 1443+palette = 7=#e0dbb7
 1444+palette = 8=#9b6c4a
 1445+palette = 9=#e84627
 1446+palette = 10=#95d8ba
 1447+palette = 11=#d0d150
 1448+palette = 12=#b8d3ed
 1449+palette = 13=#d19ecb
 1450+palette = 14=#93cfd7
 1451+palette = 15=#fff9d5
 1452+background = #2a1f1d
 1453+foreground = #e0dbb7
 1454+cursor-color = #573d26
 1455+cursor-text = #573d26
 1456+selection-background = #563c27
 1457+selection-foreground = #e0dbbb
 1458diff --git a/ghostty-themes/Blazer b/ghostty-themes/Blazer
 1459new file mode 100644
 1460index 0000000000000000000000000000000000000000..b46b200e73e72054c15c25fc7f4d61c7b674764b
 1461--- /dev/null
 1462+++ b/ghostty-themes/Blazer
 1463@@ -0,0 +1,22 @@
 1464+palette = 0=#000000
 1465+palette = 1=#b87a7a
 1466+palette = 2=#7ab87a
 1467+palette = 3=#b8b87a
 1468+palette = 4=#7a7ab8
 1469+palette = 5=#b87ab8
 1470+palette = 6=#7ab8b8
 1471+palette = 7=#d9d9d9
 1472+palette = 8=#262626
 1473+palette = 9=#dbbdbd
 1474+palette = 10=#bddbbd
 1475+palette = 11=#dbdbbd
 1476+palette = 12=#bdbddb
 1477+palette = 13=#dbbddb
 1478+palette = 14=#bddbdb
 1479+palette = 15=#ffffff
 1480+background = #0d1926
 1481+foreground = #d9e6f2
 1482+cursor-color = #d9e6f2
 1483+cursor-text = #0d1926
 1484+selection-background = #c1ddff
 1485+selection-foreground = #000000
 1486diff --git a/ghostty-themes/Blue Matrix b/ghostty-themes/Blue Matrix
 1487new file mode 100644
 1488index 0000000000000000000000000000000000000000..9a6895f6633aab4d640edb344f02132cc15ea498
 1489--- /dev/null
 1490+++ b/ghostty-themes/Blue Matrix
 1491@@ -0,0 +1,22 @@
 1492+palette = 0=#101116
 1493+palette = 1=#ff5680
 1494+palette = 2=#00ff9c
 1495+palette = 3=#fffc58
 1496+palette = 4=#00b0ff
 1497+palette = 5=#d57bff
 1498+palette = 6=#76c1ff
 1499+palette = 7=#c7c7c7
 1500+palette = 8=#686868
 1501+palette = 9=#ff6e67
 1502+palette = 10=#5ffa68
 1503+palette = 11=#fffc67
 1504+palette = 12=#6871ff
 1505+palette = 13=#d682ec
 1506+palette = 14=#60fdff
 1507+palette = 15=#ffffff
 1508+background = #101116
 1509+foreground = #00a2ff
 1510+cursor-color = #76ff9f
 1511+cursor-text = #ffffff
 1512+selection-background = #c1deff
 1513+selection-foreground = #000000
 1514diff --git a/ghostty-themes/BlueBerryPie b/ghostty-themes/BlueBerryPie
 1515new file mode 100644
 1516index 0000000000000000000000000000000000000000..d20e41c748305b973240842513d046266571f713
 1517--- /dev/null
 1518+++ b/ghostty-themes/BlueBerryPie
 1519@@ -0,0 +1,22 @@
 1520+palette = 0=#0a4c62
 1521+palette = 1=#99246e
 1522+palette = 2=#5cb1b3
 1523+palette = 3=#eab9a8
 1524+palette = 4=#90a5bd
 1525+palette = 5=#9d54a7
 1526+palette = 6=#7e83cc
 1527+palette = 7=#f0e8d6
 1528+palette = 8=#201637
 1529+palette = 9=#c87272
 1530+palette = 10=#0a6c7e
 1531+palette = 11=#7a3188
 1532+palette = 12=#39173d
 1533+palette = 13=#bc94b7
 1534+palette = 14=#5e6071
 1535+palette = 15=#0a6c7e
 1536+background = #1c0c28
 1537+foreground = #babab9
 1538+cursor-color = #fcfad6
 1539+cursor-text = #000000
 1540+selection-background = #606060
 1541+selection-foreground = #ffffff
 1542diff --git a/ghostty-themes/BlueDolphin b/ghostty-themes/BlueDolphin
 1543new file mode 100644
 1544index 0000000000000000000000000000000000000000..e4b95accbd3f98d806a884162a4dce2117d032a7
 1545--- /dev/null
 1546+++ b/ghostty-themes/BlueDolphin
 1547@@ -0,0 +1,22 @@
 1548+palette = 0=#292d3e
 1549+palette = 1=#ff8288
 1550+palette = 2=#b4e88d
 1551+palette = 3=#f4d69f
 1552+palette = 4=#82aaff
 1553+palette = 5=#e9c1ff
 1554+palette = 6=#89ebff
 1555+palette = 7=#d0d0d0
 1556+palette = 8=#434758
 1557+palette = 9=#ff8b92
 1558+palette = 10=#ddffa7
 1559+palette = 11=#ffe585
 1560+palette = 12=#9cc4ff
 1561+palette = 13=#ddb0f6
 1562+palette = 14=#a3f7ff
 1563+palette = 15=#ffffff
 1564+background = #006984
 1565+foreground = #c5f2ff
 1566+cursor-color = #ffcc00
 1567+cursor-text = #292d3e
 1568+selection-background = #2baeca
 1569+selection-foreground = #eceff1
 1570diff --git a/ghostty-themes/BlulocoDark b/ghostty-themes/BlulocoDark
 1571new file mode 100644
 1572index 0000000000000000000000000000000000000000..e870a19896aac7364bffe4998dd89c4f87582863
 1573--- /dev/null
 1574+++ b/ghostty-themes/BlulocoDark
 1575@@ -0,0 +1,22 @@
 1576+palette = 0=#41444d
 1577+palette = 1=#fc2f52
 1578+palette = 2=#25a45c
 1579+palette = 3=#ff936a
 1580+palette = 4=#3476ff
 1581+palette = 5=#7a82da
 1582+palette = 6=#4483aa
 1583+palette = 7=#cdd4e0
 1584+palette = 8=#8f9aae
 1585+palette = 9=#ff6480
 1586+palette = 10=#3fc56b
 1587+palette = 11=#f9c859
 1588+palette = 12=#10b1fe
 1589+palette = 13=#ff78f8
 1590+palette = 14=#5fb9bc
 1591+palette = 15=#ffffff
 1592+background = #282c34
 1593+foreground = #b9c0cb
 1594+cursor-color = #ffcc00
 1595+cursor-text = #282c34
 1596+selection-background = #b9c0ca
 1597+selection-foreground = #272b33
 1598diff --git a/ghostty-themes/BlulocoLight b/ghostty-themes/BlulocoLight
 1599new file mode 100644
 1600index 0000000000000000000000000000000000000000..05785fd3b8b0bc869b4a35a1a22f279ca837d1bd
 1601--- /dev/null
 1602+++ b/ghostty-themes/BlulocoLight
 1603@@ -0,0 +1,22 @@
 1604+palette = 0=#373a41
 1605+palette = 1=#d52753
 1606+palette = 2=#23974a
 1607+palette = 3=#df631c
 1608+palette = 4=#275fe4
 1609+palette = 5=#823ff1
 1610+palette = 6=#27618d
 1611+palette = 7=#babbc2
 1612+palette = 8=#676a77
 1613+palette = 9=#ff6480
 1614+palette = 10=#3cbc66
 1615+palette = 11=#c5a332
 1616+palette = 12=#0099e1
 1617+palette = 13=#ce33c0
 1618+palette = 14=#6d93bb
 1619+palette = 15=#d3d3d3
 1620+background = #f9f9f9
 1621+foreground = #373a41
 1622+cursor-color = #f32759
 1623+cursor-text = #ffffff
 1624+selection-background = #daf0ff
 1625+selection-foreground = #373a41
 1626diff --git a/ghostty-themes/Borland b/ghostty-themes/Borland
 1627new file mode 100644
 1628index 0000000000000000000000000000000000000000..96c8ec03825cf5422aa1a8429a7ff4694413722d
 1629--- /dev/null
 1630+++ b/ghostty-themes/Borland
 1631@@ -0,0 +1,22 @@
 1632+palette = 0=#4f4f4f
 1633+palette = 1=#ff6c60
 1634+palette = 2=#a8ff60
 1635+palette = 3=#ffffb6
 1636+palette = 4=#96cbfe
 1637+palette = 5=#ff73fd
 1638+palette = 6=#c6c5fe
 1639+palette = 7=#eeeeee
 1640+palette = 8=#7c7c7c
 1641+palette = 9=#ffb6b0
 1642+palette = 10=#ceffac
 1643+palette = 11=#ffffcc
 1644+palette = 12=#b5dcff
 1645+palette = 13=#ff9cfe
 1646+palette = 14=#dfdffe
 1647+palette = 15=#ffffff
 1648+background = #0000a4
 1649+foreground = #ffff4e
 1650+cursor-color = #ffa560
 1651+cursor-text = #ffffff
 1652+selection-background = #a4a4a4
 1653+selection-foreground = #0000a4
 1654diff --git a/ghostty-themes/Breeze b/ghostty-themes/Breeze
 1655new file mode 100644
 1656index 0000000000000000000000000000000000000000..ec1d8a6ee7b75e4bb9af94bf32136a92deb84fb3
 1657--- /dev/null
 1658+++ b/ghostty-themes/Breeze
 1659@@ -0,0 +1,22 @@
 1660+palette = 0=#31363b
 1661+palette = 1=#ed1515
 1662+palette = 2=#11d116
 1663+palette = 3=#f67400
 1664+palette = 4=#1d99f3
 1665+palette = 5=#9b59b6
 1666+palette = 6=#1abc9c
 1667+palette = 7=#eff0f1
 1668+palette = 8=#7f8c8d
 1669+palette = 9=#c0392b
 1670+palette = 10=#1cdc9a
 1671+palette = 11=#fdbc4b
 1672+palette = 12=#3daee9
 1673+palette = 13=#8e44ad
 1674+palette = 14=#16a085
 1675+palette = 15=#fcfcfc
 1676+background = #31363b
 1677+foreground = #eff0f1
 1678+cursor-color = #eff0f1
 1679+cursor-text = #31363b
 1680+selection-background = #eff0f1
 1681+selection-foreground = #31363b
 1682diff --git a/ghostty-themes/Bright Lights b/ghostty-themes/Bright Lights
 1683new file mode 100644
 1684index 0000000000000000000000000000000000000000..def2b447f300bcef139fb05c00033286ef7cf96b
 1685--- /dev/null
 1686+++ b/ghostty-themes/Bright Lights
 1687@@ -0,0 +1,22 @@
 1688+palette = 0=#191919
 1689+palette = 1=#ff355b
 1690+palette = 2=#b7e876
 1691+palette = 3=#ffc251
 1692+palette = 4=#76d4ff
 1693+palette = 5=#ba76e7
 1694+palette = 6=#6cbfb5
 1695+palette = 7=#c2c8d7
 1696+palette = 8=#191919
 1697+palette = 9=#ff355b
 1698+palette = 10=#b7e876
 1699+palette = 11=#ffc251
 1700+palette = 12=#76d5ff
 1701+palette = 13=#ba76e7
 1702+palette = 14=#6cbfb5
 1703+palette = 15=#c2c8d7
 1704+background = #191919
 1705+foreground = #b3c9d7
 1706+cursor-color = #f34b00
 1707+cursor-text = #002831
 1708+selection-background = #b3c9d7
 1709+selection-foreground = #191919
 1710diff --git a/ghostty-themes/Broadcast b/ghostty-themes/Broadcast
 1711new file mode 100644
 1712index 0000000000000000000000000000000000000000..13a337b6d47201302b748afa7bd36383cb06b564
 1713--- /dev/null
 1714+++ b/ghostty-themes/Broadcast
 1715@@ -0,0 +1,22 @@
 1716+palette = 0=#000000
 1717+palette = 1=#da4939
 1718+palette = 2=#519f50
 1719+palette = 3=#ffd24a
 1720+palette = 4=#6d9cbe
 1721+palette = 5=#d0d0ff
 1722+palette = 6=#6e9cbe
 1723+palette = 7=#ffffff
 1724+palette = 8=#323232
 1725+palette = 9=#ff7b6b
 1726+palette = 10=#83d182
 1727+palette = 11=#ffff7c
 1728+palette = 12=#9fcef0
 1729+palette = 13=#ffffff
 1730+palette = 14=#a0cef0
 1731+palette = 15=#ffffff
 1732+background = #2b2b2b
 1733+foreground = #e6e1dc
 1734+cursor-color = #ffffff
 1735+cursor-text = #e6e1dc
 1736+selection-background = #5a647e
 1737+selection-foreground = #e6e1dc
 1738diff --git a/ghostty-themes/Brogrammer b/ghostty-themes/Brogrammer
 1739new file mode 100644
 1740index 0000000000000000000000000000000000000000..d8e79f2e158445f608b7558e5b000fd8406aeb6b
 1741--- /dev/null
 1742+++ b/ghostty-themes/Brogrammer
 1743@@ -0,0 +1,22 @@
 1744+palette = 0=#1f1f1f
 1745+palette = 1=#f81118
 1746+palette = 2=#2dc55e
 1747+palette = 3=#ecba0f
 1748+palette = 4=#2a84d2
 1749+palette = 5=#4e5ab7
 1750+palette = 6=#1081d6
 1751+palette = 7=#d6dbe5
 1752+palette = 8=#d6dbe5
 1753+palette = 9=#de352e
 1754+palette = 10=#1dd361
 1755+palette = 11=#f3bd09
 1756+palette = 12=#1081d6
 1757+palette = 13=#5350b9
 1758+palette = 14=#0f7ddb
 1759+palette = 15=#ffffff
 1760+background = #131313
 1761+foreground = #d6dbe5
 1762+cursor-color = #b9b9b9
 1763+cursor-text = #101010
 1764+selection-background = #1f1f1f
 1765+selection-foreground = #d6dbe5
 1766diff --git a/ghostty-themes/Builtin Dark b/ghostty-themes/Builtin Dark
 1767new file mode 100644
 1768index 0000000000000000000000000000000000000000..7470e1da370830982b01da162c41362ef8ec65d8
 1769--- /dev/null
 1770+++ b/ghostty-themes/Builtin Dark
 1771@@ -0,0 +1,22 @@
 1772+palette = 0=#000000
 1773+palette = 1=#bb0000
 1774+palette = 2=#00bb00
 1775+palette = 3=#bbbb00
 1776+palette = 4=#0000bb
 1777+palette = 5=#bb00bb
 1778+palette = 6=#00bbbb
 1779+palette = 7=#bbbbbb
 1780+palette = 8=#555555
 1781+palette = 9=#ff5555
 1782+palette = 10=#55ff55
 1783+palette = 11=#ffff55
 1784+palette = 12=#5555ff
 1785+palette = 13=#ff55ff
 1786+palette = 14=#55ffff
 1787+palette = 15=#ffffff
 1788+background = #000000
 1789+foreground = #bbbbbb
 1790+cursor-color = #bbbbbb
 1791+cursor-text = #ffffff
 1792+selection-background = #b5d5ff
 1793+selection-foreground = #000000
 1794diff --git a/ghostty-themes/Builtin Light b/ghostty-themes/Builtin Light
 1795new file mode 100644
 1796index 0000000000000000000000000000000000000000..e28f08ad700923c41ef6a187446baa9e17b7cc91
 1797--- /dev/null
 1798+++ b/ghostty-themes/Builtin Light
 1799@@ -0,0 +1,22 @@
 1800+palette = 0=#000000
 1801+palette = 1=#bb0000
 1802+palette = 2=#00bb00
 1803+palette = 3=#bbbb00
 1804+palette = 4=#0000bb
 1805+palette = 5=#bb00bb
 1806+palette = 6=#00bbbb
 1807+palette = 7=#bbbbbb
 1808+palette = 8=#555555
 1809+palette = 9=#ff5555
 1810+palette = 10=#55ff55
 1811+palette = 11=#ffff55
 1812+palette = 12=#5555ff
 1813+palette = 13=#ff55ff
 1814+palette = 14=#55ffff
 1815+palette = 15=#ffffff
 1816+background = #ffffff
 1817+foreground = #000000
 1818+cursor-color = #000000
 1819+cursor-text = #ffffff
 1820+selection-background = #b5d5ff
 1821+selection-foreground = #000000
 1822diff --git a/ghostty-themes/Builtin Pastel Dark b/ghostty-themes/Builtin Pastel Dark
 1823new file mode 100644
 1824index 0000000000000000000000000000000000000000..0e13d34f921f0fc96b31487df28b7da0adcdad62
 1825--- /dev/null
 1826+++ b/ghostty-themes/Builtin Pastel Dark
 1827@@ -0,0 +1,22 @@
 1828+palette = 0=#4f4f4f
 1829+palette = 1=#ff6c60
 1830+palette = 2=#a8ff60
 1831+palette = 3=#ffffb6
 1832+palette = 4=#96cbfe
 1833+palette = 5=#ff73fd
 1834+palette = 6=#c6c5fe
 1835+palette = 7=#eeeeee
 1836+palette = 8=#7c7c7c
 1837+palette = 9=#ffb6b0
 1838+palette = 10=#ceffac
 1839+palette = 11=#ffffcc
 1840+palette = 12=#b5dcff
 1841+palette = 13=#ff9cfe
 1842+palette = 14=#dfdffe
 1843+palette = 15=#ffffff
 1844+background = #000000
 1845+foreground = #bbbbbb
 1846+cursor-color = #ffa560
 1847+cursor-text = #ffffff
 1848+selection-background = #363983
 1849+selection-foreground = #f2f2f2
 1850diff --git a/ghostty-themes/Builtin Solarized Dark b/ghostty-themes/Builtin Solarized Dark
 1851new file mode 100644
 1852index 0000000000000000000000000000000000000000..3c484144aa8d7cca60ae3546fea47cc074a4e33a
 1853--- /dev/null
 1854+++ b/ghostty-themes/Builtin Solarized Dark
 1855@@ -0,0 +1,22 @@
 1856+palette = 0=#073642
 1857+palette = 1=#dc322f
 1858+palette = 2=#859900
 1859+palette = 3=#b58900
 1860+palette = 4=#268bd2
 1861+palette = 5=#d33682
 1862+palette = 6=#2aa198
 1863+palette = 7=#eee8d5
 1864+palette = 8=#002b36
 1865+palette = 9=#cb4b16
 1866+palette = 10=#586e75
 1867+palette = 11=#657b83
 1868+palette = 12=#839496
 1869+palette = 13=#6c71c4
 1870+palette = 14=#93a1a1
 1871+palette = 15=#fdf6e3
 1872+background = #002b36
 1873+foreground = #839496
 1874+cursor-color = #839496
 1875+cursor-text = #073642
 1876+selection-background = #073642
 1877+selection-foreground = #93a1a1
 1878diff --git a/ghostty-themes/Builtin Solarized Light b/ghostty-themes/Builtin Solarized Light
 1879new file mode 100644
 1880index 0000000000000000000000000000000000000000..5c82b7982094bde2696e0c02458747e3566137ef
 1881--- /dev/null
 1882+++ b/ghostty-themes/Builtin Solarized Light
 1883@@ -0,0 +1,22 @@
 1884+palette = 0=#073642
 1885+palette = 1=#dc322f
 1886+palette = 2=#859900
 1887+palette = 3=#b58900
 1888+palette = 4=#268bd2
 1889+palette = 5=#d33682
 1890+palette = 6=#2aa198
 1891+palette = 7=#eee8d5
 1892+palette = 8=#002b36
 1893+palette = 9=#cb4b16
 1894+palette = 10=#586e75
 1895+palette = 11=#657b83
 1896+palette = 12=#839496
 1897+palette = 13=#6c71c4
 1898+palette = 14=#93a1a1
 1899+palette = 15=#fdf6e3
 1900+background = #fdf6e3
 1901+foreground = #657b83
 1902+cursor-color = #657b83
 1903+cursor-text = #eee8d5
 1904+selection-background = #eee8d5
 1905+selection-foreground = #586e75
 1906diff --git a/ghostty-themes/Builtin Tango Dark b/ghostty-themes/Builtin Tango Dark
 1907new file mode 100644
 1908index 0000000000000000000000000000000000000000..365d7eeaf699a353ad58ca18b861d8a62679c02b
 1909--- /dev/null
 1910+++ b/ghostty-themes/Builtin Tango Dark
 1911@@ -0,0 +1,22 @@
 1912+palette = 0=#000000
 1913+palette = 1=#cc0000
 1914+palette = 2=#4e9a06
 1915+palette = 3=#c4a000
 1916+palette = 4=#3465a4
 1917+palette = 5=#75507b
 1918+palette = 6=#06989a
 1919+palette = 7=#d3d7cf
 1920+palette = 8=#555753
 1921+palette = 9=#ef2929
 1922+palette = 10=#8ae234
 1923+palette = 11=#fce94f
 1924+palette = 12=#729fcf
 1925+palette = 13=#ad7fa8
 1926+palette = 14=#34e2e2
 1927+palette = 15=#eeeeec
 1928+background = #000000
 1929+foreground = #ffffff
 1930+cursor-color = #ffffff
 1931+cursor-text = #000000
 1932+selection-background = #b5d5ff
 1933+selection-foreground = #000000
 1934diff --git a/ghostty-themes/Builtin Tango Light b/ghostty-themes/Builtin Tango Light
 1935new file mode 100644
 1936index 0000000000000000000000000000000000000000..c689065e3e9c9b8a108de7659828f715bf4d5360
 1937--- /dev/null
 1938+++ b/ghostty-themes/Builtin Tango Light
 1939@@ -0,0 +1,22 @@
 1940+palette = 0=#000000
 1941+palette = 1=#cc0000
 1942+palette = 2=#4e9a06
 1943+palette = 3=#c4a000
 1944+palette = 4=#3465a4
 1945+palette = 5=#75507b
 1946+palette = 6=#06989a
 1947+palette = 7=#d3d7cf
 1948+palette = 8=#555753
 1949+palette = 9=#ef2929
 1950+palette = 10=#8ae234
 1951+palette = 11=#fce94f
 1952+palette = 12=#729fcf
 1953+palette = 13=#ad7fa8
 1954+palette = 14=#34e2e2
 1955+palette = 15=#eeeeec
 1956+background = #ffffff
 1957+foreground = #000000
 1958+cursor-color = #000000
 1959+cursor-text = #ffffff
 1960+selection-background = #b5d5ff
 1961+selection-foreground = #000000
 1962diff --git a/ghostty-themes/C64 b/ghostty-themes/C64
 1963new file mode 100644
 1964index 0000000000000000000000000000000000000000..44acd8ca48416d7c6bdb83769e4c0322e1d4ee81
 1965--- /dev/null
 1966+++ b/ghostty-themes/C64
 1967@@ -0,0 +1,22 @@
 1968+palette = 0=#090300
 1969+palette = 1=#883932
 1970+palette = 2=#55a049
 1971+palette = 3=#bfce72
 1972+palette = 4=#40318d
 1973+palette = 5=#8b3f96
 1974+palette = 6=#67b6bd
 1975+palette = 7=#ffffff
 1976+palette = 8=#000000
 1977+palette = 9=#883932
 1978+palette = 10=#55a049
 1979+palette = 11=#bfce72
 1980+palette = 12=#40318d
 1981+palette = 13=#8b3f96
 1982+palette = 14=#67b6bd
 1983+palette = 15=#f7f7f7
 1984+background = #40318d
 1985+foreground = #7869c4
 1986+cursor-color = #7869c4
 1987+cursor-text = #40318d
 1988+selection-background = #7869c4
 1989+selection-foreground = #40318d
 1990diff --git a/ghostty-themes/CGA b/ghostty-themes/CGA
 1991new file mode 100644
 1992index 0000000000000000000000000000000000000000..668cf8a8b2927e435b2ca144db462b538d302111
 1993--- /dev/null
 1994+++ b/ghostty-themes/CGA
 1995@@ -0,0 +1,22 @@
 1996+palette = 0=#000000
 1997+palette = 1=#aa0000
 1998+palette = 2=#00aa00
 1999+palette = 3=#aa5500
 2000+palette = 4=#0000aa
 2001+palette = 5=#aa00aa
 2002+palette = 6=#00aaaa
 2003+palette = 7=#aaaaaa
 2004+palette = 8=#555555
 2005+palette = 9=#ff5555
 2006+palette = 10=#55ff55
 2007+palette = 11=#ffff55
 2008+palette = 12=#5555ff
 2009+palette = 13=#ff55ff
 2010+palette = 14=#55ffff
 2011+palette = 15=#ffffff
 2012+background = #000000
 2013+foreground = #aaaaaa
 2014+cursor-color = #b8b8b8
 2015+cursor-text = #ffffff
 2016+selection-background = #c1deff
 2017+selection-foreground = #000000
 2018diff --git a/ghostty-themes/CLRS b/ghostty-themes/CLRS
 2019new file mode 100644
 2020index 0000000000000000000000000000000000000000..c8b313080173fb2516beacd89f588934dd85013c
 2021--- /dev/null
 2022+++ b/ghostty-themes/CLRS
 2023@@ -0,0 +1,22 @@
 2024+palette = 0=#000000
 2025+palette = 1=#f8282a
 2026+palette = 2=#328a5d
 2027+palette = 3=#fa701d
 2028+palette = 4=#135cd0
 2029+palette = 5=#9f00bd
 2030+palette = 6=#33c3c1
 2031+palette = 7=#b3b3b3
 2032+palette = 8=#555753
 2033+palette = 9=#fb0416
 2034+palette = 10=#2cc631
 2035+palette = 11=#fdd727
 2036+palette = 12=#1670ff
 2037+palette = 13=#e900b0
 2038+palette = 14=#3ad5ce
 2039+palette = 15=#eeeeec
 2040+background = #ffffff
 2041+foreground = #262626
 2042+cursor-color = #6fd3fc
 2043+cursor-text = #ffffff
 2044+selection-background = #6fd3fc
 2045+selection-foreground = #041730
 2046diff --git a/ghostty-themes/Calamity b/ghostty-themes/Calamity
 2047new file mode 100644
 2048index 0000000000000000000000000000000000000000..04e382c8874325851c645f927db45225e1ec5121
 2049--- /dev/null
 2050+++ b/ghostty-themes/Calamity
 2051@@ -0,0 +1,22 @@
 2052+palette = 0=#2f2833
 2053+palette = 1=#fc644d
 2054+palette = 2=#a5f69c
 2055+palette = 3=#e9d7a5
 2056+palette = 4=#3b79c7
 2057+palette = 5=#f92672
 2058+palette = 6=#74d3de
 2059+palette = 7=#d5ced9
 2060+palette = 8=#7e6c88
 2061+palette = 9=#fc644d
 2062+palette = 10=#a5f69c
 2063+palette = 11=#e9d7a5
 2064+palette = 12=#3b79c7
 2065+palette = 13=#f92672
 2066+palette = 14=#74d3de
 2067+palette = 15=#ffffff
 2068+background = #2f2833
 2069+foreground = #d5ced9
 2070+cursor-color = #d5ced9
 2071+cursor-text = #2f2833
 2072+selection-background = #7e6c88
 2073+selection-foreground = #d5ced9
 2074diff --git a/ghostty-themes/Chalk b/ghostty-themes/Chalk
 2075new file mode 100644
 2076index 0000000000000000000000000000000000000000..567394335748085f14658892e6a44ab46311b0c5
 2077--- /dev/null
 2078+++ b/ghostty-themes/Chalk
 2079@@ -0,0 +1,22 @@
 2080+palette = 0=#7d8b8f
 2081+palette = 1=#b23a52
 2082+palette = 2=#789b6a
 2083+palette = 3=#b9ac4a
 2084+palette = 4=#2a7fac
 2085+palette = 5=#bd4f5a
 2086+palette = 6=#44a799
 2087+palette = 7=#d2d8d9
 2088+palette = 8=#888888
 2089+palette = 9=#f24840
 2090+palette = 10=#80c470
 2091+palette = 11=#ffeb62
 2092+palette = 12=#4196ff
 2093+palette = 13=#fc5275
 2094+palette = 14=#53cdbd
 2095+palette = 15=#d2d8d9
 2096+background = #2b2d2e
 2097+foreground = #d2d8d9
 2098+cursor-color = #708284
 2099+cursor-text = #002831
 2100+selection-background = #e4e8ed
 2101+selection-foreground = #3f4041
 2102diff --git a/ghostty-themes/Chalkboard b/ghostty-themes/Chalkboard
 2103new file mode 100644
 2104index 0000000000000000000000000000000000000000..98f15acc6737aaaa58ed7e5309c29fbaf561e06b
 2105--- /dev/null
 2106+++ b/ghostty-themes/Chalkboard
 2107@@ -0,0 +1,22 @@
 2108+palette = 0=#000000
 2109+palette = 1=#c37372
 2110+palette = 2=#72c373
 2111+palette = 3=#c2c372
 2112+palette = 4=#7372c3
 2113+palette = 5=#c372c2
 2114+palette = 6=#72c2c3
 2115+palette = 7=#d9d9d9
 2116+palette = 8=#323232
 2117+palette = 9=#dbaaaa
 2118+palette = 10=#aadbaa
 2119+palette = 11=#dadbaa
 2120+palette = 12=#aaaadb
 2121+palette = 13=#dbaada
 2122+palette = 14=#aadadb
 2123+palette = 15=#ffffff
 2124+background = #29262f
 2125+foreground = #d9e6f2
 2126+cursor-color = #d9e6f2
 2127+cursor-text = #29262f
 2128+selection-background = #073642
 2129+selection-foreground = #ffffff
 2130diff --git a/ghostty-themes/ChallengerDeep b/ghostty-themes/ChallengerDeep
 2131new file mode 100644
 2132index 0000000000000000000000000000000000000000..21d3ade5012306c998378c5efdf5f152acac3cd0
 2133--- /dev/null
 2134+++ b/ghostty-themes/ChallengerDeep
 2135@@ -0,0 +1,22 @@
 2136+palette = 0=#141228
 2137+palette = 1=#ff5458
 2138+palette = 2=#62d196
 2139+palette = 3=#ffb378
 2140+palette = 4=#65b2ff
 2141+palette = 5=#906cff
 2142+palette = 6=#63f2f1
 2143+palette = 7=#a6b3cc
 2144+palette = 8=#565575
 2145+palette = 9=#ff8080
 2146+palette = 10=#95ffa4
 2147+palette = 11=#ffe9aa
 2148+palette = 12=#91ddff
 2149+palette = 13=#c991e1
 2150+palette = 14=#aaffe4
 2151+palette = 15=#cbe3e7
 2152+background = #1e1c31
 2153+foreground = #cbe1e7
 2154+cursor-color = #fbfcfc
 2155+cursor-text = #ff271d
 2156+selection-background = #cbe1e7
 2157+selection-foreground = #1e1c31
 2158diff --git a/ghostty-themes/Chester b/ghostty-themes/Chester
 2159new file mode 100644
 2160index 0000000000000000000000000000000000000000..8310c3f7a90c3f922a2f58c87067fb458434e873
 2161--- /dev/null
 2162+++ b/ghostty-themes/Chester
 2163@@ -0,0 +1,22 @@
 2164+palette = 0=#080200
 2165+palette = 1=#fa5e5b
 2166+palette = 2=#16c98d
 2167+palette = 3=#ffc83f
 2168+palette = 4=#288ad6
 2169+palette = 5=#d34590
 2170+palette = 6=#28ddde
 2171+palette = 7=#e7e7e7
 2172+palette = 8=#6f6b68
 2173+palette = 9=#fa5e5b
 2174+palette = 10=#16c98d
 2175+palette = 11=#feef6d
 2176+palette = 12=#278ad6
 2177+palette = 13=#d34590
 2178+palette = 14=#27dede
 2179+palette = 15=#ffffff
 2180+background = #2c3643
 2181+foreground = #ffffff
 2182+cursor-color = #b4b1b1
 2183+cursor-text = #000000
 2184+selection-background = #67747c
 2185+selection-foreground = #ffffff
 2186diff --git a/ghostty-themes/Ciapre b/ghostty-themes/Ciapre
 2187new file mode 100644
 2188index 0000000000000000000000000000000000000000..26669753c652008c56a560912bacff90ce5dbac9
 2189--- /dev/null
 2190+++ b/ghostty-themes/Ciapre
 2191@@ -0,0 +1,22 @@
 2192+palette = 0=#181818
 2193+palette = 1=#810009
 2194+palette = 2=#48513b
 2195+palette = 3=#cc8b3f
 2196+palette = 4=#576d8c
 2197+palette = 5=#724d7c
 2198+palette = 6=#5c4f4b
 2199+palette = 7=#aea47f
 2200+palette = 8=#555555
 2201+palette = 9=#ac3835
 2202+palette = 10=#a6a75d
 2203+palette = 11=#dcdf7c
 2204+palette = 12=#3097c6
 2205+palette = 13=#d33061
 2206+palette = 14=#f3dbb2
 2207+palette = 15=#f4f4f4
 2208+background = #191c27
 2209+foreground = #aea47a
 2210+cursor-color = #92805b
 2211+cursor-text = #181818
 2212+selection-background = #172539
 2213+selection-foreground = #aea47f
 2214diff --git a/ghostty-themes/Cobalt Neon b/ghostty-themes/Cobalt Neon
 2215new file mode 100644
 2216index 0000000000000000000000000000000000000000..0826a44c4a788b172de234fe0dc434e6e602dae8
 2217--- /dev/null
 2218+++ b/ghostty-themes/Cobalt Neon
 2219@@ -0,0 +1,22 @@
 2220+palette = 0=#142631
 2221+palette = 1=#ff2320
 2222+palette = 2=#3ba5ff
 2223+palette = 3=#e9e75c
 2224+palette = 4=#8ff586
 2225+palette = 5=#781aa0
 2226+palette = 6=#8ff586
 2227+palette = 7=#ba46b2
 2228+palette = 8=#fff688
 2229+palette = 9=#d4312e
 2230+palette = 10=#8ff586
 2231+palette = 11=#e9f06d
 2232+palette = 12=#3c7dd2
 2233+palette = 13=#8230a7
 2234+palette = 14=#6cbc67
 2235+palette = 15=#8ff586
 2236+background = #142838
 2237+foreground = #8ff586
 2238+cursor-color = #c4206f
 2239+cursor-text = #8ff586
 2240+selection-background = #094fb1
 2241+selection-foreground = #8ff586
 2242diff --git a/ghostty-themes/Cobalt2 b/ghostty-themes/Cobalt2
 2243new file mode 100644
 2244index 0000000000000000000000000000000000000000..904d2a8509d3cb14ec371b4b58786b1048e8e11a
 2245--- /dev/null
 2246+++ b/ghostty-themes/Cobalt2
 2247@@ -0,0 +1,22 @@
 2248+palette = 0=#000000
 2249+palette = 1=#ff0000
 2250+palette = 2=#38de21
 2251+palette = 3=#ffe50a
 2252+palette = 4=#1460d2
 2253+palette = 5=#ff005d
 2254+palette = 6=#00bbbb
 2255+palette = 7=#bbbbbb
 2256+palette = 8=#555555
 2257+palette = 9=#f40e17
 2258+palette = 10=#3bd01d
 2259+palette = 11=#edc809
 2260+palette = 12=#5555ff
 2261+palette = 13=#ff55ff
 2262+palette = 14=#6ae3fa
 2263+palette = 15=#ffffff
 2264+background = #132738
 2265+foreground = #ffffff
 2266+cursor-color = #f0cc09
 2267+cursor-text = #fefff2
 2268+selection-background = #18354f
 2269+selection-foreground = #b5b5b5
 2270diff --git a/ghostty-themes/CobaltNext b/ghostty-themes/CobaltNext
 2271new file mode 100644
 2272index 0000000000000000000000000000000000000000..3662f4cfe76b35397eda8e216c1f6b2532d3bdc3
 2273--- /dev/null
 2274+++ b/ghostty-themes/CobaltNext
 2275@@ -0,0 +1,22 @@
 2276+palette = 0=#000000
 2277+palette = 1=#ed5f7d
 2278+palette = 2=#99c794
 2279+palette = 3=#fac863
 2280+palette = 4=#5a9bcf
 2281+palette = 5=#c5a5c5
 2282+palette = 6=#5fb3b3
 2283+palette = 7=#d8dee9
 2284+palette = 8=#65737e
 2285+palette = 9=#d6838c
 2286+palette = 10=#c1dcbe
 2287+palette = 11=#ffde9b
 2288+palette = 12=#8abee7
 2289+palette = 13=#edcded
 2290+palette = 14=#9be2e2
 2291+palette = 15=#ffffff
 2292+background = #1b2b34
 2293+foreground = #d8dee9
 2294+cursor-color = #fac863
 2295+cursor-text = #d8dee9
 2296+selection-background = #4f5b66
 2297+selection-foreground = #ffffff
 2298diff --git a/ghostty-themes/CobaltNext-Dark b/ghostty-themes/CobaltNext-Dark
 2299new file mode 100644
 2300index 0000000000000000000000000000000000000000..ebd263ddfdd24aca28e14639309e3006acb36255
 2301--- /dev/null
 2302+++ b/ghostty-themes/CobaltNext-Dark
 2303@@ -0,0 +1,22 @@
 2304+palette = 0=#282f36
 2305+palette = 1=#e6576a
 2306+palette = 2=#99c794
 2307+palette = 3=#fac863
 2308+palette = 4=#5a9bcf
 2309+palette = 5=#c5a5c5
 2310+palette = 6=#5fb3b3
 2311+palette = 7=#d8dee9
 2312+palette = 8=#65737e
 2313+palette = 9=#d6838c
 2314+palette = 10=#c1dcbe
 2315+palette = 11=#ffde9b
 2316+palette = 12=#8abee7
 2317+palette = 13=#edcded
 2318+palette = 14=#9be2e2
 2319+palette = 15=#ffffff
 2320+background = #0f1c23
 2321+foreground = #d8dee9
 2322+cursor-color = #fac863
 2323+cursor-text = #ffffff
 2324+selection-background = #5fb3b3
 2325+selection-foreground = #ffffff
 2326diff --git a/ghostty-themes/CobaltNext-Minimal b/ghostty-themes/CobaltNext-Minimal
 2327new file mode 100644
 2328index 0000000000000000000000000000000000000000..f4281b9c7870f59a9c748bc1a7133f1a8afe77be
 2329--- /dev/null
 2330+++ b/ghostty-themes/CobaltNext-Minimal
 2331@@ -0,0 +1,22 @@
 2332+palette = 0=#343d46
 2333+palette = 1=#ed6f7d
 2334+palette = 2=#99c794
 2335+palette = 3=#fac863
 2336+palette = 4=#5a9bcf
 2337+palette = 5=#c5a5c5
 2338+palette = 6=#5fb3b3
 2339+palette = 7=#d8dee9
 2340+palette = 8=#65737e
 2341+palette = 9=#d6838c
 2342+palette = 10=#c1dcbe
 2343+palette = 11=#ffde9b
 2344+palette = 12=#8abee7
 2345+palette = 13=#edcded
 2346+palette = 14=#9be2e2
 2347+palette = 15=#ffffff
 2348+background = #0f1c23
 2349+foreground = #d8dee9
 2350+cursor-color = #5fb3b3
 2351+cursor-text = #ffffff
 2352+selection-background = #5fb3b3
 2353+selection-foreground = #ffffff
 2354diff --git a/ghostty-themes/CrayonPonyFish b/ghostty-themes/CrayonPonyFish
 2355new file mode 100644
 2356index 0000000000000000000000000000000000000000..cc5a766caeda50d0c0241893a273c18c006e1d2b
 2357--- /dev/null
 2358+++ b/ghostty-themes/CrayonPonyFish
 2359@@ -0,0 +1,22 @@
 2360+palette = 0=#2b1b1d
 2361+palette = 1=#91002b
 2362+palette = 2=#579524
 2363+palette = 3=#ab311b
 2364+palette = 4=#8c87b0
 2365+palette = 5=#692f50
 2366+palette = 6=#e8a866
 2367+palette = 7=#68525a
 2368+palette = 8=#3d2b2e
 2369+palette = 9=#c5255d
 2370+palette = 10=#8dff57
 2371+palette = 11=#c8381d
 2372+palette = 12=#cfc9ff
 2373+palette = 13=#fc6cba
 2374+palette = 14=#ffceaf
 2375+palette = 15=#b0949d
 2376+background = #150707
 2377+foreground = #68525a
 2378+cursor-color = #68525a
 2379+cursor-text = #140707
 2380+selection-background = #2b1b1d
 2381+selection-foreground = #69525a
 2382diff --git a/ghostty-themes/CutiePro b/ghostty-themes/CutiePro
 2383new file mode 100644
 2384index 0000000000000000000000000000000000000000..1642a6750029de0d9803d70287022263bd6e96bf
 2385--- /dev/null
 2386+++ b/ghostty-themes/CutiePro
 2387@@ -0,0 +1,22 @@
 2388+palette = 0=#000000
 2389+palette = 1=#f56e7f
 2390+palette = 2=#bec975
 2391+palette = 3=#f58669
 2392+palette = 4=#42d9c5
 2393+palette = 5=#d286b7
 2394+palette = 6=#37cb8a
 2395+palette = 7=#d5c3c3
 2396+palette = 8=#88847f
 2397+palette = 9=#e5a1a3
 2398+palette = 10=#e8d6a7
 2399+palette = 11=#f1bb79
 2400+palette = 12=#80c5de
 2401+palette = 13=#b294bb
 2402+palette = 14=#9dccbb
 2403+palette = 15=#ffffff
 2404+background = #181818
 2405+foreground = #d5d0c9
 2406+cursor-color = #efc4cd
 2407+cursor-text = #181818
 2408+selection-background = #363636
 2409+selection-foreground = #d5d0c9
 2410diff --git a/ghostty-themes/Cyberdyne b/ghostty-themes/Cyberdyne
 2411new file mode 100644
 2412index 0000000000000000000000000000000000000000..48b1c464f8e0cfe4c3a779f767219c1418b671bd
 2413--- /dev/null
 2414+++ b/ghostty-themes/Cyberdyne
 2415@@ -0,0 +1,22 @@
 2416+palette = 0=#080808
 2417+palette = 1=#ff8373
 2418+palette = 2=#00c172
 2419+palette = 3=#d2a700
 2420+palette = 4=#0071cf
 2421+palette = 5=#ff90fe
 2422+palette = 6=#6bffdd
 2423+palette = 7=#f1f1f1
 2424+palette = 8=#2e2e2e
 2425+palette = 9=#ffc4be
 2426+palette = 10=#d6fcba
 2427+palette = 11=#fffed5
 2428+palette = 12=#c2e3ff
 2429+palette = 13=#ffb2fe
 2430+palette = 14=#e6e7fe
 2431+palette = 15=#ffffff
 2432+background = #151144
 2433+foreground = #00ff92
 2434+cursor-color = #00ff9c
 2435+cursor-text = #ffffff
 2436+selection-background = #454d96
 2437+selection-foreground = #f4f4f4
 2438diff --git a/ghostty-themes/CyberpunkScarletProtocol b/ghostty-themes/CyberpunkScarletProtocol
 2439new file mode 100644
 2440index 0000000000000000000000000000000000000000..39e78d6d9e83a16f6299233144f42e1a8653a66d
 2441--- /dev/null
 2442+++ b/ghostty-themes/CyberpunkScarletProtocol
 2443@@ -0,0 +1,22 @@
 2444+palette = 0=#101116
 2445+palette = 1=#ea3356
 2446+palette = 2=#64d98c
 2447+palette = 3=#faf968
 2448+palette = 4=#306fb1
 2449+palette = 5=#ba3ec1
 2450+palette = 6=#59c2c6
 2451+palette = 7=#c7c7c7
 2452+palette = 8=#686868
 2453+palette = 9=#ed776d
 2454+palette = 10=#8df77a
 2455+palette = 11=#fefc7f
 2456+palette = 12=#6a71f6
 2457+palette = 13=#ae40e4
 2458+palette = 14=#8efafd
 2459+palette = 15=#ffffff
 2460+background = #101116
 2461+foreground = #d13554
 2462+cursor-color = #9bfca8
 2463+cursor-text = #ffffff
 2464+selection-background = #c7ddfc
 2465+selection-foreground = #000000
 2466diff --git a/ghostty-themes/Dark Modern b/ghostty-themes/Dark Modern
 2467new file mode 100644
 2468index 0000000000000000000000000000000000000000..784f22a6e371442b85f1237a34a1034086edfad7
 2469--- /dev/null
 2470+++ b/ghostty-themes/Dark Modern
 2471@@ -0,0 +1,22 @@
 2472+palette = 0=#272727
 2473+palette = 1=#f74949
 2474+palette = 2=#2ea043
 2475+palette = 3=#9e6a03
 2476+palette = 4=#0078d4
 2477+palette = 5=#d01273
 2478+palette = 6=#1db4d6
 2479+palette = 7=#cccccc
 2480+palette = 8=#5d5d5d
 2481+palette = 9=#dc5452
 2482+palette = 10=#23d18b
 2483+palette = 11=#f5f543
 2484+palette = 12=#3b8eea
 2485+palette = 13=#d670d6
 2486+palette = 14=#29b8db
 2487+palette = 15=#e5e5e5
 2488+background = #1f1f1f
 2489+foreground = #cccccc
 2490+cursor-color = #ffffff
 2491+cursor-text = #000000
 2492+selection-background = #3a3d41
 2493+selection-foreground = #e0e0e0
 2494diff --git a/ghostty-themes/Dark Pastel b/ghostty-themes/Dark Pastel
 2495new file mode 100644
 2496index 0000000000000000000000000000000000000000..6eb1dfd57b1d670f10d6c5f3dbabdfd6db99ef4d
 2497--- /dev/null
 2498+++ b/ghostty-themes/Dark Pastel
 2499@@ -0,0 +1,22 @@
 2500+palette = 0=#000000
 2501+palette = 1=#ff5555
 2502+palette = 2=#55ff55
 2503+palette = 3=#ffff55
 2504+palette = 4=#5555ff
 2505+palette = 5=#ff55ff
 2506+palette = 6=#55ffff
 2507+palette = 7=#bbbbbb
 2508+palette = 8=#555555
 2509+palette = 9=#ff5555
 2510+palette = 10=#55ff55
 2511+palette = 11=#ffff55
 2512+palette = 12=#5555ff
 2513+palette = 13=#ff55ff
 2514+palette = 14=#55ffff
 2515+palette = 15=#ffffff
 2516+background = #000000
 2517+foreground = #ffffff
 2518+cursor-color = #bbbbbb
 2519+cursor-text = #ffffff
 2520+selection-background = #b5d5ff
 2521+selection-foreground = #000000
 2522diff --git a/ghostty-themes/Dark+ b/ghostty-themes/Dark+
 2523new file mode 100644
 2524index 0000000000000000000000000000000000000000..bcc22ea193fb07ee91a2150af2ba520ecd12d104
 2525--- /dev/null
 2526+++ b/ghostty-themes/Dark+
 2527@@ -0,0 +1,22 @@
 2528+palette = 0=#000000
 2529+palette = 1=#cd3131
 2530+palette = 2=#0dbc79
 2531+palette = 3=#e5e510
 2532+palette = 4=#2472c8
 2533+palette = 5=#bc3fbc
 2534+palette = 6=#11a8cd
 2535+palette = 7=#e5e5e5
 2536+palette = 8=#666666
 2537+palette = 9=#f14c4c
 2538+palette = 10=#23d18b
 2539+palette = 11=#f5f543
 2540+palette = 12=#3b8eea
 2541+palette = 13=#d670d6
 2542+palette = 14=#29b8db
 2543+palette = 15=#e5e5e5
 2544+background = #1e1e1e
 2545+foreground = #cccccc
 2546+cursor-color = #ffffff
 2547+cursor-text = #000000
 2548+selection-background = #3a3d41
 2549+selection-foreground = #e0e0e0
 2550diff --git a/ghostty-themes/Darkside b/ghostty-themes/Darkside
 2551new file mode 100644
 2552index 0000000000000000000000000000000000000000..d27144227d44cd3c36136e57ff1f56b526bb9bbf
 2553--- /dev/null
 2554+++ b/ghostty-themes/Darkside
 2555@@ -0,0 +1,22 @@
 2556+palette = 0=#000000
 2557+palette = 1=#e8341c
 2558+palette = 2=#68c256
 2559+palette = 3=#f2d42c
 2560+palette = 4=#1c98e8
 2561+palette = 5=#8e69c9
 2562+palette = 6=#1c98e8
 2563+palette = 7=#bababa
 2564+palette = 8=#000000
 2565+palette = 9=#e05a4f
 2566+palette = 10=#77b869
 2567+palette = 11=#efd64b
 2568+palette = 12=#387cd3
 2569+palette = 13=#957bbe
 2570+palette = 14=#3d97e2
 2571+palette = 15=#bababa
 2572+background = #222324
 2573+foreground = #bababa
 2574+cursor-color = #bbbbbb
 2575+cursor-text = #ffffff
 2576+selection-background = #303333
 2577+selection-foreground = #bababa
 2578diff --git a/ghostty-themes/Desert b/ghostty-themes/Desert
 2579new file mode 100644
 2580index 0000000000000000000000000000000000000000..9dd0f0f16e45898afc9b48b8739cb2fee4fa4142
 2581--- /dev/null
 2582+++ b/ghostty-themes/Desert
 2583@@ -0,0 +1,22 @@
 2584+palette = 0=#4d4d4d
 2585+palette = 1=#ff2b2b
 2586+palette = 2=#98fb98
 2587+palette = 3=#f0e68c
 2588+palette = 4=#cd853f
 2589+palette = 5=#ffdead
 2590+palette = 6=#ffa0a0
 2591+palette = 7=#f5deb3
 2592+palette = 8=#555555
 2593+palette = 9=#ff5555
 2594+palette = 10=#55ff55
 2595+palette = 11=#ffff55
 2596+palette = 12=#87ceff
 2597+palette = 13=#ff55ff
 2598+palette = 14=#ffd700
 2599+palette = 15=#ffffff
 2600+background = #333333
 2601+foreground = #ffffff
 2602+cursor-color = #00ff00
 2603+cursor-text = #000000
 2604+selection-background = #b5d5ff
 2605+selection-foreground = #000000
 2606diff --git a/ghostty-themes/Dimidium b/ghostty-themes/Dimidium
 2607new file mode 100644
 2608index 0000000000000000000000000000000000000000..43780bf8f8638aa1bd9e1e166d20699a64fdd98d
 2609--- /dev/null
 2610+++ b/ghostty-themes/Dimidium
 2611@@ -0,0 +1,22 @@
 2612+palette = 0=#000000
 2613+palette = 1=#cf494c
 2614+palette = 2=#60b442
 2615+palette = 3=#db9c11
 2616+palette = 4=#0575d8
 2617+palette = 5=#af5ed2
 2618+palette = 6=#1db6bb
 2619+palette = 7=#bab7b6
 2620+palette = 8=#817e7e
 2621+palette = 9=#ff643b
 2622+palette = 10=#37e57b
 2623+palette = 11=#fccd1a
 2624+palette = 12=#688dfd
 2625+palette = 13=#ed6fe9
 2626+palette = 14=#32e0fb
 2627+palette = 15=#d3d8d9
 2628+background = #141414
 2629+foreground = #bab7b6
 2630+cursor-color = #37e57b
 2631+cursor-text = #141414
 2632+selection-background = #8db8e5
 2633+selection-foreground = #141414
 2634diff --git a/ghostty-themes/DimmedMonokai b/ghostty-themes/DimmedMonokai
 2635new file mode 100644
 2636index 0000000000000000000000000000000000000000..9de086162c25701a57b41525d7379268042a1934
 2637--- /dev/null
 2638+++ b/ghostty-themes/DimmedMonokai
 2639@@ -0,0 +1,22 @@
 2640+palette = 0=#3a3d43
 2641+palette = 1=#be3f48
 2642+palette = 2=#879a3b
 2643+palette = 3=#c5a635
 2644+palette = 4=#4f76a1
 2645+palette = 5=#855c8d
 2646+palette = 6=#578fa4
 2647+palette = 7=#b9bcba
 2648+palette = 8=#888987
 2649+palette = 9=#fb001f
 2650+palette = 10=#0f722f
 2651+palette = 11=#c47033
 2652+palette = 12=#186de3
 2653+palette = 13=#fb0067
 2654+palette = 14=#2e706d
 2655+palette = 15=#fdffb9
 2656+background = #1f1f1f
 2657+foreground = #b9bcba
 2658+cursor-color = #f83e19
 2659+cursor-text = #171717
 2660+selection-background = #2a2d32
 2661+selection-foreground = #b9bcba
 2662diff --git a/ghostty-themes/Django b/ghostty-themes/Django
 2663new file mode 100644
 2664index 0000000000000000000000000000000000000000..cb28197f38207822e7d0ffc7977e1e164c47c0a6
 2665--- /dev/null
 2666+++ b/ghostty-themes/Django
 2667@@ -0,0 +1,22 @@
 2668+palette = 0=#000000
 2669+palette = 1=#fd6209
 2670+palette = 2=#41a83e
 2671+palette = 3=#ffe862
 2672+palette = 4=#245032
 2673+palette = 5=#f8f8f8
 2674+palette = 6=#9df39f
 2675+palette = 7=#ffffff
 2676+palette = 8=#323232
 2677+palette = 9=#ff943b
 2678+palette = 10=#73da70
 2679+palette = 11=#ffff94
 2680+palette = 12=#568264
 2681+palette = 13=#ffffff
 2682+palette = 14=#cfffd1
 2683+palette = 15=#ffffff
 2684+background = #0b2f20
 2685+foreground = #f8f8f8
 2686+cursor-color = #336442
 2687+cursor-text = #f8f8f8
 2688+selection-background = #245032
 2689+selection-foreground = #f8f8f8
 2690diff --git a/ghostty-themes/DjangoRebornAgain b/ghostty-themes/DjangoRebornAgain
 2691new file mode 100644
 2692index 0000000000000000000000000000000000000000..61a89f69420a7f72cb8183d8e330bd19a40f3f6e
 2693--- /dev/null
 2694+++ b/ghostty-themes/DjangoRebornAgain
 2695@@ -0,0 +1,22 @@
 2696+palette = 0=#000000
 2697+palette = 1=#fd6209
 2698+palette = 2=#41a83e
 2699+palette = 3=#ffe862
 2700+palette = 4=#245032
 2701+palette = 5=#f8f8f8
 2702+palette = 6=#9df39f
 2703+palette = 7=#ffffff
 2704+palette = 8=#323232
 2705+palette = 9=#ff943b
 2706+palette = 10=#73da70
 2707+palette = 11=#ffff94
 2708+palette = 12=#568264
 2709+palette = 13=#ffffff
 2710+palette = 14=#cfffd1
 2711+palette = 15=#ffffff
 2712+background = #051f14
 2713+foreground = #dadedc
 2714+cursor-color = #ffcc00
 2715+cursor-text = #dadedc
 2716+selection-background = #203727
 2717+selection-foreground = #dadedc
 2718diff --git a/ghostty-themes/DjangoSmooth b/ghostty-themes/DjangoSmooth
 2719new file mode 100644
 2720index 0000000000000000000000000000000000000000..502811788f35b563af5f4ea1852a1b3db1a13179
 2721--- /dev/null
 2722+++ b/ghostty-themes/DjangoSmooth
 2723@@ -0,0 +1,22 @@
 2724+palette = 0=#000000
 2725+palette = 1=#fd6209
 2726+palette = 2=#41a83e
 2727+palette = 3=#ffe862
 2728+palette = 4=#989898
 2729+palette = 5=#f8f8f8
 2730+palette = 6=#9df39f
 2731+palette = 7=#e8e8e7
 2732+palette = 8=#323232
 2733+palette = 9=#ff943b
 2734+palette = 10=#73da70
 2735+palette = 11=#ffff94
 2736+palette = 12=#cacaca
 2737+palette = 13=#ffffff
 2738+palette = 14=#cfffd1
 2739+palette = 15=#ffffff
 2740+background = #245032
 2741+foreground = #f8f8f8
 2742+cursor-color = #336442
 2743+cursor-text = #f8f8f8
 2744+selection-background = #336442
 2745+selection-foreground = #f8f8f8
 2746diff --git a/ghostty-themes/Doom Peacock b/ghostty-themes/Doom Peacock
 2747new file mode 100644
 2748index 0000000000000000000000000000000000000000..c110b1f1267a1c0c8ee8358caf4db8c40ac35e93
 2749--- /dev/null
 2750+++ b/ghostty-themes/Doom Peacock
 2751@@ -0,0 +1,22 @@
 2752+palette = 0=#1c1f24
 2753+palette = 1=#cb4b16
 2754+palette = 2=#26a6a6
 2755+palette = 3=#bcd42a
 2756+palette = 4=#2a6cc6
 2757+palette = 5=#a9a1e1
 2758+palette = 6=#5699af
 2759+palette = 7=#ede0ce
 2760+palette = 8=#2b2a27
 2761+palette = 9=#ff5d38
 2762+palette = 10=#98be65
 2763+palette = 11=#e6f972
 2764+palette = 12=#51afef
 2765+palette = 13=#c678dd
 2766+palette = 14=#46d9ff
 2767+palette = 15=#dfdfdf
 2768+background = #2b2a27
 2769+foreground = #ede0ce
 2770+cursor-color = #9c9c9d
 2771+cursor-text = #36312b
 2772+selection-background = #a60033
 2773+selection-foreground = #ffffff
 2774diff --git a/ghostty-themes/DoomOne b/ghostty-themes/DoomOne
 2775new file mode 100644
 2776index 0000000000000000000000000000000000000000..bc18e4302d9b0f9c203600237436ad4ca13853c9
 2777--- /dev/null
 2778+++ b/ghostty-themes/DoomOne
 2779@@ -0,0 +1,22 @@
 2780+palette = 0=#000000
 2781+palette = 1=#ff6c6b
 2782+palette = 2=#98be65
 2783+palette = 3=#ecbe7b
 2784+palette = 4=#a9a1e1
 2785+palette = 5=#c678dd
 2786+palette = 6=#51afef
 2787+palette = 7=#bbc2cf
 2788+palette = 8=#000000
 2789+palette = 9=#ff6655
 2790+palette = 10=#99bb66
 2791+palette = 11=#ecbe7b
 2792+palette = 12=#a9a1e1
 2793+palette = 13=#c678dd
 2794+palette = 14=#51afef
 2795+palette = 15=#bfbfbf
 2796+background = #282c34
 2797+foreground = #bbc2cf
 2798+cursor-color = #51afef
 2799+cursor-text = #1b1b1b
 2800+selection-background = #42444b
 2801+selection-foreground = #bbc2cf
 2802diff --git a/ghostty-themes/DotGov b/ghostty-themes/DotGov
 2803new file mode 100644
 2804index 0000000000000000000000000000000000000000..a0931b627907000518c6e0b215c7c536175099a8
 2805--- /dev/null
 2806+++ b/ghostty-themes/DotGov
 2807@@ -0,0 +1,22 @@
 2808+palette = 0=#191919
 2809+palette = 1=#bf091d
 2810+palette = 2=#3d9751
 2811+palette = 3=#f6bb34
 2812+palette = 4=#17b2e0
 2813+palette = 5=#7830b0
 2814+palette = 6=#8bd2ed
 2815+palette = 7=#ffffff
 2816+palette = 8=#191919
 2817+palette = 9=#bf091d
 2818+palette = 10=#3d9751
 2819+palette = 11=#f6bb34
 2820+palette = 12=#17b2e0
 2821+palette = 13=#7830b0
 2822+palette = 14=#8bd2ed
 2823+palette = 15=#ffffff
 2824+background = #262c35
 2825+foreground = #ebebeb
 2826+cursor-color = #d9002f
 2827+cursor-text = #ffffff
 2828+selection-background = #1a4080
 2829+selection-foreground = #ffffff
 2830diff --git a/ghostty-themes/Dracula b/ghostty-themes/Dracula
 2831new file mode 100644
 2832index 0000000000000000000000000000000000000000..07c016ad2de91e56f39a1cd635f59aaedc3e188b
 2833--- /dev/null
 2834+++ b/ghostty-themes/Dracula
 2835@@ -0,0 +1,22 @@
 2836+palette = 0=#000000
 2837+palette = 1=#ff5555
 2838+palette = 2=#50fa7b
 2839+palette = 3=#f1fa8c
 2840+palette = 4=#bd93f9
 2841+palette = 5=#ff79c6
 2842+palette = 6=#8be9fd
 2843+palette = 7=#bbbbbb
 2844+palette = 8=#555555
 2845+palette = 9=#ff5555
 2846+palette = 10=#50fa7b
 2847+palette = 11=#f1fa8c
 2848+palette = 12=#bd93f9
 2849+palette = 13=#ff79c6
 2850+palette = 14=#8be9fd
 2851+palette = 15=#ffffff
 2852+background = #1e1f29
 2853+foreground = #e6e6e6
 2854+cursor-color = #bbbbbb
 2855+cursor-text = #ffffff
 2856+selection-background = #44475a
 2857+selection-foreground = #ffffff
 2858diff --git a/ghostty-themes/Dracula+ b/ghostty-themes/Dracula+
 2859new file mode 100644
 2860index 0000000000000000000000000000000000000000..e47b8827fa5718c9899d87129a1d50bf6c701db9
 2861--- /dev/null
 2862+++ b/ghostty-themes/Dracula+
 2863@@ -0,0 +1,22 @@
 2864+palette = 0=#21222c
 2865+palette = 1=#ff5555
 2866+palette = 2=#50fa7b
 2867+palette = 3=#ffcb6b
 2868+palette = 4=#82aaff
 2869+palette = 5=#c792ea
 2870+palette = 6=#8be9fd
 2871+palette = 7=#f8f8f2
 2872+palette = 8=#545454
 2873+palette = 9=#ff6e6e
 2874+palette = 10=#69ff94
 2875+palette = 11=#ffcb6b
 2876+palette = 12=#d6acff
 2877+palette = 13=#ff92df
 2878+palette = 14=#a4ffff
 2879+palette = 15=#f8f8f2
 2880+background = #212121
 2881+foreground = #f8f8f2
 2882+cursor-color = #eceff4
 2883+cursor-text = #282828
 2884+selection-background = #f8f8f2
 2885+selection-foreground = #545454
 2886diff --git a/ghostty-themes/Duotone Dark b/ghostty-themes/Duotone Dark
 2887new file mode 100644
 2888index 0000000000000000000000000000000000000000..daf8a9040f5aaf8f62a47f57ab2275575662e9ae
 2889--- /dev/null
 2890+++ b/ghostty-themes/Duotone Dark
 2891@@ -0,0 +1,22 @@
 2892+palette = 0=#1f1d27
 2893+palette = 1=#d9393e
 2894+palette = 2=#2dcd73
 2895+palette = 3=#d9b76e
 2896+palette = 4=#ffc284
 2897+palette = 5=#de8d40
 2898+palette = 6=#2488ff
 2899+palette = 7=#b7a1ff
 2900+palette = 8=#353147
 2901+palette = 9=#d9393e
 2902+palette = 10=#2dcd73
 2903+palette = 11=#d9b76e
 2904+palette = 12=#ffc284
 2905+palette = 13=#de8d40
 2906+palette = 14=#2488ff
 2907+palette = 15=#eae5ff
 2908+background = #1f1d27
 2909+foreground = #b7a1ff
 2910+cursor-color = #ff9839
 2911+cursor-text = #1f1d27
 2912+selection-background = #353147
 2913+selection-foreground = #b7a2ff
 2914diff --git a/ghostty-themes/ENCOM b/ghostty-themes/ENCOM
 2915new file mode 100644
 2916index 0000000000000000000000000000000000000000..fc59ee149f143962ad0b1dda17c5e9af0754f804
 2917--- /dev/null
 2918+++ b/ghostty-themes/ENCOM
 2919@@ -0,0 +1,22 @@
 2920+palette = 0=#000000
 2921+palette = 1=#9f0000
 2922+palette = 2=#008b00
 2923+palette = 3=#ffd000
 2924+palette = 4=#0081ff
 2925+palette = 5=#bc00ca
 2926+palette = 6=#008b8b
 2927+palette = 7=#bbbbbb
 2928+palette = 8=#555555
 2929+palette = 9=#ff0000
 2930+palette = 10=#00ee00
 2931+palette = 11=#ffff00
 2932+palette = 12=#0000ff
 2933+palette = 13=#ff00ff
 2934+palette = 14=#00cdcd
 2935+palette = 15=#ffffff
 2936+background = #000000
 2937+foreground = #00a595
 2938+cursor-color = #bbbbbb
 2939+cursor-text = #ffffff
 2940+selection-background = #00a48c
 2941+selection-foreground = #3de1c9
 2942diff --git a/ghostty-themes/Earthsong b/ghostty-themes/Earthsong
 2943new file mode 100644
 2944index 0000000000000000000000000000000000000000..e9a36e3df002046f88f5b66b6c1348364a62588d
 2945--- /dev/null
 2946+++ b/ghostty-themes/Earthsong
 2947@@ -0,0 +1,22 @@
 2948+palette = 0=#121418
 2949+palette = 1=#c94234
 2950+palette = 2=#85c54c
 2951+palette = 3=#f5ae2e
 2952+palette = 4=#1398b9
 2953+palette = 5=#d0633d
 2954+palette = 6=#509552
 2955+palette = 7=#e5c6aa
 2956+palette = 8=#675f54
 2957+palette = 9=#ff645a
 2958+palette = 10=#98e036
 2959+palette = 11=#e0d561
 2960+palette = 12=#5fdaff
 2961+palette = 13=#ff9269
 2962+palette = 14=#84f088
 2963+palette = 15=#f6f7ec
 2964+background = #292520
 2965+foreground = #e5c7a9
 2966+cursor-color = #f6f7ec
 2967+cursor-text = #292520
 2968+selection-background = #121418
 2969+selection-foreground = #e5c7a9
 2970diff --git a/ghostty-themes/Elemental b/ghostty-themes/Elemental
 2971new file mode 100644
 2972index 0000000000000000000000000000000000000000..c3c529f7da0123791f5affb46fdd7b2b07a3fba6
 2973--- /dev/null
 2974+++ b/ghostty-themes/Elemental
 2975@@ -0,0 +1,22 @@
 2976+palette = 0=#3c3c30
 2977+palette = 1=#98290f
 2978+palette = 2=#479a43
 2979+palette = 3=#7f7111
 2980+palette = 4=#497f7d
 2981+palette = 5=#7f4e2f
 2982+palette = 6=#387f58
 2983+palette = 7=#807974
 2984+palette = 8=#555445
 2985+palette = 9=#e0502a
 2986+palette = 10=#61e070
 2987+palette = 11=#d69927
 2988+palette = 12=#79d9d9
 2989+palette = 13=#cd7c54
 2990+palette = 14=#59d599
 2991+palette = 15=#fff1e9
 2992+background = #22211d
 2993+foreground = #807a74
 2994+cursor-color = #facb80
 2995+cursor-text = #161611
 2996+selection-background = #413829
 2997+selection-foreground = #facd77
 2998diff --git a/ghostty-themes/Elementary b/ghostty-themes/Elementary
 2999new file mode 100644
 3000index 0000000000000000000000000000000000000000..0ebe685d010fc9b76fb4517ca2561164e31e119c
 3001--- /dev/null
 3002+++ b/ghostty-themes/Elementary
 3003@@ -0,0 +1,22 @@
 3004+palette = 0=#242424
 3005+palette = 1=#d71c15
 3006+palette = 2=#5aa513
 3007+palette = 3=#fdb40c
 3008+palette = 4=#063b8c
 3009+palette = 5=#e40038
 3010+palette = 6=#2595e1
 3011+palette = 7=#efefef
 3012+palette = 8=#4b4b4b
 3013+palette = 9=#fc1c18
 3014+palette = 10=#6bc219
 3015+palette = 11=#fec80e
 3016+palette = 12=#0955ff
 3017+palette = 13=#fb0050
 3018+palette = 14=#3ea8fc
 3019+palette = 15=#8c00ec
 3020+background = #181818
 3021+foreground = #efefef
 3022+cursor-color = #bbbbbb
 3023+cursor-text = #ffffff
 3024+selection-background = #b5d5ff
 3025+selection-foreground = #000000
 3026diff --git a/ghostty-themes/Espresso b/ghostty-themes/Espresso
 3027new file mode 100644
 3028index 0000000000000000000000000000000000000000..4137948c912c8ea69ba9315f42ab6b94e528f23a
 3029--- /dev/null
 3030+++ b/ghostty-themes/Espresso
 3031@@ -0,0 +1,22 @@
 3032+palette = 0=#353535
 3033+palette = 1=#d25252
 3034+palette = 2=#a5c261
 3035+palette = 3=#ffc66d
 3036+palette = 4=#6c99bb
 3037+palette = 5=#d197d9
 3038+palette = 6=#bed6ff
 3039+palette = 7=#eeeeec
 3040+palette = 8=#535353
 3041+palette = 9=#f00c0c
 3042+palette = 10=#c2e075
 3043+palette = 11=#e1e48b
 3044+palette = 12=#8ab7d9
 3045+palette = 13=#efb5f7
 3046+palette = 14=#dcf4ff
 3047+palette = 15=#ffffff
 3048+background = #323232
 3049+foreground = #ffffff
 3050+cursor-color = #d6d6d6
 3051+cursor-text = #ffffff
 3052+selection-background = #5b5b5b
 3053+selection-foreground = #ffffff
 3054diff --git a/ghostty-themes/Espresso Libre b/ghostty-themes/Espresso Libre
 3055new file mode 100644
 3056index 0000000000000000000000000000000000000000..f866a6fda7ce444fa9f00d9215364d59c9eec524
 3057--- /dev/null
 3058+++ b/ghostty-themes/Espresso Libre
 3059@@ -0,0 +1,22 @@
 3060+palette = 0=#000000
 3061+palette = 1=#cc0000
 3062+palette = 2=#1a921c
 3063+palette = 3=#f0e53a
 3064+palette = 4=#0066ff
 3065+palette = 5=#c5656b
 3066+palette = 6=#06989a
 3067+palette = 7=#d3d7cf
 3068+palette = 8=#555753
 3069+palette = 9=#ef2929
 3070+palette = 10=#9aff87
 3071+palette = 11=#fffb5c
 3072+palette = 12=#43a8ed
 3073+palette = 13=#ff818a
 3074+palette = 14=#34e2e2
 3075+palette = 15=#eeeeec
 3076+background = #2a211c
 3077+foreground = #b8a898
 3078+cursor-color = #ffffff
 3079+cursor-text = #000000
 3080+selection-background = #c3dcff
 3081+selection-foreground = #b8a898
 3082diff --git a/ghostty-themes/Everblush b/ghostty-themes/Everblush
 3083new file mode 100644
 3084index 0000000000000000000000000000000000000000..2cdb8a51e78ee203e84a9b24fdca4a12222cf632
 3085--- /dev/null
 3086+++ b/ghostty-themes/Everblush
 3087@@ -0,0 +1,22 @@
 3088+palette = 0=#232a2d
 3089+palette = 1=#e57474
 3090+palette = 2=#8ccf7e
 3091+palette = 3=#e5c76b
 3092+palette = 4=#67b0e8
 3093+palette = 5=#c47fd5
 3094+palette = 6=#6cbfbf
 3095+palette = 7=#b3b9b8
 3096+palette = 8=#2d3437
 3097+palette = 9=#ef7e7e
 3098+palette = 10=#96d988
 3099+palette = 11=#f4d67a
 3100+palette = 12=#71baf2
 3101+palette = 13=#ce89df
 3102+palette = 14=#67cbe7
 3103+palette = 15=#bdc3c2
 3104+background = #141b1e
 3105+foreground = #dadada
 3106+cursor-color = #dadada
 3107+cursor-text = #141b1e
 3108+selection-background = #141b1e
 3109+selection-foreground = #dadada
 3110diff --git a/ghostty-themes/Everforest Dark - Hard b/ghostty-themes/Everforest Dark - Hard
 3111new file mode 100644
 3112index 0000000000000000000000000000000000000000..92a92e9f8209ba633ea0e8f06aa01811a0bec872
 3113--- /dev/null
 3114+++ b/ghostty-themes/Everforest Dark - Hard
 3115@@ -0,0 +1,22 @@
 3116+palette = 0=#7a8478
 3117+palette = 1=#e67e80
 3118+palette = 2=#a7c080
 3119+palette = 3=#dbbc7f
 3120+palette = 4=#7fbbb3
 3121+palette = 5=#d699b6
 3122+palette = 6=#83c092
 3123+palette = 7=#f2efdf
 3124+palette = 8=#a6b0a0
 3125+palette = 9=#f85552
 3126+palette = 10=#8da101
 3127+palette = 11=#dfa000
 3128+palette = 12=#3a94c5
 3129+palette = 13=#df69ba
 3130+palette = 14=#35a77c
 3131+palette = 15=#fffbef
 3132+background = #1e2326
 3133+foreground = #d3c6aa
 3134+cursor-color = #e69875
 3135+cursor-text = #4c3743
 3136+selection-background = #4c3743
 3137+selection-foreground = #d3c6aa
 3138diff --git a/ghostty-themes/Fahrenheit b/ghostty-themes/Fahrenheit
 3139new file mode 100644
 3140index 0000000000000000000000000000000000000000..de0ba7f71ae1a71fc2f783ffbc18b81a76669344
 3141--- /dev/null
 3142+++ b/ghostty-themes/Fahrenheit
 3143@@ -0,0 +1,22 @@
 3144+palette = 0=#1d1d1d
 3145+palette = 1=#cda074
 3146+palette = 2=#9e744d
 3147+palette = 3=#fecf75
 3148+palette = 4=#720102
 3149+palette = 5=#734c4d
 3150+palette = 6=#979797
 3151+palette = 7=#ffffce
 3152+palette = 8=#000000
 3153+palette = 9=#fecea0
 3154+palette = 10=#cc734d
 3155+palette = 11=#fd9f4d
 3156+palette = 12=#cb4a05
 3157+palette = 13=#4e739f
 3158+palette = 14=#fed04d
 3159+palette = 15=#ffffff
 3160+background = #000000
 3161+foreground = #ffffce
 3162+cursor-color = #bbbbbb
 3163+cursor-text = #ffffff
 3164+selection-background = #4e739f
 3165+selection-foreground = #ffffce
 3166diff --git a/ghostty-themes/Fairyfloss b/ghostty-themes/Fairyfloss
 3167new file mode 100644
 3168index 0000000000000000000000000000000000000000..62879b04a2d73e61bab7bdbc8ca9918b9647e558
 3169--- /dev/null
 3170+++ b/ghostty-themes/Fairyfloss
 3171@@ -0,0 +1,22 @@
 3172+palette = 0=#040303
 3173+palette = 1=#f92672
 3174+palette = 2=#c2ffdf
 3175+palette = 3=#e6c000
 3176+palette = 4=#c2ffdf
 3177+palette = 5=#ffb8d1
 3178+palette = 6=#c5a3ff
 3179+palette = 7=#f8f8f0
 3180+palette = 8=#6090cb
 3181+palette = 9=#ff857f
 3182+palette = 10=#c2ffdf
 3183+palette = 11=#ffea00
 3184+palette = 12=#c2ffdf
 3185+palette = 13=#ffb8d1
 3186+palette = 14=#c5a3ff
 3187+palette = 15=#f8f8f0
 3188+background = #5a5475
 3189+foreground = #f8f8f2
 3190+cursor-color = #f8f8f0
 3191+cursor-text = #060709
 3192+selection-background = #8077a8
 3193+selection-foreground = #f6e1ce
 3194diff --git a/ghostty-themes/Fideloper b/ghostty-themes/Fideloper
 3195new file mode 100644
 3196index 0000000000000000000000000000000000000000..8d3155a0fe33f6ce98c115262e6e5cfaeb74d082
 3197--- /dev/null
 3198+++ b/ghostty-themes/Fideloper
 3199@@ -0,0 +1,22 @@
 3200+palette = 0=#292f33
 3201+palette = 1=#cb1e2d
 3202+palette = 2=#edb8ac
 3203+palette = 3=#b7ab9b
 3204+palette = 4=#2e78c2
 3205+palette = 5=#c0236f
 3206+palette = 6=#309186
 3207+palette = 7=#eae3ce
 3208+palette = 8=#092028
 3209+palette = 9=#d4605a
 3210+palette = 10=#d4605a
 3211+palette = 11=#a86671
 3212+palette = 12=#7c85c4
 3213+palette = 13=#5c5db2
 3214+palette = 14=#819090
 3215+palette = 15=#fcf4df
 3216+background = #292f33
 3217+foreground = #dbdae0
 3218+cursor-color = #d4605a
 3219+cursor-text = #fefff2
 3220+selection-background = #efb8ac
 3221+selection-foreground = #ffffff
 3222diff --git a/ghostty-themes/Firefly Traditional b/ghostty-themes/Firefly Traditional
 3223new file mode 100644
 3224index 0000000000000000000000000000000000000000..c796f23c11ea27e56593d0b4f53ccca48e1fdfb5
 3225--- /dev/null
 3226+++ b/ghostty-themes/Firefly Traditional
 3227@@ -0,0 +1,22 @@
 3228+palette = 0=#000000
 3229+palette = 1=#c23720
 3230+palette = 2=#33bc26
 3231+palette = 3=#afad24
 3232+palette = 4=#5a63ff
 3233+palette = 5=#d53ad2
 3234+palette = 6=#33bbc7
 3235+palette = 7=#cccccc
 3236+palette = 8=#828282
 3237+palette = 9=#ff3b1e
 3238+palette = 10=#2ee720
 3239+palette = 11=#ecec16
 3240+palette = 12=#838dff
 3241+palette = 13=#ff5cfe
 3242+palette = 14=#29f0f0
 3243+palette = 15=#ebebeb
 3244+background = #000000
 3245+foreground = #f5f5f5
 3246+cursor-color = #00f900
 3247+cursor-text = #ffffff
 3248+selection-background = #cfeac6
 3249+selection-foreground = #000000
 3250diff --git a/ghostty-themes/FirefoxDev b/ghostty-themes/FirefoxDev
 3251new file mode 100644
 3252index 0000000000000000000000000000000000000000..c2d14f8f346fc23cfd006515913bc65c5d4f727e
 3253--- /dev/null
 3254+++ b/ghostty-themes/FirefoxDev
 3255@@ -0,0 +1,22 @@
 3256+palette = 0=#002831
 3257+palette = 1=#e63853
 3258+palette = 2=#5eb83c
 3259+palette = 3=#a57706
 3260+palette = 4=#359ddf
 3261+palette = 5=#d75cff
 3262+palette = 6=#4b73a2
 3263+palette = 7=#dcdcdc
 3264+palette = 8=#001e27
 3265+palette = 9=#e1003f
 3266+palette = 10=#1d9000
 3267+palette = 11=#cd9409
 3268+palette = 12=#006fc0
 3269+palette = 13=#a200da
 3270+palette = 14=#005794
 3271+palette = 15=#e2e2e2
 3272+background = #0e1011
 3273+foreground = #7c8fa4
 3274+cursor-color = #708284
 3275+cursor-text = #002831
 3276+selection-background = #163c61
 3277+selection-foreground = #f2f5f9
 3278diff --git a/ghostty-themes/Firewatch b/ghostty-themes/Firewatch
 3279new file mode 100644
 3280index 0000000000000000000000000000000000000000..a0aecd82da7165fe4ef94b5d87fea82d4a8a9189
 3281--- /dev/null
 3282+++ b/ghostty-themes/Firewatch
 3283@@ -0,0 +1,22 @@
 3284+palette = 0=#585f6d
 3285+palette = 1=#d95360
 3286+palette = 2=#5ab977
 3287+palette = 3=#dfb563
 3288+palette = 4=#4d89c4
 3289+palette = 5=#d55119
 3290+palette = 6=#44a8b6
 3291+palette = 7=#e6e5ff
 3292+palette = 8=#585f6d
 3293+palette = 9=#d95360
 3294+palette = 10=#5ab977
 3295+palette = 11=#dfb563
 3296+palette = 12=#4c89c5
 3297+palette = 13=#d55119
 3298+palette = 14=#44a8b6
 3299+palette = 15=#e6e5ff
 3300+background = #1e2027
 3301+foreground = #9ba2b2
 3302+cursor-color = #f6f7ec
 3303+cursor-text = #c4c5b5
 3304+selection-background = #2f363e
 3305+selection-foreground = #7d8fa4
 3306diff --git a/ghostty-themes/FishTank b/ghostty-themes/FishTank
 3307new file mode 100644
 3308index 0000000000000000000000000000000000000000..e44641b9a4205590ad778babed32095324451f22
 3309--- /dev/null
 3310+++ b/ghostty-themes/FishTank
 3311@@ -0,0 +1,22 @@
 3312+palette = 0=#03073c
 3313+palette = 1=#c6004a
 3314+palette = 2=#acf157
 3315+palette = 3=#fecd5e
 3316+palette = 4=#525fb8
 3317+palette = 5=#986f82
 3318+palette = 6=#968763
 3319+palette = 7=#ecf0fc
 3320+palette = 8=#6c5b30
 3321+palette = 9=#da4b8a
 3322+palette = 10=#dbffa9
 3323+palette = 11=#fee6a9
 3324+palette = 12=#b2befa
 3325+palette = 13=#fda5cd
 3326+palette = 14=#a5bd86
 3327+palette = 15=#f6ffec
 3328+background = #232537
 3329+foreground = #ecf0fe
 3330+cursor-color = #fecd5e
 3331+cursor-text = #232537
 3332+selection-background = #fcf7e9
 3333+selection-foreground = #232537
 3334diff --git a/ghostty-themes/Flat b/ghostty-themes/Flat
 3335new file mode 100644
 3336index 0000000000000000000000000000000000000000..2f208d91269d5c4e3a0570e0b30b60045caf04f3
 3337--- /dev/null
 3338+++ b/ghostty-themes/Flat
 3339@@ -0,0 +1,22 @@
 3340+palette = 0=#222d3f
 3341+palette = 1=#a82320
 3342+palette = 2=#32a548
 3343+palette = 3=#e58d11
 3344+palette = 4=#3167ac
 3345+palette = 5=#781aa0
 3346+palette = 6=#2c9370
 3347+palette = 7=#b0b6ba
 3348+palette = 8=#212c3c
 3349+palette = 9=#d4312e
 3350+palette = 10=#2d9440
 3351+palette = 11=#e5be0c
 3352+palette = 12=#3c7dd2
 3353+palette = 13=#8230a7
 3354+palette = 14=#35b387
 3355+palette = 15=#e7eced
 3356+background = #002240
 3357+foreground = #2cc55d
 3358+cursor-color = #e5be0c
 3359+cursor-text = #ffffff
 3360+selection-background = #792b9c
 3361+selection-foreground = #ffffff
 3362diff --git a/ghostty-themes/Flatland b/ghostty-themes/Flatland
 3363new file mode 100644
 3364index 0000000000000000000000000000000000000000..ba9ee7cf576cd639ead59a113430b720f6ca2827
 3365--- /dev/null
 3366+++ b/ghostty-themes/Flatland
 3367@@ -0,0 +1,22 @@
 3368+palette = 0=#1d1d19
 3369+palette = 1=#f18339
 3370+palette = 2=#9fd364
 3371+palette = 3=#f4ef6d
 3372+palette = 4=#5096be
 3373+palette = 5=#695abc
 3374+palette = 6=#d63865
 3375+palette = 7=#ffffff
 3376+palette = 8=#1d1d19
 3377+palette = 9=#d22a24
 3378+palette = 10=#a7d42c
 3379+palette = 11=#ff8949
 3380+palette = 12=#61b9d0
 3381+palette = 13=#695abc
 3382+palette = 14=#d63865
 3383+palette = 15=#ffffff
 3384+background = #1d1f21
 3385+foreground = #b8dbef
 3386+cursor-color = #708284
 3387+cursor-text = #002831
 3388+selection-background = #2b2a24
 3389+selection-foreground = #ffffff
 3390diff --git a/ghostty-themes/Floraverse b/ghostty-themes/Floraverse
 3391new file mode 100644
 3392index 0000000000000000000000000000000000000000..4d119f9b43f750e9c01d422a5f27f4d627dec198
 3393--- /dev/null
 3394+++ b/ghostty-themes/Floraverse
 3395@@ -0,0 +1,22 @@
 3396+palette = 0=#08002e
 3397+palette = 1=#64002c
 3398+palette = 2=#5d731a
 3399+palette = 3=#cd751c
 3400+palette = 4=#1d6da1
 3401+palette = 5=#b7077e
 3402+palette = 6=#42a38c
 3403+palette = 7=#f3e0b8
 3404+palette = 8=#331e4d
 3405+palette = 9=#d02063
 3406+palette = 10=#b4ce59
 3407+palette = 11=#fac357
 3408+palette = 12=#40a4cf
 3409+palette = 13=#f12aae
 3410+palette = 14=#62caa8
 3411+palette = 15=#fff5db
 3412+background = #0e0d15
 3413+foreground = #dbd1b9
 3414+cursor-color = #bbbbbb
 3415+cursor-text = #ffffff
 3416+selection-background = #f3e0b8
 3417+selection-foreground = #08002e
 3418diff --git a/ghostty-themes/ForestBlue b/ghostty-themes/ForestBlue
 3419new file mode 100644
 3420index 0000000000000000000000000000000000000000..1b5a51208d3e82a2bd2c1d0244d448ce07613ef8
 3421--- /dev/null
 3422+++ b/ghostty-themes/ForestBlue
 3423@@ -0,0 +1,22 @@
 3424+palette = 0=#333333
 3425+palette = 1=#f8818e
 3426+palette = 2=#92d3a2
 3427+palette = 3=#1a8e63
 3428+palette = 4=#8ed0ce
 3429+palette = 5=#5e468c
 3430+palette = 6=#31658c
 3431+palette = 7=#e2d8cd
 3432+palette = 8=#3d3d3d
 3433+palette = 9=#fb3d66
 3434+palette = 10=#6bb48d
 3435+palette = 11=#30c85a
 3436+palette = 12=#39a7a2
 3437+palette = 13=#7e62b3
 3438+palette = 14=#6096bf
 3439+palette = 15=#e2d8cd
 3440+background = #051519
 3441+foreground = #e2d8cd
 3442+cursor-color = #9e9ecb
 3443+cursor-text = #000000
 3444+selection-background = #4d4d4d
 3445+selection-foreground = #ffffff
 3446diff --git a/ghostty-themes/Framer b/ghostty-themes/Framer
 3447new file mode 100644
 3448index 0000000000000000000000000000000000000000..c41e4d59cdea51bf70174e870e986bf338be86df
 3449--- /dev/null
 3450+++ b/ghostty-themes/Framer
 3451@@ -0,0 +1,22 @@
 3452+palette = 0=#141414
 3453+palette = 1=#ff5555
 3454+palette = 2=#98ec65
 3455+palette = 3=#ffcc33
 3456+palette = 4=#00aaff
 3457+palette = 5=#aa88ff
 3458+palette = 6=#88ddff
 3459+palette = 7=#cccccc
 3460+palette = 8=#414141
 3461+palette = 9=#ff8888
 3462+palette = 10=#b6f292
 3463+palette = 11=#ffd966
 3464+palette = 12=#33bbff
 3465+palette = 13=#cebbff
 3466+palette = 14=#bbecff
 3467+palette = 15=#ffffff
 3468+background = #111111
 3469+foreground = #777777
 3470+cursor-color = #fcdc08
 3471+cursor-text = #161616
 3472+selection-background = #666666
 3473+selection-foreground = #ffffff
 3474diff --git a/ghostty-themes/FrontEndDelight b/ghostty-themes/FrontEndDelight
 3475new file mode 100644
 3476index 0000000000000000000000000000000000000000..45b99ba3ad7b7e53f7141e87965b19861bf2d361
 3477--- /dev/null
 3478+++ b/ghostty-themes/FrontEndDelight
 3479@@ -0,0 +1,22 @@
 3480+palette = 0=#242526
 3481+palette = 1=#f8511b
 3482+palette = 2=#565747
 3483+palette = 3=#fa771d
 3484+palette = 4=#2c70b7
 3485+palette = 5=#f02e4f
 3486+palette = 6=#3ca1a6
 3487+palette = 7=#adadad
 3488+palette = 8=#5fac6d
 3489+palette = 9=#f74319
 3490+palette = 10=#74ec4c
 3491+palette = 11=#fdc325
 3492+palette = 12=#3393ca
 3493+palette = 13=#e75e4f
 3494+palette = 14=#4fbce6
 3495+palette = 15=#8c735b
 3496+background = #1b1c1d
 3497+foreground = #adadad
 3498+cursor-color = #cdcdcd
 3499+cursor-text = #1b1c1d
 3500+selection-background = #ea6154
 3501+selection-foreground = #1b1c1d
 3502diff --git a/ghostty-themes/FunForrest b/ghostty-themes/FunForrest
 3503new file mode 100644
 3504index 0000000000000000000000000000000000000000..f14ab7ad2b71e2ba862ac09e31d5f72ed37e4912
 3505--- /dev/null
 3506+++ b/ghostty-themes/FunForrest
 3507@@ -0,0 +1,22 @@
 3508+palette = 0=#000000
 3509+palette = 1=#d6262b
 3510+palette = 2=#919c00
 3511+palette = 3=#be8a13
 3512+palette = 4=#4699a3
 3513+palette = 5=#8d4331
 3514+palette = 6=#da8213
 3515+palette = 7=#ddc265
 3516+palette = 8=#7f6a55
 3517+palette = 9=#e55a1c
 3518+palette = 10=#bfc65a
 3519+palette = 11=#ffcb1b
 3520+palette = 12=#7cc9cf
 3521+palette = 13=#d26349
 3522+palette = 14=#e6a96b
 3523+palette = 15=#ffeaa3
 3524+background = #251200
 3525+foreground = #dec165
 3526+cursor-color = #e5591c
 3527+cursor-text = #000000
 3528+selection-background = #e5591c
 3529+selection-foreground = #000000
 3530diff --git a/ghostty-themes/Galaxy b/ghostty-themes/Galaxy
 3531new file mode 100644
 3532index 0000000000000000000000000000000000000000..fd650f37736e965c2ed683b3280d2631dfce0ab6
 3533--- /dev/null
 3534+++ b/ghostty-themes/Galaxy
 3535@@ -0,0 +1,22 @@
 3536+palette = 0=#000000
 3537+palette = 1=#f9555f
 3538+palette = 2=#21b089
 3539+palette = 3=#fef02a
 3540+palette = 4=#589df6
 3541+palette = 5=#944d95
 3542+palette = 6=#1f9ee7
 3543+palette = 7=#bbbbbb
 3544+palette = 8=#555555
 3545+palette = 9=#fa8c8f
 3546+palette = 10=#35bb9a
 3547+palette = 11=#ffff55
 3548+palette = 12=#589df6
 3549+palette = 13=#e75699
 3550+palette = 14=#3979bc
 3551+palette = 15=#ffffff
 3552+background = #1d2837
 3553+foreground = #ffffff
 3554+cursor-color = #bbbbbb
 3555+cursor-text = #ffffff
 3556+selection-background = #b5d5ff
 3557+selection-foreground = #000000
 3558diff --git a/ghostty-themes/Galizur b/ghostty-themes/Galizur
 3559new file mode 100644
 3560index 0000000000000000000000000000000000000000..a3693757fc48f2acc5b38cb52bfeef1b2332faad
 3561--- /dev/null
 3562+++ b/ghostty-themes/Galizur
 3563@@ -0,0 +1,22 @@
 3564+palette = 0=#223344
 3565+palette = 1=#aa1122
 3566+palette = 2=#33aa11
 3567+palette = 3=#ccaa22
 3568+palette = 4=#2255cc
 3569+palette = 5=#7755aa
 3570+palette = 6=#22bbdd
 3571+palette = 7=#8899aa
 3572+palette = 8=#556677
 3573+palette = 9=#ff1133
 3574+palette = 10=#33ff11
 3575+palette = 11=#ffdd33
 3576+palette = 12=#3377ff
 3577+palette = 13=#aa77ff
 3578+palette = 14=#33ddff
 3579+palette = 15=#bbccdd
 3580+background = #071317
 3581+foreground = #ddeeff
 3582+cursor-color = #ddeeff
 3583+cursor-text = #071317
 3584+selection-background = #071317
 3585+selection-foreground = #ddeeff
 3586diff --git a/ghostty-themes/GitHub Dark b/ghostty-themes/GitHub Dark
 3587new file mode 100644
 3588index 0000000000000000000000000000000000000000..7f9cf85b5e154631708f1c15648d1d79cb2cd6af
 3589--- /dev/null
 3590+++ b/ghostty-themes/GitHub Dark
 3591@@ -0,0 +1,22 @@
 3592+palette = 0=#000000
 3593+palette = 1=#f78166
 3594+palette = 2=#56d364
 3595+palette = 3=#e3b341
 3596+palette = 4=#6ca4f8
 3597+palette = 5=#db61a2
 3598+palette = 6=#2b7489
 3599+palette = 7=#ffffff
 3600+palette = 8=#4d4d4d
 3601+palette = 9=#f78166
 3602+palette = 10=#56d364
 3603+palette = 11=#e3b341
 3604+palette = 12=#6ca4f8
 3605+palette = 13=#db61a2
 3606+palette = 14=#2b7489
 3607+palette = 15=#ffffff
 3608+background = #101216
 3609+foreground = #8b949e
 3610+cursor-color = #c9d1d9
 3611+cursor-text = #101216
 3612+selection-background = #3b5070
 3613+selection-foreground = #ffffff
 3614diff --git a/ghostty-themes/GitHub-Dark-Colorblind b/ghostty-themes/GitHub-Dark-Colorblind
 3615new file mode 100644
 3616index 0000000000000000000000000000000000000000..35db0ea0f0a7f11776fbc6d7b8fc46d894ec438a
 3617--- /dev/null
 3618+++ b/ghostty-themes/GitHub-Dark-Colorblind
 3619@@ -0,0 +1,22 @@
 3620+palette = 0=#484f58
 3621+palette = 1=#ec8e2c
 3622+palette = 2=#58a6ff
 3623+palette = 3=#d29922
 3624+palette = 4=#58a6ff
 3625+palette = 5=#bc8cff
 3626+palette = 6=#39c5cf
 3627+palette = 7=#b1bac4
 3628+palette = 8=#6e7681
 3629+palette = 9=#fdac54
 3630+palette = 10=#79c0ff
 3631+palette = 11=#e3b341
 3632+palette = 12=#79c0ff
 3633+palette = 13=#d2a8ff
 3634+palette = 14=#56d4dd
 3635+palette = 15=#ffffff
 3636+background = #0d1117
 3637+foreground = #c9d1d9
 3638+cursor-color = #58a6ff
 3639+cursor-text = #58a6ff
 3640+selection-background = #c9d1d9
 3641+selection-foreground = #0d1117
 3642diff --git a/ghostty-themes/GitHub-Dark-Default b/ghostty-themes/GitHub-Dark-Default
 3643new file mode 100644
 3644index 0000000000000000000000000000000000000000..4b63630c7143bca5e42ce0d0fb8e35bb42899624
 3645--- /dev/null
 3646+++ b/ghostty-themes/GitHub-Dark-Default
 3647@@ -0,0 +1,22 @@
 3648+palette = 0=#484f58
 3649+palette = 1=#ff7b72
 3650+palette = 2=#3fb950
 3651+palette = 3=#d29922
 3652+palette = 4=#58a6ff
 3653+palette = 5=#bc8cff
 3654+palette = 6=#39c5cf
 3655+palette = 7=#b1bac4
 3656+palette = 8=#6e7681
 3657+palette = 9=#ffa198
 3658+palette = 10=#56d364
 3659+palette = 11=#e3b341
 3660+palette = 12=#79c0ff
 3661+palette = 13=#d2a8ff
 3662+palette = 14=#56d4dd
 3663+palette = 15=#ffffff
 3664+background = #0d1117
 3665+foreground = #e6edf3
 3666+cursor-color = #2f81f7
 3667+cursor-text = #2f81f7
 3668+selection-background = #e6edf3
 3669+selection-foreground = #0d1117
 3670diff --git a/ghostty-themes/GitHub-Dark-Dimmed b/ghostty-themes/GitHub-Dark-Dimmed
 3671new file mode 100644
 3672index 0000000000000000000000000000000000000000..fff7b061c1f1457d4b504c6d4ac0094d1a5c0576
 3673--- /dev/null
 3674+++ b/ghostty-themes/GitHub-Dark-Dimmed
 3675@@ -0,0 +1,22 @@
 3676+palette = 0=#545d68
 3677+palette = 1=#f47067
 3678+palette = 2=#57ab5a
 3679+palette = 3=#c69026
 3680+palette = 4=#539bf5
 3681+palette = 5=#b083f0
 3682+palette = 6=#39c5cf
 3683+palette = 7=#909dab
 3684+palette = 8=#636e7b
 3685+palette = 9=#ff938a
 3686+palette = 10=#6bc46d
 3687+palette = 11=#daaa3f
 3688+palette = 12=#6cb6ff
 3689+palette = 13=#dcbdfb
 3690+palette = 14=#56d4dd
 3691+palette = 15=#cdd9e5
 3692+background = #22272e
 3693+foreground = #adbac7
 3694+cursor-color = #539bf5
 3695+cursor-text = #539bf5
 3696+selection-background = #adbac7
 3697+selection-foreground = #22272e
 3698diff --git a/ghostty-themes/GitHub-Light-Colorblind b/ghostty-themes/GitHub-Light-Colorblind
 3699new file mode 100644
 3700index 0000000000000000000000000000000000000000..b480033ede605ffc1eb48d6e3de96b4a96976355
 3701--- /dev/null
 3702+++ b/ghostty-themes/GitHub-Light-Colorblind
 3703@@ -0,0 +1,22 @@
 3704+palette = 0=#24292f
 3705+palette = 1=#b35900
 3706+palette = 2=#0550ae
 3707+palette = 3=#4d2d00
 3708+palette = 4=#0969da
 3709+palette = 5=#8250df
 3710+palette = 6=#1b7c83
 3711+palette = 7=#6e7781
 3712+palette = 8=#57606a
 3713+palette = 9=#8a4600
 3714+palette = 10=#0969da
 3715+palette = 11=#633c01
 3716+palette = 12=#218bff
 3717+palette = 13=#a475f9
 3718+palette = 14=#3192aa
 3719+palette = 15=#8c959f
 3720+background = #ffffff
 3721+foreground = #24292f
 3722+cursor-color = #0969da
 3723+cursor-text = #0969da
 3724+selection-background = #24292f
 3725+selection-foreground = #ffffff
 3726diff --git a/ghostty-themes/GitHub-Light-Default b/ghostty-themes/GitHub-Light-Default
 3727new file mode 100644
 3728index 0000000000000000000000000000000000000000..4e2a3a7fc861a2717eaff3b93d33baab150ad3a5
 3729--- /dev/null
 3730+++ b/ghostty-themes/GitHub-Light-Default
 3731@@ -0,0 +1,22 @@
 3732+palette = 0=#24292f
 3733+palette = 1=#cf222e
 3734+palette = 2=#116329
 3735+palette = 3=#4d2d00
 3736+palette = 4=#0969da
 3737+palette = 5=#8250df
 3738+palette = 6=#1b7c83
 3739+palette = 7=#6e7781
 3740+palette = 8=#57606a
 3741+palette = 9=#a40e26
 3742+palette = 10=#1a7f37
 3743+palette = 11=#633c01
 3744+palette = 12=#218bff
 3745+palette = 13=#a475f9
 3746+palette = 14=#3192aa
 3747+palette = 15=#8c959f
 3748+background = #ffffff
 3749+foreground = #1f2328
 3750+cursor-color = #0969da
 3751+cursor-text = #0969da
 3752+selection-background = #1f2328
 3753+selection-foreground = #ffffff
 3754diff --git a/ghostty-themes/GitLab-Dark b/ghostty-themes/GitLab-Dark
 3755new file mode 100644
 3756index 0000000000000000000000000000000000000000..e989ff0146364c7de28c4d2427ba381c6d3b1431
 3757--- /dev/null
 3758+++ b/ghostty-themes/GitLab-Dark
 3759@@ -0,0 +1,22 @@
 3760+palette = 0=#000000
 3761+palette = 1=#f57f6c
 3762+palette = 2=#52b87a
 3763+palette = 3=#d99530
 3764+palette = 4=#7fb6ed
 3765+palette = 5=#f88aaf
 3766+palette = 6=#32c5d2
 3767+palette = 7=#ffffff
 3768+palette = 8=#666666
 3769+palette = 9=#fcb5aa
 3770+palette = 10=#91d4a8
 3771+palette = 11=#e9be74
 3772+palette = 12=#498dd1
 3773+palette = 13=#fcacc5
 3774+palette = 14=#5edee3
 3775+palette = 15=#ffffff
 3776+background = #28262b
 3777+foreground = #ffffff
 3778+cursor-color = #ffffff
 3779+cursor-text = #ffffff
 3780+selection-background = #ad95e9
 3781+selection-foreground = #28262b
 3782diff --git a/ghostty-themes/GitLab-Dark-Grey b/ghostty-themes/GitLab-Dark-Grey
 3783new file mode 100644
 3784index 0000000000000000000000000000000000000000..323f52efba7b0591d6e5039ed36ed4c81fbd7337
 3785--- /dev/null
 3786+++ b/ghostty-themes/GitLab-Dark-Grey
 3787@@ -0,0 +1,22 @@
 3788+palette = 0=#000000
 3789+palette = 1=#f57f6c
 3790+palette = 2=#52b87a
 3791+palette = 3=#d99530
 3792+palette = 4=#7fb6ed
 3793+palette = 5=#f88aaf
 3794+palette = 6=#32c5d2
 3795+palette = 7=#ffffff
 3796+palette = 8=#666666
 3797+palette = 9=#fcb5aa
 3798+palette = 10=#91d4a8
 3799+palette = 11=#e9be74
 3800+palette = 12=#498dd1
 3801+palette = 13=#fcacc5
 3802+palette = 14=#5edee3
 3803+palette = 15=#ffffff
 3804+background = #222222
 3805+foreground = #ffffff
 3806+cursor-color = #ffffff
 3807+cursor-text = #ffffff
 3808+selection-background = #ad95e9
 3809+selection-foreground = #222222
 3810diff --git a/ghostty-themes/GitLab-Light b/ghostty-themes/GitLab-Light
 3811new file mode 100644
 3812index 0000000000000000000000000000000000000000..4388cb966f38eb80e5d952bbf12a7dc9097684e7
 3813--- /dev/null
 3814+++ b/ghostty-themes/GitLab-Light
 3815@@ -0,0 +1,22 @@
 3816+palette = 0=#303030
 3817+palette = 1=#a31700
 3818+palette = 2=#0a7f3d
 3819+palette = 3=#af551d
 3820+palette = 4=#006cd8
 3821+palette = 5=#583cac
 3822+palette = 6=#00798a
 3823+palette = 7=#303030
 3824+palette = 8=#303030
 3825+palette = 9=#a31700
 3826+palette = 10=#0a7f3d
 3827+palette = 11=#af551d
 3828+palette = 12=#006cd8
 3829+palette = 13=#583cac
 3830+palette = 14=#00798a
 3831+palette = 15=#303030
 3832+background = #fafaff
 3833+foreground = #303030
 3834+cursor-color = #303030
 3835+cursor-text = #303030
 3836+selection-background = #ad95e9
 3837+selection-foreground = #fafaff
 3838diff --git a/ghostty-themes/Github b/ghostty-themes/Github
 3839new file mode 100644
 3840index 0000000000000000000000000000000000000000..2eb6218c50ad05600b870b232259078cbbd7287a
 3841--- /dev/null
 3842+++ b/ghostty-themes/Github
 3843@@ -0,0 +1,22 @@
 3844+palette = 0=#3e3e3e
 3845+palette = 1=#970b16
 3846+palette = 2=#07962a
 3847+palette = 3=#f8eec7
 3848+palette = 4=#003e8a
 3849+palette = 5=#e94691
 3850+palette = 6=#89d1ec
 3851+palette = 7=#ffffff
 3852+palette = 8=#666666
 3853+palette = 9=#de0000
 3854+palette = 10=#87d5a2
 3855+palette = 11=#f1d007
 3856+palette = 12=#2e6cba
 3857+palette = 13=#ffa29f
 3858+palette = 14=#1cfafe
 3859+palette = 15=#ffffff
 3860+background = #f4f4f4
 3861+foreground = #3e3e3e
 3862+cursor-color = #3f3f3f
 3863+cursor-text = #f4f4f4
 3864+selection-background = #a9c1e2
 3865+selection-foreground = #535353
 3866diff --git a/ghostty-themes/Glacier b/ghostty-themes/Glacier
 3867new file mode 100644
 3868index 0000000000000000000000000000000000000000..e90062c207b469c148cb6aae257726e11ba0d9e7
 3869--- /dev/null
 3870+++ b/ghostty-themes/Glacier
 3871@@ -0,0 +1,22 @@
 3872+palette = 0=#2e343c
 3873+palette = 1=#bd0f2f
 3874+palette = 2=#35a770
 3875+palette = 3=#fb9435
 3876+palette = 4=#1f5872
 3877+palette = 5=#bd2523
 3878+palette = 6=#778397
 3879+palette = 7=#ffffff
 3880+palette = 8=#404a55
 3881+palette = 9=#bd0f2f
 3882+palette = 10=#49e998
 3883+palette = 11=#fddf6e
 3884+palette = 12=#2a8bc1
 3885+palette = 13=#ea4727
 3886+palette = 14=#a0b6d3
 3887+palette = 15=#ffffff
 3888+background = #0c1115
 3889+foreground = #ffffff
 3890+cursor-color = #6c6c6c
 3891+cursor-text = #6c6c6c
 3892+selection-background = #bd2523
 3893+selection-foreground = #ffffff
 3894diff --git a/ghostty-themes/Grape b/ghostty-themes/Grape
 3895new file mode 100644
 3896index 0000000000000000000000000000000000000000..714a6b6511ef8c48470b05dade4bcab31d591992
 3897--- /dev/null
 3898+++ b/ghostty-themes/Grape
 3899@@ -0,0 +1,22 @@
 3900+palette = 0=#2d283f
 3901+palette = 1=#ed2261
 3902+palette = 2=#1fa91b
 3903+palette = 3=#8ddc20
 3904+palette = 4=#487df4
 3905+palette = 5=#8d35c9
 3906+palette = 6=#3bdeed
 3907+palette = 7=#9e9ea0
 3908+palette = 8=#59516a
 3909+palette = 9=#f0729a
 3910+palette = 10=#53aa5e
 3911+palette = 11=#b2dc87
 3912+palette = 12=#a9bcec
 3913+palette = 13=#ad81c2
 3914+palette = 14=#9de3eb
 3915+palette = 15=#a288f7
 3916+background = #171423
 3917+foreground = #9f9fa1
 3918+cursor-color = #a288f7
 3919+cursor-text = #171422
 3920+selection-background = #493d70
 3921+selection-foreground = #171422
 3922diff --git a/ghostty-themes/Grass b/ghostty-themes/Grass
 3923new file mode 100644
 3924index 0000000000000000000000000000000000000000..a6a23b561c194eaf42b17dd6928742566514eca8
 3925--- /dev/null
 3926+++ b/ghostty-themes/Grass
 3927@@ -0,0 +1,22 @@
 3928+palette = 0=#000000
 3929+palette = 1=#bb0000
 3930+palette = 2=#00bb00
 3931+palette = 3=#e7b000
 3932+palette = 4=#0000a3
 3933+palette = 5=#950062
 3934+palette = 6=#00bbbb
 3935+palette = 7=#bbbbbb
 3936+palette = 8=#555555
 3937+palette = 9=#bb0000
 3938+palette = 10=#00bb00
 3939+palette = 11=#e7b000
 3940+palette = 12=#0000bb
 3941+palette = 13=#ff55ff
 3942+palette = 14=#55ffff
 3943+palette = 15=#ffffff
 3944+background = #13773d
 3945+foreground = #fff0a5
 3946+cursor-color = #8c2800
 3947+cursor-text = #ffffff
 3948+selection-background = #b64926
 3949+selection-foreground = #ffffff
 3950diff --git a/ghostty-themes/Grey-green b/ghostty-themes/Grey-green
 3951new file mode 100644
 3952index 0000000000000000000000000000000000000000..58f9cb42945444b37f4b7f161fd524fc16919596
 3953--- /dev/null
 3954+++ b/ghostty-themes/Grey-green
 3955@@ -0,0 +1,22 @@
 3956+palette = 0=#000000
 3957+palette = 1=#fe1414
 3958+palette = 2=#74ff00
 3959+palette = 3=#f1ff01
 3960+palette = 4=#00deff
 3961+palette = 5=#ff00f0
 3962+palette = 6=#00ffbc
 3963+palette = 7=#ffffff
 3964+palette = 8=#666666
 3965+palette = 9=#ff3939
 3966+palette = 10=#00ff44
 3967+palette = 11=#ffd100
 3968+palette = 12=#00afff
 3969+palette = 13=#ff008a
 3970+palette = 14=#00ffd3
 3971+palette = 15=#f5ecec
 3972+background = #002a1a
 3973+foreground = #ffffff
 3974+cursor-color = #fff400
 3975+cursor-text = #e1e4e3
 3976+selection-background = #517e50
 3977+selection-foreground = #e2e2e2
 3978diff --git a/ghostty-themes/GruvboxDark b/ghostty-themes/GruvboxDark
 3979new file mode 100644
 3980index 0000000000000000000000000000000000000000..e5c63f163ce04db6589f113a5a236922be968221
 3981--- /dev/null
 3982+++ b/ghostty-themes/GruvboxDark
 3983@@ -0,0 +1,22 @@
 3984+palette = 0=#282828
 3985+palette = 1=#cc241d
 3986+palette = 2=#98971a
 3987+palette = 3=#d79921
 3988+palette = 4=#458588
 3989+palette = 5=#b16286
 3990+palette = 6=#689d6a
 3991+palette = 7=#a89984
 3992+palette = 8=#928374
 3993+palette = 9=#fb4934
 3994+palette = 10=#b8bb26
 3995+palette = 11=#fabd2f
 3996+palette = 12=#83a598
 3997+palette = 13=#d3869b
 3998+palette = 14=#8ec07c
 3999+palette = 15=#ebdbb2
 4000+background = #282828
 4001+foreground = #ebdbb2
 4002+cursor-color = #ebdbb2
 4003+cursor-text = #282828
 4004+selection-background = #665c54
 4005+selection-foreground = #ebdbb2
 4006diff --git a/ghostty-themes/GruvboxDarkHard b/ghostty-themes/GruvboxDarkHard
 4007new file mode 100644
 4008index 0000000000000000000000000000000000000000..d90c21144e565a917c5d4abc8d280d66589cb0be
 4009--- /dev/null
 4010+++ b/ghostty-themes/GruvboxDarkHard
 4011@@ -0,0 +1,22 @@
 4012+palette = 0=#1d2021
 4013+palette = 1=#cc241d
 4014+palette = 2=#98971a
 4015+palette = 3=#d79921
 4016+palette = 4=#458588
 4017+palette = 5=#b16286
 4018+palette = 6=#689d6a
 4019+palette = 7=#a89984
 4020+palette = 8=#928374
 4021+palette = 9=#fb4934
 4022+palette = 10=#b8bb26
 4023+palette = 11=#fabd2f
 4024+palette = 12=#83a598
 4025+palette = 13=#d3869b
 4026+palette = 14=#8ec07c
 4027+palette = 15=#ebdbb2
 4028+background = #1d2021
 4029+foreground = #ebdbb2
 4030+cursor-color = #ebdbb2
 4031+cursor-text = #1d2021
 4032+selection-background = #665c54
 4033+selection-foreground = #ebdbb2
 4034diff --git a/ghostty-themes/GruvboxLight b/ghostty-themes/GruvboxLight
 4035new file mode 100644
 4036index 0000000000000000000000000000000000000000..6fb334e6c6ed0929498fc8c50fb7d2a4d130f2ea
 4037--- /dev/null
 4038+++ b/ghostty-themes/GruvboxLight
 4039@@ -0,0 +1,22 @@
 4040+palette = 0=#fbf1c7
 4041+palette = 1=#9d0006
 4042+palette = 2=#79740e
 4043+palette = 3=#b57614
 4044+palette = 4=#076678
 4045+palette = 5=#8f3f71
 4046+palette = 6=#427b58
 4047+palette = 7=#3c3836
 4048+palette = 8=#9d8374
 4049+palette = 9=#cc241d
 4050+palette = 10=#98971a
 4051+palette = 11=#d79921
 4052+palette = 12=#458588
 4053+palette = 13=#b16186
 4054+palette = 14=#689d69
 4055+palette = 15=#7c6f64
 4056+background = #fbf1c7
 4057+foreground = #282828
 4058+cursor-color = #282828
 4059+cursor-text = #fbf1c7
 4060+selection-background = #d5c4a1
 4061+selection-foreground = #665c54
 4062diff --git a/ghostty-themes/GruvboxLightHard b/ghostty-themes/GruvboxLightHard
 4063new file mode 100644
 4064index 0000000000000000000000000000000000000000..964207114a6aa466e0f0d092f8fa6097febb2fc1
 4065--- /dev/null
 4066+++ b/ghostty-themes/GruvboxLightHard
 4067@@ -0,0 +1,22 @@
 4068+palette = 0=#f8f4d6
 4069+palette = 1=#9d0006
 4070+palette = 2=#79740e
 4071+palette = 3=#b57614
 4072+palette = 4=#076678
 4073+palette = 5=#8f3f71
 4074+palette = 6=#427b58
 4075+palette = 7=#3c3836
 4076+palette = 8=#9d8374
 4077+palette = 9=#cc241d
 4078+palette = 10=#98971a
 4079+palette = 11=#d79921
 4080+palette = 12=#458588
 4081+palette = 13=#b16186
 4082+palette = 14=#689d69
 4083+palette = 15=#7c6f64
 4084+background = #f8f4d6
 4085+foreground = #282828
 4086+cursor-color = #282828
 4087+cursor-text = #f8f4d6
 4088+selection-background = #d5c4a1
 4089+selection-foreground = #665c54
 4090diff --git a/ghostty-themes/Guezwhoz b/ghostty-themes/Guezwhoz
 4091new file mode 100644
 4092index 0000000000000000000000000000000000000000..47bb7e243c696c6a60bb20a11c8d2426293e02f1
 4093--- /dev/null
 4094+++ b/ghostty-themes/Guezwhoz
 4095@@ -0,0 +1,22 @@
 4096+palette = 0=#080808
 4097+palette = 1=#ff5f5f
 4098+palette = 2=#87d7af
 4099+palette = 3=#d7d787
 4100+palette = 4=#5fafd7
 4101+palette = 5=#afafff
 4102+palette = 6=#5fd7d7
 4103+palette = 7=#dadada
 4104+palette = 8=#8a8a8a
 4105+palette = 9=#d75f5f
 4106+palette = 10=#afd7af
 4107+palette = 11=#d7d7af
 4108+palette = 12=#87afd7
 4109+palette = 13=#afafd7
 4110+palette = 14=#87d7d7
 4111+palette = 15=#dadada
 4112+background = #1c1c1c
 4113+foreground = #d0d0d0
 4114+cursor-color = #eeeeee
 4115+cursor-text = #eeeeee
 4116+selection-background = #005f5f
 4117+selection-foreground = #eeeeee
 4118diff --git a/ghostty-themes/HaX0R_BLUE b/ghostty-themes/HaX0R_BLUE
 4119new file mode 100644
 4120index 0000000000000000000000000000000000000000..366980017fc42df7b9db82f464565f858c8cad76
 4121--- /dev/null
 4122+++ b/ghostty-themes/HaX0R_BLUE
 4123@@ -0,0 +1,22 @@
 4124+palette = 0=#010921
 4125+palette = 1=#10b6ff
 4126+palette = 2=#10b6ff
 4127+palette = 3=#10b6ff
 4128+palette = 4=#10b6ff
 4129+palette = 5=#10b6ff
 4130+palette = 6=#10b6ff
 4131+palette = 7=#fafafa
 4132+palette = 8=#080117
 4133+palette = 9=#00b3f7
 4134+palette = 10=#00b3f7
 4135+palette = 11=#00b3f7
 4136+palette = 12=#00b3f7
 4137+palette = 13=#00b3f7
 4138+palette = 14=#00b3f7
 4139+palette = 15=#fefefe
 4140+background = #010515
 4141+foreground = #11b7ff
 4142+cursor-color = #10b6ff
 4143+cursor-text = #ffffff
 4144+selection-background = #c1e4ff
 4145+selection-foreground = #f6f6f6
 4146diff --git a/ghostty-themes/HaX0R_GR33N b/ghostty-themes/HaX0R_GR33N
 4147new file mode 100644
 4148index 0000000000000000000000000000000000000000..321ee1f85293b2cf53870fdfac7c296db9a396a7
 4149--- /dev/null
 4150+++ b/ghostty-themes/HaX0R_GR33N
 4151@@ -0,0 +1,22 @@
 4152+palette = 0=#001f0b
 4153+palette = 1=#15d00d
 4154+palette = 2=#15d00d
 4155+palette = 3=#15d00d
 4156+palette = 4=#15d00d
 4157+palette = 5=#15d00d
 4158+palette = 6=#15d00d
 4159+palette = 7=#fafafa
 4160+palette = 8=#001510
 4161+palette = 9=#19e20e
 4162+palette = 10=#19e20e
 4163+palette = 11=#19e20e
 4164+palette = 12=#19e20e
 4165+palette = 13=#19e20e
 4166+palette = 14=#19e20e
 4167+palette = 15=#fefefe
 4168+background = #020f01
 4169+foreground = #16b10e
 4170+cursor-color = #15d00d
 4171+cursor-text = #ffffff
 4172+selection-background = #d4ffc1
 4173+selection-foreground = #fdfdfd
 4174diff --git a/ghostty-themes/HaX0R_R3D b/ghostty-themes/HaX0R_R3D
 4175new file mode 100644
 4176index 0000000000000000000000000000000000000000..7088c76c98fbe993dedf20e521ff97a02ff092ce
 4177--- /dev/null
 4178+++ b/ghostty-themes/HaX0R_R3D
 4179@@ -0,0 +1,22 @@
 4180+palette = 0=#1f0000
 4181+palette = 1=#b00d0d
 4182+palette = 2=#b00d0d
 4183+palette = 3=#b00d0d
 4184+palette = 4=#b00d0d
 4185+palette = 5=#b00d0d
 4186+palette = 6=#b00d0d
 4187+palette = 7=#fafafa
 4188+palette = 8=#150000
 4189+palette = 9=#ff1111
 4190+palette = 10=#ff1010
 4191+palette = 11=#ff1010
 4192+palette = 12=#ff1010
 4193+palette = 13=#ff1010
 4194+palette = 14=#ff1010
 4195+palette = 15=#fefefe
 4196+background = #200101
 4197+foreground = #b10e0e
 4198+cursor-color = #b00d0d
 4199+cursor-text = #ffffff
 4200+selection-background = #ebc1ff
 4201+selection-foreground = #fdfdfd
 4202diff --git a/ghostty-themes/Hacktober b/ghostty-themes/Hacktober
 4203new file mode 100644
 4204index 0000000000000000000000000000000000000000..02000f0ce6f2abdee35bde924891958cae06e697
 4205--- /dev/null
 4206+++ b/ghostty-themes/Hacktober
 4207@@ -0,0 +1,22 @@
 4208+palette = 0=#191918
 4209+palette = 1=#b34538
 4210+palette = 2=#587744
 4211+palette = 3=#d08949
 4212+palette = 4=#206ec5
 4213+palette = 5=#864651
 4214+palette = 6=#ac9166
 4215+palette = 7=#f1eee7
 4216+palette = 8=#2c2b2a
 4217+palette = 9=#b33323
 4218+palette = 10=#42824a
 4219+palette = 11=#c75a22
 4220+palette = 12=#5389c5
 4221+palette = 13=#e795a5
 4222+palette = 14=#ebc587
 4223+palette = 15=#ffffff
 4224+background = #141414
 4225+foreground = #c9c9c9
 4226+cursor-color = #c9c9c9
 4227+cursor-text = #141414
 4228+selection-background = #141414
 4229+selection-foreground = #c9c9c9
 4230diff --git a/ghostty-themes/Hardcore b/ghostty-themes/Hardcore
 4231new file mode 100644
 4232index 0000000000000000000000000000000000000000..0bbe6a67e7686f560e6d96cdd3740d7829fc21de
 4233--- /dev/null
 4234+++ b/ghostty-themes/Hardcore
 4235@@ -0,0 +1,22 @@
 4236+palette = 0=#1b1d1e
 4237+palette = 1=#f92672
 4238+palette = 2=#a6e22e
 4239+palette = 3=#fd971f
 4240+palette = 4=#66d9ef
 4241+palette = 5=#9e6ffe
 4242+palette = 6=#5e7175
 4243+palette = 7=#ccccc6
 4244+palette = 8=#505354
 4245+palette = 9=#ff669d
 4246+palette = 10=#beed5f
 4247+palette = 11=#e6db74
 4248+palette = 12=#66d9ef
 4249+palette = 13=#9e6ffe
 4250+palette = 14=#a3babf
 4251+palette = 15=#f8f8f2
 4252+background = #121212
 4253+foreground = #a0a0a0
 4254+cursor-color = #bbbbbb
 4255+cursor-text = #ffffff
 4256+selection-background = #453b39
 4257+selection-foreground = #b6bbc0
 4258diff --git a/ghostty-themes/Harper b/ghostty-themes/Harper
 4259new file mode 100644
 4260index 0000000000000000000000000000000000000000..cb749f310c315b4498589b1dcbe9d7485b86bc4a
 4261--- /dev/null
 4262+++ b/ghostty-themes/Harper
 4263@@ -0,0 +1,22 @@
 4264+palette = 0=#010101
 4265+palette = 1=#f8b63f
 4266+palette = 2=#7fb5e1
 4267+palette = 3=#d6da25
 4268+palette = 4=#489e48
 4269+palette = 5=#b296c6
 4270+palette = 6=#f5bfd7
 4271+palette = 7=#a8a49d
 4272+palette = 8=#726e6a
 4273+palette = 9=#f8b63f
 4274+palette = 10=#7fb5e1
 4275+palette = 11=#d6da25
 4276+palette = 12=#489e48
 4277+palette = 13=#b296c6
 4278+palette = 14=#f5bfd7
 4279+palette = 15=#fefbea
 4280+background = #010101
 4281+foreground = #a8a49d
 4282+cursor-color = #a8a49d
 4283+cursor-text = #010101
 4284+selection-background = #5a5753
 4285+selection-foreground = #a8a49d
 4286diff --git a/ghostty-themes/Havn Daggry b/ghostty-themes/Havn Daggry
 4287new file mode 100644
 4288index 0000000000000000000000000000000000000000..9360adefd712999b20a6e209e32312c9fd4f8742
 4289--- /dev/null
 4290+++ b/ghostty-themes/Havn Daggry
 4291@@ -0,0 +1,22 @@
 4292+palette = 0=#212840
 4293+palette = 1=#8f564b
 4294+palette = 2=#5c705b
 4295+palette = 3=#b36f00
 4296+palette = 4=#40567a
 4297+palette = 5=#775d93
 4298+palette = 6=#8a5a7e
 4299+palette = 7=#d7dbea
 4300+palette = 8=#212840
 4301+palette = 9=#bd533e
 4302+palette = 10=#79957b
 4303+palette = 11=#f3b550
 4304+palette = 12=#6988bc
 4305+palette = 13=#7b7393
 4306+palette = 14=#a4879c
 4307+palette = 15=#d7dbea
 4308+background = #f8f9fb
 4309+foreground = #3e4a77
 4310+cursor-color = #386a51
 4311+cursor-text = #d7dbea
 4312+selection-background = #d4e8de
 4313+selection-foreground = #333c61
 4314diff --git a/ghostty-themes/Havn Skumring b/ghostty-themes/Havn Skumring
 4315new file mode 100644
 4316index 0000000000000000000000000000000000000000..df957a6ece1a57a550d197e60d5cd584cfd25ae9
 4317--- /dev/null
 4318+++ b/ghostty-themes/Havn Skumring
 4319@@ -0,0 +1,22 @@
 4320+palette = 0=#262c45
 4321+palette = 1=#d96048
 4322+palette = 2=#7cab7f
 4323+palette = 3=#eeb64e
 4324+palette = 4=#5d6bef
 4325+palette = 5=#7a729a
 4326+palette = 6=#ca8cbe
 4327+palette = 7=#dde0ed
 4328+palette = 8=#212840
 4329+palette = 9=#c47768
 4330+palette = 10=#8f9d90
 4331+palette = 11=#e4c693
 4332+palette = 12=#5d85c6
 4333+palette = 13=#967de7
 4334+palette = 14=#c57eb3
 4335+palette = 15=#fdf6e3
 4336+background = #121521
 4337+foreground = #d7dbea
 4338+cursor-color = #40786f
 4339+cursor-text = #e0e4f2
 4340+selection-background = #34504b
 4341+selection-foreground = #dce0ee
 4342diff --git a/ghostty-themes/Highway b/ghostty-themes/Highway
 4343new file mode 100644
 4344index 0000000000000000000000000000000000000000..37c390a1afcfbf497c6e7c2608f7f2aefd3d2995
 4345--- /dev/null
 4346+++ b/ghostty-themes/Highway
 4347@@ -0,0 +1,22 @@
 4348+palette = 0=#000000
 4349+palette = 1=#d00e18
 4350+palette = 2=#138034
 4351+palette = 3=#ffcb3e
 4352+palette = 4=#006bb3
 4353+palette = 5=#6b2775
 4354+palette = 6=#384564
 4355+palette = 7=#ededed
 4356+palette = 8=#5d504a
 4357+palette = 9=#f07e18
 4358+palette = 10=#b1d130
 4359+palette = 11=#fff120
 4360+palette = 12=#4fc2fd
 4361+palette = 13=#de0071
 4362+palette = 14=#5d504a
 4363+palette = 15=#ffffff
 4364+background = #222225
 4365+foreground = #ededed
 4366+cursor-color = #e0d9b9
 4367+cursor-text = #1f192a
 4368+selection-background = #384564
 4369+selection-foreground = #ededed
 4370diff --git a/ghostty-themes/Hipster Green b/ghostty-themes/Hipster Green
 4371new file mode 100644
 4372index 0000000000000000000000000000000000000000..5489f6894ab04b3b612068f4771218ba152f0482
 4373--- /dev/null
 4374+++ b/ghostty-themes/Hipster Green
 4375@@ -0,0 +1,22 @@
 4376+palette = 0=#000000
 4377+palette = 1=#b6214a
 4378+palette = 2=#00a600
 4379+palette = 3=#bfbf00
 4380+palette = 4=#246eb2
 4381+palette = 5=#b200b2
 4382+palette = 6=#00a6b2
 4383+palette = 7=#bfbfbf
 4384+palette = 8=#666666
 4385+palette = 9=#e50000
 4386+palette = 10=#86a93e
 4387+palette = 11=#e5e500
 4388+palette = 12=#0000ff
 4389+palette = 13=#e500e5
 4390+palette = 14=#00e5e5
 4391+palette = 15=#e5e5e5
 4392+background = #100b05
 4393+foreground = #84c138
 4394+cursor-color = #23ff18
 4395+cursor-text = #ff0018
 4396+selection-background = #083905
 4397+selection-foreground = #ffffff
 4398diff --git a/ghostty-themes/Hivacruz b/ghostty-themes/Hivacruz
 4399new file mode 100644
 4400index 0000000000000000000000000000000000000000..37c0c79c8383bee414e643537f7d024a62e26c61
 4401--- /dev/null
 4402+++ b/ghostty-themes/Hivacruz
 4403@@ -0,0 +1,22 @@
 4404+palette = 0=#202746
 4405+palette = 1=#c94922
 4406+palette = 2=#ac9739
 4407+palette = 3=#c08b30
 4408+palette = 4=#3d8fd1
 4409+palette = 5=#6679cc
 4410+palette = 6=#22a2c9
 4411+palette = 7=#979db4
 4412+palette = 8=#6b7394
 4413+palette = 9=#c76b29
 4414+palette = 10=#73ad43
 4415+palette = 11=#5e6687
 4416+palette = 12=#898ea4
 4417+palette = 13=#dfe2f1
 4418+palette = 14=#9c637a
 4419+palette = 15=#f5f7ff
 4420+background = #132638
 4421+foreground = #ede4e4
 4422+cursor-color = #979db4
 4423+cursor-text = #202746
 4424+selection-background = #5e6687
 4425+selection-foreground = #979db4
 4426diff --git a/ghostty-themes/Homebrew b/ghostty-themes/Homebrew
 4427new file mode 100644
 4428index 0000000000000000000000000000000000000000..95c93628d91bcb9f64b4f59f1f8c3b300821370d
 4429--- /dev/null
 4430+++ b/ghostty-themes/Homebrew
 4431@@ -0,0 +1,22 @@
 4432+palette = 0=#000000
 4433+palette = 1=#990000
 4434+palette = 2=#00a600
 4435+palette = 3=#999900
 4436+palette = 4=#0000b2
 4437+palette = 5=#b200b2
 4438+palette = 6=#00a6b2
 4439+palette = 7=#bfbfbf
 4440+palette = 8=#666666
 4441+palette = 9=#e50000
 4442+palette = 10=#00d900
 4443+palette = 11=#e5e500
 4444+palette = 12=#0000ff
 4445+palette = 13=#e500e5
 4446+palette = 14=#00e5e5
 4447+palette = 15=#e5e5e5
 4448+background = #000000
 4449+foreground = #00ff00
 4450+cursor-color = #23ff18
 4451+cursor-text = #ff0018
 4452+selection-background = #083905
 4453+selection-foreground = #ffffff
 4454diff --git a/ghostty-themes/Hopscotch b/ghostty-themes/Hopscotch
 4455new file mode 100644
 4456index 0000000000000000000000000000000000000000..9d041cd32acdbfccd3d9f293e50170dcd60ad184
 4457--- /dev/null
 4458+++ b/ghostty-themes/Hopscotch
 4459@@ -0,0 +1,22 @@
 4460+palette = 0=#322931
 4461+palette = 1=#dd464c
 4462+palette = 2=#8fc13e
 4463+palette = 3=#fdcc59
 4464+palette = 4=#1290bf
 4465+palette = 5=#c85e7c
 4466+palette = 6=#149b93
 4467+palette = 7=#b9b5b8
 4468+palette = 8=#797379
 4469+palette = 9=#fd8b19
 4470+palette = 10=#433b42
 4471+palette = 11=#5c545b
 4472+palette = 12=#989498
 4473+palette = 13=#d5d3d5
 4474+palette = 14=#b33508
 4475+palette = 15=#ffffff
 4476+background = #322931
 4477+foreground = #b9b5b8
 4478+cursor-color = #b9b5b8
 4479+cursor-text = #322931
 4480+selection-background = #5c545b
 4481+selection-foreground = #b9b5b8
 4482diff --git a/ghostty-themes/Hopscotch.256 b/ghostty-themes/Hopscotch.256
 4483new file mode 100644
 4484index 0000000000000000000000000000000000000000..4e096b990d675e18c754d88825eae6de0e9f602e
 4485--- /dev/null
 4486+++ b/ghostty-themes/Hopscotch.256
 4487@@ -0,0 +1,22 @@
 4488+palette = 0=#322931
 4489+palette = 1=#dd464c
 4490+palette = 2=#8fc13e
 4491+palette = 3=#fdcc59
 4492+palette = 4=#1290bf
 4493+palette = 5=#c85e7c
 4494+palette = 6=#149b93
 4495+palette = 7=#b9b5b8
 4496+palette = 8=#797379
 4497+palette = 9=#dd464c
 4498+palette = 10=#8fc13e
 4499+palette = 11=#fdcc59
 4500+palette = 12=#1290bf
 4501+palette = 13=#c85e7c
 4502+palette = 14=#149b93
 4503+palette = 15=#ffffff
 4504+background = #322931
 4505+foreground = #b9b5b8
 4506+cursor-color = #b9b5b8
 4507+cursor-text = #322931
 4508+selection-background = #5c545b
 4509+selection-foreground = #b9b5b8
 4510diff --git a/ghostty-themes/Horizon b/ghostty-themes/Horizon
 4511new file mode 100644
 4512index 0000000000000000000000000000000000000000..29f78ee14cd98be7b17496d905e4d9e8103f77cf
 4513--- /dev/null
 4514+++ b/ghostty-themes/Horizon
 4515@@ -0,0 +1,22 @@
 4516+palette = 0=#000000
 4517+palette = 1=#e95678
 4518+palette = 2=#29d398
 4519+palette = 3=#fab795
 4520+palette = 4=#26bbd9
 4521+palette = 5=#ee64ac
 4522+palette = 6=#59e1e3
 4523+palette = 7=#e5e5e5
 4524+palette = 8=#666666
 4525+palette = 9=#ec6a88
 4526+palette = 10=#3fdaa4
 4527+palette = 11=#fbc3a7
 4528+palette = 12=#3fc4de
 4529+palette = 13=#f075b5
 4530+palette = 14=#6be4e6
 4531+palette = 15=#e5e5e5
 4532+background = #1c1e26
 4533+foreground = #d5d8da
 4534+cursor-color = #6c6f93
 4535+cursor-text = #6c6f93
 4536+selection-background = #6c6f93
 4537+selection-foreground = #1c1e26
 4538diff --git a/ghostty-themes/Horizon-Bright b/ghostty-themes/Horizon-Bright
 4539new file mode 100644
 4540index 0000000000000000000000000000000000000000..5b9d3f74aa7e3c697e03f4693703f7305b1dedb9
 4541--- /dev/null
 4542+++ b/ghostty-themes/Horizon-Bright
 4543@@ -0,0 +1,22 @@
 4544+palette = 0=#000000
 4545+palette = 1=#e95678
 4546+palette = 2=#29d398
 4547+palette = 3=#fab795
 4548+palette = 4=#26bbd9
 4549+palette = 5=#ee64ac
 4550+palette = 6=#59e1e3
 4551+palette = 7=#555555
 4552+palette = 8=#666666
 4553+palette = 9=#ec6a88
 4554+palette = 10=#3fdaa4
 4555+palette = 11=#fbc3a7
 4556+palette = 12=#3fc4de
 4557+palette = 13=#f075b5
 4558+palette = 14=#6be4e6
 4559+palette = 15=#a5a5a5
 4560+background = #fdf0ed
 4561+foreground = #06060c
 4562+cursor-color = #f9cec3
 4563+cursor-text = #f9cec3
 4564+selection-background = #f9cec3
 4565+selection-foreground = #fdf0ed
 4566diff --git a/ghostty-themes/Hurtado b/ghostty-themes/Hurtado
 4567new file mode 100644
 4568index 0000000000000000000000000000000000000000..bff52aa27e5898f0b8cf0b8f97e896bec99992f7
 4569--- /dev/null
 4570+++ b/ghostty-themes/Hurtado
 4571@@ -0,0 +1,22 @@
 4572+palette = 0=#575757
 4573+palette = 1=#ff1b00
 4574+palette = 2=#a5e055
 4575+palette = 3=#fbe74a
 4576+palette = 4=#496487
 4577+palette = 5=#fd5ff1
 4578+palette = 6=#86e9fe
 4579+palette = 7=#cbcccb
 4580+palette = 8=#262626
 4581+palette = 9=#d51d00
 4582+palette = 10=#a5df55
 4583+palette = 11=#fbe84a
 4584+palette = 12=#89beff
 4585+palette = 13=#c001c1
 4586+palette = 14=#86eafe
 4587+palette = 15=#dbdbdb
 4588+background = #000000
 4589+foreground = #dbdbdb
 4590+cursor-color = #bbbbbb
 4591+cursor-text = #ffffff
 4592+selection-background = #b5d5ff
 4593+selection-foreground = #000000
 4594diff --git a/ghostty-themes/Hybrid b/ghostty-themes/Hybrid
 4595new file mode 100644
 4596index 0000000000000000000000000000000000000000..17753c0b5660563b3a8eed871bbe551d76400cf2
 4597--- /dev/null
 4598+++ b/ghostty-themes/Hybrid
 4599@@ -0,0 +1,22 @@
 4600+palette = 0=#2a2e33
 4601+palette = 1=#b84d51
 4602+palette = 2=#b3bf5a
 4603+palette = 3=#e4b55e
 4604+palette = 4=#6e90b0
 4605+palette = 5=#a17eac
 4606+palette = 6=#7fbfb4
 4607+palette = 7=#b5b9b6
 4608+palette = 8=#1d1f22
 4609+palette = 9=#8d2e32
 4610+palette = 10=#798431
 4611+palette = 11=#e58a50
 4612+palette = 12=#4b6b88
 4613+palette = 13=#6e5079
 4614+palette = 14=#4d7b74
 4615+palette = 15=#5a626a
 4616+background = #161719
 4617+foreground = #b7bcba
 4618+cursor-color = #b7bcba
 4619+cursor-text = #1e1f22
 4620+selection-background = #1e1f22
 4621+selection-foreground = #b7bcba
 4622diff --git a/ghostty-themes/IC_Green_PPL b/ghostty-themes/IC_Green_PPL
 4623new file mode 100644
 4624index 0000000000000000000000000000000000000000..e443ac6c3ea8665d1aa095cdbc7e63bc89b54439
 4625--- /dev/null
 4626+++ b/ghostty-themes/IC_Green_PPL
 4627@@ -0,0 +1,22 @@
 4628+palette = 0=#014401
 4629+palette = 1=#ff2736
 4630+palette = 2=#41a638
 4631+palette = 3=#76a831
 4632+palette = 4=#2ec3b9
 4633+palette = 5=#50a096
 4634+palette = 6=#3ca078
 4635+palette = 7=#e6fef2
 4636+palette = 8=#035c03
 4637+palette = 9=#b4fa5c
 4638+palette = 10=#aefb86
 4639+palette = 11=#dafa87
 4640+palette = 12=#2efaeb
 4641+palette = 13=#50fafa
 4642+palette = 14=#3cfac8
 4643+palette = 15=#e0f1dc
 4644+background = #2c2c2c
 4645+foreground = #e0f1dc
 4646+cursor-color = #47fa6b
 4647+cursor-text = #292929
 4648+selection-background = #116b41
 4649+selection-foreground = #e0f1dc
 4650diff --git a/ghostty-themes/IC_Orange_PPL b/ghostty-themes/IC_Orange_PPL
 4651new file mode 100644
 4652index 0000000000000000000000000000000000000000..c332591e81330e17e8c262441d9233dbf3e9f571
 4653--- /dev/null
 4654+++ b/ghostty-themes/IC_Orange_PPL
 4655@@ -0,0 +1,22 @@
 4656+palette = 0=#000000
 4657+palette = 1=#c13900
 4658+palette = 2=#a4a900
 4659+palette = 3=#caaf00
 4660+palette = 4=#bd6d00
 4661+palette = 5=#fc5e00
 4662+palette = 6=#f79500
 4663+palette = 7=#ffc88a
 4664+palette = 8=#6a4f2a
 4665+palette = 9=#ff8c68
 4666+palette = 10=#f6ff40
 4667+palette = 11=#ffe36e
 4668+palette = 12=#ffbe55
 4669+palette = 13=#fc874f
 4670+palette = 14=#c69752
 4671+palette = 15=#fafaff
 4672+background = #262626
 4673+foreground = #ffcb83
 4674+cursor-color = #fc531d
 4675+cursor-text = #ffc88a
 4676+selection-background = #c14020
 4677+selection-foreground = #ffc88a
 4678diff --git a/ghostty-themes/IR_Black b/ghostty-themes/IR_Black
 4679new file mode 100644
 4680index 0000000000000000000000000000000000000000..85eaa4028c05ca0f2d70f5bff3ba207737963ea2
 4681--- /dev/null
 4682+++ b/ghostty-themes/IR_Black
 4683@@ -0,0 +1,22 @@
 4684+palette = 0=#4f4f4f
 4685+palette = 1=#fa6c60
 4686+palette = 2=#a8ff60
 4687+palette = 3=#fffeb7
 4688+palette = 4=#96cafe
 4689+palette = 5=#fa73fd
 4690+palette = 6=#c6c5fe
 4691+palette = 7=#efedef
 4692+palette = 8=#7b7b7b
 4693+palette = 9=#fcb6b0
 4694+palette = 10=#cfffab
 4695+palette = 11=#ffffcc
 4696+palette = 12=#b5dcff
 4697+palette = 13=#fb9cfe
 4698+palette = 14=#e0e0fe
 4699+palette = 15=#ffffff
 4700+background = #000000
 4701+foreground = #f1f1f1
 4702+cursor-color = #808080
 4703+cursor-text = #ffffff
 4704+selection-background = #b5d5ff
 4705+selection-foreground = #000000
 4706diff --git a/ghostty-themes/Jackie Brown b/ghostty-themes/Jackie Brown
 4707new file mode 100644
 4708index 0000000000000000000000000000000000000000..6a9317ce866728d92c2ded9c7b11ea5c3f7cdcc5
 4709--- /dev/null
 4710+++ b/ghostty-themes/Jackie Brown
 4711@@ -0,0 +1,22 @@
 4712+palette = 0=#2c1d16
 4713+palette = 1=#ef5734
 4714+palette = 2=#2baf2b
 4715+palette = 3=#bebf00
 4716+palette = 4=#246eb2
 4717+palette = 5=#d05ec1
 4718+palette = 6=#00acee
 4719+palette = 7=#bfbfbf
 4720+palette = 8=#666666
 4721+palette = 9=#e50000
 4722+palette = 10=#86a93e
 4723+palette = 11=#e5e500
 4724+palette = 12=#0000ff
 4725+palette = 13=#e500e5
 4726+palette = 14=#00e5e5
 4727+palette = 15=#e5e5e5
 4728+background = #2c1d16
 4729+foreground = #ffcc2f
 4730+cursor-color = #23ff18
 4731+cursor-text = #ff0018
 4732+selection-background = #af8d21
 4733+selection-foreground = #ffffff
 4734diff --git a/ghostty-themes/Japanesque b/ghostty-themes/Japanesque
 4735new file mode 100644
 4736index 0000000000000000000000000000000000000000..79b44a6e5c00d9fd23ee3bfdf6316afb87ca80c7
 4737--- /dev/null
 4738+++ b/ghostty-themes/Japanesque
 4739@@ -0,0 +1,22 @@
 4740+palette = 0=#343935
 4741+palette = 1=#cf3f61
 4742+palette = 2=#7bb75b
 4743+palette = 3=#e9b32a
 4744+palette = 4=#4c9ad4
 4745+palette = 5=#a57fc4
 4746+palette = 6=#389aad
 4747+palette = 7=#fafaf6
 4748+palette = 8=#595b59
 4749+palette = 9=#d18fa6
 4750+palette = 10=#767f2c
 4751+palette = 11=#78592f
 4752+palette = 12=#135979
 4753+palette = 13=#604291
 4754+palette = 14=#76bbca
 4755+palette = 15=#b2b5ae
 4756+background = #1e1e1e
 4757+foreground = #f7f6ec
 4758+cursor-color = #edcf4f
 4759+cursor-text = #343935
 4760+selection-background = #175877
 4761+selection-foreground = #f7f6ec
 4762diff --git a/ghostty-themes/Jellybeans b/ghostty-themes/Jellybeans
 4763new file mode 100644
 4764index 0000000000000000000000000000000000000000..bf4690b55e0256431328ce4fd08d962e1d29c66f
 4765--- /dev/null
 4766+++ b/ghostty-themes/Jellybeans
 4767@@ -0,0 +1,22 @@
 4768+palette = 0=#929292
 4769+palette = 1=#e27373
 4770+palette = 2=#94b979
 4771+palette = 3=#ffba7b
 4772+palette = 4=#97bedc
 4773+palette = 5=#e1c0fa
 4774+palette = 6=#00988e
 4775+palette = 7=#dedede
 4776+palette = 8=#bdbdbd
 4777+palette = 9=#ffa1a1
 4778+palette = 10=#bddeab
 4779+palette = 11=#ffdca0
 4780+palette = 12=#b1d8f6
 4781+palette = 13=#fbdaff
 4782+palette = 14=#1ab2a8
 4783+palette = 15=#ffffff
 4784+background = #121212
 4785+foreground = #dedede
 4786+cursor-color = #ffa560
 4787+cursor-text = #ffffff
 4788+selection-background = #474e91
 4789+selection-foreground = #f4f4f4
 4790diff --git a/ghostty-themes/JetBrains Darcula b/ghostty-themes/JetBrains Darcula
 4791new file mode 100644
 4792index 0000000000000000000000000000000000000000..c1754424bdd45e0bbf52956c03f593d8641c46c5
 4793--- /dev/null
 4794+++ b/ghostty-themes/JetBrains Darcula
 4795@@ -0,0 +1,22 @@
 4796+palette = 0=#000000
 4797+palette = 1=#fa5355
 4798+palette = 2=#126e00
 4799+palette = 3=#c2c300
 4800+palette = 4=#4581eb
 4801+palette = 5=#fa54ff
 4802+palette = 6=#33c2c1
 4803+palette = 7=#adadad
 4804+palette = 8=#555555
 4805+palette = 9=#fb7172
 4806+palette = 10=#67ff4f
 4807+palette = 11=#ffff00
 4808+palette = 12=#6d9df1
 4809+palette = 13=#fb82ff
 4810+palette = 14=#60d3d1
 4811+palette = 15=#eeeeee
 4812+background = #202020
 4813+foreground = #adadad
 4814+cursor-color = #ffffff
 4815+cursor-text = #000000
 4816+selection-background = #1a3272
 4817+selection-foreground = #adadad
 4818diff --git a/ghostty-themes/Kanagawa Dragon b/ghostty-themes/Kanagawa Dragon
 4819new file mode 100644
 4820index 0000000000000000000000000000000000000000..14b3ea40860efafbac7c37a604a5685a186a7f52
 4821--- /dev/null
 4822+++ b/ghostty-themes/Kanagawa Dragon
 4823@@ -0,0 +1,22 @@
 4824+palette = 0=#0d0c0c
 4825+palette = 1=#c4746e
 4826+palette = 2=#8a9a7b
 4827+palette = 3=#c4b28a
 4828+palette = 4=#8ba4b0
 4829+palette = 5=#a292a3
 4830+palette = 6=#8ea4a2
 4831+palette = 7=#c8c093
 4832+palette = 8=#a6a69c
 4833+palette = 9=#e46876
 4834+palette = 10=#87a987
 4835+palette = 11=#e6c384
 4836+palette = 12=#7fb4ca
 4837+palette = 13=#938aa9
 4838+palette = 14=#7aa89f
 4839+palette = 15=#c5c9c5
 4840+background = #181616
 4841+foreground = #c8c093
 4842+cursor-color = #c5c9c5
 4843+cursor-text = #1d202f
 4844+selection-background = #223249
 4845+selection-foreground = #c5c9c5
 4846diff --git a/ghostty-themes/Kanagawa Wave b/ghostty-themes/Kanagawa Wave
 4847new file mode 100644
 4848index 0000000000000000000000000000000000000000..b14328dd81e7172ca095c83131b736ebdf9f5925
 4849--- /dev/null
 4850+++ b/ghostty-themes/Kanagawa Wave
 4851@@ -0,0 +1,22 @@
 4852+palette = 0=#090618
 4853+palette = 1=#c34043
 4854+palette = 2=#76946a
 4855+palette = 3=#c0a36e
 4856+palette = 4=#7e9cd8
 4857+palette = 5=#957fb8
 4858+palette = 6=#6a9589
 4859+palette = 7=#c8c093
 4860+palette = 8=#727169
 4861+palette = 9=#e82424
 4862+palette = 10=#98bb6c
 4863+palette = 11=#e6c384
 4864+palette = 12=#7fb4ca
 4865+palette = 13=#938aa9
 4866+palette = 14=#7aa89f
 4867+palette = 15=#dcd7ba
 4868+background = #1f1f28
 4869+foreground = #dcd7ba
 4870+cursor-color = #c8c093
 4871+cursor-text = #1d202f
 4872+selection-background = #2d4f67
 4873+selection-foreground = #c8c093
 4874diff --git a/ghostty-themes/Kibble b/ghostty-themes/Kibble
 4875new file mode 100644
 4876index 0000000000000000000000000000000000000000..b499d79267169640a0c26cf814896845dde79da4
 4877--- /dev/null
 4878+++ b/ghostty-themes/Kibble
 4879@@ -0,0 +1,22 @@
 4880+palette = 0=#4d4d4d
 4881+palette = 1=#c70031
 4882+palette = 2=#29cf13
 4883+palette = 3=#d8e30e
 4884+palette = 4=#3449d1
 4885+palette = 5=#8400ff
 4886+palette = 6=#0798ab
 4887+palette = 7=#e2d1e3
 4888+palette = 8=#5a5a5a
 4889+palette = 9=#f01578
 4890+palette = 10=#6ce05c
 4891+palette = 11=#f3f79e
 4892+palette = 12=#97a4f7
 4893+palette = 13=#c495f0
 4894+palette = 14=#68f2e0
 4895+palette = 15=#ffffff
 4896+background = #0e100a
 4897+foreground = #f7f7f7
 4898+cursor-color = #9fda9c
 4899+cursor-text = #000000
 4900+selection-background = #9ba787
 4901+selection-foreground = #000000
 4902diff --git a/ghostty-themes/Kolorit b/ghostty-themes/Kolorit
 4903new file mode 100644
 4904index 0000000000000000000000000000000000000000..b90d42f12f5eab639f2eafc244ab6f47bdd5ca3e
 4905--- /dev/null
 4906+++ b/ghostty-themes/Kolorit
 4907@@ -0,0 +1,22 @@
 4908+palette = 0=#1d1a1e
 4909+palette = 1=#ff5b82
 4910+palette = 2=#47d7a1
 4911+palette = 3=#e8e562
 4912+palette = 4=#5db4ee
 4913+palette = 5=#da6cda
 4914+palette = 6=#57e9eb
 4915+palette = 7=#ededed
 4916+palette = 8=#1d1a1e
 4917+palette = 9=#ff5b82
 4918+palette = 10=#47d7a1
 4919+palette = 11=#e8e562
 4920+palette = 12=#5db4ee
 4921+palette = 13=#da6cda
 4922+palette = 14=#57e9eb
 4923+palette = 15=#ededed
 4924+background = #1d1a1e
 4925+foreground = #efecec
 4926+cursor-color = #c7c7c7
 4927+cursor-text = #ffffff
 4928+selection-background = #e1925c
 4929+selection-foreground = #1d1a1e
 4930diff --git a/ghostty-themes/Konsolas b/ghostty-themes/Konsolas
 4931new file mode 100644
 4932index 0000000000000000000000000000000000000000..0c58f2fb98da5cbf7c6925c13d39ad4ba6e1e69d
 4933--- /dev/null
 4934+++ b/ghostty-themes/Konsolas
 4935@@ -0,0 +1,22 @@
 4936+palette = 0=#000000
 4937+palette = 1=#aa1717
 4938+palette = 2=#18b218
 4939+palette = 3=#ebae1f
 4940+palette = 4=#2323a5
 4941+palette = 5=#ad1edc
 4942+palette = 6=#42b0c8
 4943+palette = 7=#c8c1c1
 4944+palette = 8=#7b716e
 4945+palette = 9=#ff4141
 4946+palette = 10=#5fff5f
 4947+palette = 11=#ffff55
 4948+palette = 12=#4b4bff
 4949+palette = 13=#ff54ff
 4950+palette = 14=#69ffff
 4951+palette = 15=#ffffff
 4952+background = #060606
 4953+foreground = #c8c1c1
 4954+cursor-color = #c8c1c1
 4955+cursor-text = #060606
 4956+selection-background = #060606
 4957+selection-foreground = #c8c1c1
 4958diff --git a/ghostty-themes/Lab Fox b/ghostty-themes/Lab Fox
 4959new file mode 100644
 4960index 0000000000000000000000000000000000000000..77e0e8d828f49e0a56298effb37b688aaa0e5a79
 4961--- /dev/null
 4962+++ b/ghostty-themes/Lab Fox
 4963@@ -0,0 +1,22 @@
 4964+palette = 0=#2e2e2e
 4965+palette = 1=#fc6d26
 4966+palette = 2=#3eb383
 4967+palette = 3=#fca121
 4968+palette = 4=#db3b21
 4969+palette = 5=#380d75
 4970+palette = 6=#6e49cb
 4971+palette = 7=#ffffff
 4972+palette = 8=#464646
 4973+palette = 9=#ff6517
 4974+palette = 10=#53eaa8
 4975+palette = 11=#fca013
 4976+palette = 12=#db501f
 4977+palette = 13=#441090
 4978+palette = 14=#7d53e7
 4979+palette = 15=#ffffff
 4980+background = #2e2e2e
 4981+foreground = #ffffff
 4982+cursor-color = #7f7f7f
 4983+cursor-text = #7f7f7f
 4984+selection-background = #cb392e
 4985+selection-foreground = #ffffff
 4986diff --git a/ghostty-themes/Laser b/ghostty-themes/Laser
 4987new file mode 100644
 4988index 0000000000000000000000000000000000000000..86559629096b0f492a6e9b24ac29cebad1c01145
 4989--- /dev/null
 4990+++ b/ghostty-themes/Laser
 4991@@ -0,0 +1,22 @@
 4992+palette = 0=#626262
 4993+palette = 1=#ff8373
 4994+palette = 2=#b4fb73
 4995+palette = 3=#09b4bd
 4996+palette = 4=#fed300
 4997+palette = 5=#ff90fe
 4998+palette = 6=#d1d1fe
 4999+palette = 7=#f1f1f1
 5000+palette = 8=#8f8f8f
 5001+palette = 9=#ffc4be
 5002+palette = 10=#d6fcba
 5003+palette = 11=#fffed5
 5004+palette = 12=#f92883
 5005+palette = 13=#ffb2fe
 5006+palette = 14=#e6e7fe
 5007+palette = 15=#ffffff
 5008+background = #030d18
 5009+foreground = #f106e3
 5010+cursor-color = #00ff9c
 5011+cursor-text = #ffffff
 5012+selection-background = #2e206a
 5013+selection-foreground = #f4f4f4
 5014diff --git a/ghostty-themes/Later This Evening b/ghostty-themes/Later This Evening
 5015new file mode 100644
 5016index 0000000000000000000000000000000000000000..d26ae6feefb350fd388314e8e7cd32b8562341c1
 5017--- /dev/null
 5018+++ b/ghostty-themes/Later This Evening
 5019@@ -0,0 +1,22 @@
 5020+palette = 0=#2b2b2b
 5021+palette = 1=#d45a60
 5022+palette = 2=#afba67
 5023+palette = 3=#e5d289
 5024+palette = 4=#a0bad6
 5025+palette = 5=#c092d6
 5026+palette = 6=#91bfb7
 5027+palette = 7=#3c3d3d
 5028+palette = 8=#454747
 5029+palette = 9=#d3232f
 5030+palette = 10=#aabb39
 5031+palette = 11=#e5be39
 5032+palette = 12=#6699d6
 5033+palette = 13=#ab53d6
 5034+palette = 14=#5fc0ae
 5035+palette = 15=#c1c2c2
 5036+background = #222222
 5037+foreground = #959595
 5038+cursor-color = #424242
 5039+cursor-text = #959595
 5040+selection-background = #424242
 5041+selection-foreground = #959595
 5042diff --git a/ghostty-themes/Lavandula b/ghostty-themes/Lavandula
 5043new file mode 100644
 5044index 0000000000000000000000000000000000000000..783beb548de1c37f6d2157354a456159f81411db
 5045--- /dev/null
 5046+++ b/ghostty-themes/Lavandula
 5047@@ -0,0 +1,22 @@
 5048+palette = 0=#230046
 5049+palette = 1=#7d1625
 5050+palette = 2=#337e6f
 5051+palette = 3=#7f6f49
 5052+palette = 4=#4f4a7f
 5053+palette = 5=#5a3f7f
 5054+palette = 6=#58777f
 5055+palette = 7=#736e7d
 5056+palette = 8=#372d46
 5057+palette = 9=#e05167
 5058+palette = 10=#52e0c4
 5059+palette = 11=#e0c386
 5060+palette = 12=#8e87e0
 5061+palette = 13=#a776e0
 5062+palette = 14=#9ad4e0
 5063+palette = 15=#8c91fa
 5064+background = #050014
 5065+foreground = #736e7d
 5066+cursor-color = #8c91fa
 5067+cursor-text = #050014
 5068+selection-background = #37323c
 5069+selection-foreground = #8c91fa
 5070diff --git a/ghostty-themes/LiquidCarbon b/ghostty-themes/LiquidCarbon
 5071new file mode 100644
 5072index 0000000000000000000000000000000000000000..1c396bcfe5f6366bbcbf15b52dbaf3bbb70f8c93
 5073--- /dev/null
 5074+++ b/ghostty-themes/LiquidCarbon
 5075@@ -0,0 +1,22 @@
 5076+palette = 0=#000000
 5077+palette = 1=#ff3030
 5078+palette = 2=#559a70
 5079+palette = 3=#ccac00
 5080+palette = 4=#0099cc
 5081+palette = 5=#cc69c8
 5082+palette = 6=#7ac4cc
 5083+palette = 7=#bccccc
 5084+palette = 8=#000000
 5085+palette = 9=#ff3030
 5086+palette = 10=#559a70
 5087+palette = 11=#ccac00
 5088+palette = 12=#0099cc
 5089+palette = 13=#cc69c8
 5090+palette = 14=#7ac4cc
 5091+palette = 15=#bccccc
 5092+background = #303030
 5093+foreground = #afc2c2
 5094+cursor-color = #ffffff
 5095+cursor-text = #000000
 5096+selection-background = #7dbeff
 5097+selection-foreground = #000000
 5098diff --git a/ghostty-themes/LiquidCarbonTransparent b/ghostty-themes/LiquidCarbonTransparent
 5099new file mode 100644
 5100index 0000000000000000000000000000000000000000..9429a2413e683b90ced65968bb379b7b1cf461f3
 5101--- /dev/null
 5102+++ b/ghostty-themes/LiquidCarbonTransparent
 5103@@ -0,0 +1,22 @@
 5104+palette = 0=#000000
 5105+palette = 1=#ff3030
 5106+palette = 2=#559a70
 5107+palette = 3=#ccac00
 5108+palette = 4=#0099cc
 5109+palette = 5=#cc69c8
 5110+palette = 6=#7ac4cc
 5111+palette = 7=#bccccc
 5112+palette = 8=#000000
 5113+palette = 9=#ff3030
 5114+palette = 10=#559a70
 5115+palette = 11=#ccac00
 5116+palette = 12=#0099cc
 5117+palette = 13=#cc69c8
 5118+palette = 14=#7ac4cc
 5119+palette = 15=#bccccc
 5120+background = #000000
 5121+foreground = #afc2c2
 5122+cursor-color = #ffffff
 5123+cursor-text = #000000
 5124+selection-background = #7dbeff
 5125+selection-foreground = #000000
 5126diff --git a/ghostty-themes/LiquidCarbonTransparentInverse b/ghostty-themes/LiquidCarbonTransparentInverse
 5127new file mode 100644
 5128index 0000000000000000000000000000000000000000..b8db40bf121d35538de5b98dc8391bbcc73f2d40
 5129--- /dev/null
 5130+++ b/ghostty-themes/LiquidCarbonTransparentInverse
 5131@@ -0,0 +1,22 @@
 5132+palette = 0=#bccccd
 5133+palette = 1=#ff3030
 5134+palette = 2=#559a70
 5135+palette = 3=#ccac00
 5136+palette = 4=#0099cc
 5137+palette = 5=#cc69c8
 5138+palette = 6=#7ac4cc
 5139+palette = 7=#000000
 5140+palette = 8=#ffffff
 5141+palette = 9=#ff3030
 5142+palette = 10=#559a70
 5143+palette = 11=#ccac00
 5144+palette = 12=#0099cc
 5145+palette = 13=#cc69c8
 5146+palette = 14=#7ac4cc
 5147+palette = 15=#000000
 5148+background = #000000
 5149+foreground = #afc2c2
 5150+cursor-color = #ffffff
 5151+cursor-text = #000000
 5152+selection-background = #7dbeff
 5153+selection-foreground = #000000
 5154diff --git a/ghostty-themes/Man Page b/ghostty-themes/Man Page
 5155new file mode 100644
 5156index 0000000000000000000000000000000000000000..522cee0b4e42a1ba6d6b6db70899e9e30df60126
 5157--- /dev/null
 5158+++ b/ghostty-themes/Man Page
 5159@@ -0,0 +1,22 @@
 5160+palette = 0=#000000
 5161+palette = 1=#cc0000
 5162+palette = 2=#00a600
 5163+palette = 3=#999900
 5164+palette = 4=#0000b2
 5165+palette = 5=#b200b2
 5166+palette = 6=#00a6b2
 5167+palette = 7=#cccccc
 5168+palette = 8=#666666
 5169+palette = 9=#e50000
 5170+palette = 10=#00d900
 5171+palette = 11=#e5e500
 5172+palette = 12=#0000ff
 5173+palette = 13=#e500e5
 5174+palette = 14=#00e5e5
 5175+palette = 15=#e5e5e5
 5176+background = #fef49c
 5177+foreground = #000000
 5178+cursor-color = #7f7f7f
 5179+cursor-text = #000000
 5180+selection-background = #a4c9cd
 5181+selection-foreground = #000000
 5182diff --git a/ghostty-themes/Mariana b/ghostty-themes/Mariana
 5183new file mode 100644
 5184index 0000000000000000000000000000000000000000..c2b28b12ba4398927e5bb4c1468f6d962af47f1f
 5185--- /dev/null
 5186+++ b/ghostty-themes/Mariana
 5187@@ -0,0 +1,22 @@
 5188+palette = 0=#000000
 5189+palette = 1=#ec5f66
 5190+palette = 2=#99c794
 5191+palette = 3=#f9ae58
 5192+palette = 4=#6699cc
 5193+palette = 5=#c695c6
 5194+palette = 6=#5fb4b4
 5195+palette = 7=#f7f7f7
 5196+palette = 8=#333333
 5197+palette = 9=#f97b58
 5198+palette = 10=#acd1a8
 5199+palette = 11=#fac761
 5200+palette = 12=#85add6
 5201+palette = 13=#d8b6d8
 5202+palette = 14=#82c4c4
 5203+palette = 15=#ffffff
 5204+background = #343d46
 5205+foreground = #d8dee9
 5206+cursor-color = #fcbb6a
 5207+cursor-text = #ffffff
 5208+selection-background = #4e5a65
 5209+selection-foreground = #d8dee9
 5210diff --git a/ghostty-themes/Material b/ghostty-themes/Material
 5211new file mode 100644
 5212index 0000000000000000000000000000000000000000..25875543fb38ff6e09fc774e3dcd57a07fcc6d25
 5213--- /dev/null
 5214+++ b/ghostty-themes/Material
 5215@@ -0,0 +1,22 @@
 5216+palette = 0=#212121
 5217+palette = 1=#b7141f
 5218+palette = 2=#457b24
 5219+palette = 3=#f6981e
 5220+palette = 4=#134eb2
 5221+palette = 5=#560088
 5222+palette = 6=#0e717c
 5223+palette = 7=#efefef
 5224+palette = 8=#424242
 5225+palette = 9=#e83b3f
 5226+palette = 10=#7aba3a
 5227+palette = 11=#ffea2e
 5228+palette = 12=#54a4f3
 5229+palette = 13=#aa4dbc
 5230+palette = 14=#26bbd1
 5231+palette = 15=#d9d9d9
 5232+background = #eaeaea
 5233+foreground = #232322
 5234+cursor-color = #16afca
 5235+cursor-text = #2e2e2d
 5236+selection-background = #c2c2c2
 5237+selection-foreground = #4e4e4e
 5238diff --git a/ghostty-themes/MaterialDark b/ghostty-themes/MaterialDark
 5239new file mode 100644
 5240index 0000000000000000000000000000000000000000..84525a1559f89e4da27f36e682ce308b805b7837
 5241--- /dev/null
 5242+++ b/ghostty-themes/MaterialDark
 5243@@ -0,0 +1,22 @@
 5244+palette = 0=#212121
 5245+palette = 1=#b7141f
 5246+palette = 2=#457b24
 5247+palette = 3=#f6981e
 5248+palette = 4=#134eb2
 5249+palette = 5=#560088
 5250+palette = 6=#0e717c
 5251+palette = 7=#efefef
 5252+palette = 8=#424242
 5253+palette = 9=#e83b3f
 5254+palette = 10=#7aba3a
 5255+palette = 11=#ffea2e
 5256+palette = 12=#54a4f3
 5257+palette = 13=#aa4dbc
 5258+palette = 14=#26bbd1
 5259+palette = 15=#d9d9d9
 5260+background = #232322
 5261+foreground = #e5e5e5
 5262+cursor-color = #16afca
 5263+cursor-text = #dfdfdf
 5264+selection-background = #dfdfdf
 5265+selection-foreground = #3d3d3d
 5266diff --git a/ghostty-themes/MaterialDarker b/ghostty-themes/MaterialDarker
 5267new file mode 100644
 5268index 0000000000000000000000000000000000000000..57883b57d9ece4b5cbfaf75fbf038b469f52dcf9
 5269--- /dev/null
 5270+++ b/ghostty-themes/MaterialDarker
 5271@@ -0,0 +1,22 @@
 5272+palette = 0=#000000
 5273+palette = 1=#ff5370
 5274+palette = 2=#c3e88d
 5275+palette = 3=#ffcb6b
 5276+palette = 4=#82aaff
 5277+palette = 5=#c792ea
 5278+palette = 6=#89ddff
 5279+palette = 7=#ffffff
 5280+palette = 8=#545454
 5281+palette = 9=#ff5370
 5282+palette = 10=#c3e88d
 5283+palette = 11=#ffcb6b
 5284+palette = 12=#82aaff
 5285+palette = 13=#c792ea
 5286+palette = 14=#89ddff
 5287+palette = 15=#ffffff
 5288+background = #212121
 5289+foreground = #eeffff
 5290+cursor-color = #ffffff
 5291+cursor-text = #ffffff
 5292+selection-background = #eeffff
 5293+selection-foreground = #545454
 5294diff --git a/ghostty-themes/MaterialDesignColors b/ghostty-themes/MaterialDesignColors
 5295new file mode 100644
 5296index 0000000000000000000000000000000000000000..03c9609fd98f6e161b23c1b4c44dd32bcbe563e7
 5297--- /dev/null
 5298+++ b/ghostty-themes/MaterialDesignColors
 5299@@ -0,0 +1,22 @@
 5300+palette = 0=#435b67
 5301+palette = 1=#fc3841
 5302+palette = 2=#5cf19e
 5303+palette = 3=#fed032
 5304+palette = 4=#37b6ff
 5305+palette = 5=#fc226e
 5306+palette = 6=#59ffd1
 5307+palette = 7=#ffffff
 5308+palette = 8=#a1b0b8
 5309+palette = 9=#fc746d
 5310+palette = 10=#adf7be
 5311+palette = 11=#fee16c
 5312+palette = 12=#70cfff
 5313+palette = 13=#fc669b
 5314+palette = 14=#9affe6
 5315+palette = 15=#ffffff
 5316+background = #1d262a
 5317+foreground = #e7ebed
 5318+cursor-color = #eaeaea
 5319+cursor-text = #000000
 5320+selection-background = #4e6a78
 5321+selection-foreground = #e7ebed
 5322diff --git a/ghostty-themes/MaterialOcean b/ghostty-themes/MaterialOcean
 5323new file mode 100644
 5324index 0000000000000000000000000000000000000000..e32257929977c3bde56421fddb53678566a12b7e
 5325--- /dev/null
 5326+++ b/ghostty-themes/MaterialOcean
 5327@@ -0,0 +1,22 @@
 5328+palette = 0=#546e7a
 5329+palette = 1=#ff5370
 5330+palette = 2=#c3e88d
 5331+palette = 3=#ffcb6b
 5332+palette = 4=#82aaff
 5333+palette = 5=#c792ea
 5334+palette = 6=#89ddff
 5335+palette = 7=#ffffff
 5336+palette = 8=#546e7a
 5337+palette = 9=#ff5370
 5338+palette = 10=#c3e88d
 5339+palette = 11=#ffcb6b
 5340+palette = 12=#82aaff
 5341+palette = 13=#c792ea
 5342+palette = 14=#89ddff
 5343+palette = 15=#ffffff
 5344+background = #0f111a
 5345+foreground = #8f93a2
 5346+cursor-color = #ffcc00
 5347+cursor-text = #0f111a
 5348+selection-background = #1f2233
 5349+selection-foreground = #8f93a2
 5350diff --git a/ghostty-themes/Mathias b/ghostty-themes/Mathias
 5351new file mode 100644
 5352index 0000000000000000000000000000000000000000..74c8836d5f2dc6728330f66ab9641fb4457c212c
 5353--- /dev/null
 5354+++ b/ghostty-themes/Mathias
 5355@@ -0,0 +1,22 @@
 5356+palette = 0=#000000
 5357+palette = 1=#e52222
 5358+palette = 2=#a6e32d
 5359+palette = 3=#fc951e
 5360+palette = 4=#c48dff
 5361+palette = 5=#fa2573
 5362+palette = 6=#67d9f0
 5363+palette = 7=#f2f2f2
 5364+palette = 8=#555555
 5365+palette = 9=#ff5555
 5366+palette = 10=#55ff55
 5367+palette = 11=#ffff55
 5368+palette = 12=#5555ff
 5369+palette = 13=#ff55ff
 5370+palette = 14=#55ffff
 5371+palette = 15=#ffffff
 5372+background = #000000
 5373+foreground = #bbbbbb
 5374+cursor-color = #bbbbbb
 5375+cursor-text = #ffffff
 5376+selection-background = #555555
 5377+selection-foreground = #f2f2f2
 5378diff --git a/ghostty-themes/Medallion b/ghostty-themes/Medallion
 5379new file mode 100644
 5380index 0000000000000000000000000000000000000000..71d5442f05e34c022365a153198ba097228352d7
 5381--- /dev/null
 5382+++ b/ghostty-themes/Medallion
 5383@@ -0,0 +1,22 @@
 5384+palette = 0=#000000
 5385+palette = 1=#b64c00
 5386+palette = 2=#7c8b16
 5387+palette = 3=#d3bd26
 5388+palette = 4=#616bb0
 5389+palette = 5=#8c5a90
 5390+palette = 6=#916c25
 5391+palette = 7=#cac29a
 5392+palette = 8=#5e5219
 5393+palette = 9=#ff9149
 5394+palette = 10=#b2ca3b
 5395+palette = 11=#ffe54a
 5396+palette = 12=#acb8ff
 5397+palette = 13=#ffa0ff
 5398+palette = 14=#ffbc51
 5399+palette = 15=#fed698
 5400+background = #1d1908
 5401+foreground = #cac296
 5402+cursor-color = #d3ba30
 5403+cursor-text = #d2bc3d
 5404+selection-background = #626dac
 5405+selection-foreground = #cac29a
 5406diff --git a/ghostty-themes/Melange_dark b/ghostty-themes/Melange_dark
 5407new file mode 100644
 5408index 0000000000000000000000000000000000000000..d1a73e8ba44ac97293a859b9dff284e874571e70
 5409--- /dev/null
 5410+++ b/ghostty-themes/Melange_dark
 5411@@ -0,0 +1,22 @@
 5412+palette = 0=#34302c
 5413+palette = 1=#bd8183
 5414+palette = 2=#78997a
 5415+palette = 3=#e49b5d
 5416+palette = 4=#7f91b2
 5417+palette = 5=#b380b0
 5418+palette = 6=#7b9695
 5419+palette = 7=#c1a78e
 5420+palette = 8=#867462
 5421+palette = 9=#d47766
 5422+palette = 10=#85b695
 5423+palette = 11=#ebc06d
 5424+palette = 12=#a3a9ce
 5425+palette = 13=#cf9bc2
 5426+palette = 14=#89b3b6
 5427+palette = 15=#ece1d7
 5428+background = #292522
 5429+foreground = #ece1d7
 5430+cursor-color = #ece1d7
 5431+cursor-text = #292522
 5432+selection-background = #ece1d7
 5433+selection-foreground = #403a36
 5434diff --git a/ghostty-themes/Melange_light b/ghostty-themes/Melange_light
 5435new file mode 100644
 5436index 0000000000000000000000000000000000000000..f83d41cbd1aa5cec4f84ca1bf37cf89a93ee3949
 5437--- /dev/null
 5438+++ b/ghostty-themes/Melange_light
 5439@@ -0,0 +1,22 @@
 5440+palette = 0=#e9e1db
 5441+palette = 1=#c77b8b
 5442+palette = 2=#6e9b72
 5443+palette = 3=#bc5c00
 5444+palette = 4=#7892bd
 5445+palette = 5=#be79bb
 5446+palette = 6=#739797
 5447+palette = 7=#7d6658
 5448+palette = 8=#a98a78
 5449+palette = 9=#bf0021
 5450+palette = 10=#3a684a
 5451+palette = 11=#a06d00
 5452+palette = 12=#465aa4
 5453+palette = 13=#904180
 5454+palette = 14=#3d6568
 5455+palette = 15=#54433a
 5456+background = #f1f1f1
 5457+foreground = #54433a
 5458+cursor-color = #54433a
 5459+cursor-text = #f1f1f1
 5460+selection-background = #54433a
 5461+selection-foreground = #d9d3ce
 5462diff --git a/ghostty-themes/Mellifluous b/ghostty-themes/Mellifluous
 5463new file mode 100644
 5464index 0000000000000000000000000000000000000000..81d526039625a1ae8fa5c08f74c243301b8d0e75
 5465--- /dev/null
 5466+++ b/ghostty-themes/Mellifluous
 5467@@ -0,0 +1,22 @@
 5468+palette = 0=#1a1a1a
 5469+palette = 1=#d29393
 5470+palette = 2=#b3b393
 5471+palette = 3=#cbaa89
 5472+palette = 4=#a8a1be
 5473+palette = 5=#b39fb0
 5474+palette = 6=#c0af8c
 5475+palette = 7=#dadada
 5476+palette = 8=#5b5b5b
 5477+palette = 9=#c95954
 5478+palette = 10=#828040
 5479+palette = 11=#a6794c
 5480+palette = 12=#5a6599
 5481+palette = 13=#9c6995
 5482+palette = 14=#74a39e
 5483+palette = 15=#ffffff
 5484+background = #1a1a1a
 5485+foreground = #dadada
 5486+cursor-color = #bfad9e
 5487+cursor-text = #1a1a1a
 5488+selection-background = #2d2d2d
 5489+selection-foreground = #c0af8c
 5490diff --git a/ghostty-themes/Mirage b/ghostty-themes/Mirage
 5491new file mode 100644
 5492index 0000000000000000000000000000000000000000..a9fc77b1b37eec0ee96a457cc69ba5087088c414
 5493--- /dev/null
 5494+++ b/ghostty-themes/Mirage
 5495@@ -0,0 +1,22 @@
 5496+palette = 0=#011627
 5497+palette = 1=#ff9999
 5498+palette = 2=#85cc95
 5499+palette = 3=#ffd700
 5500+palette = 4=#7fb5ff
 5501+palette = 5=#ddb3ff
 5502+palette = 6=#21c7a8
 5503+palette = 7=#ffffff
 5504+palette = 8=#575656
 5505+palette = 9=#ff9999
 5506+palette = 10=#85cc95
 5507+palette = 11=#ffd700
 5508+palette = 12=#7fb5ff
 5509+palette = 13=#ddb3ff
 5510+palette = 14=#85cc95
 5511+palette = 15=#ffffff
 5512+background = #1b2738
 5513+foreground = #a6b2c0
 5514+cursor-color = #ddb3ff
 5515+cursor-text = #ffffff
 5516+selection-background = #273951
 5517+selection-foreground = #d3dbe5
 5518diff --git a/ghostty-themes/Misterioso b/ghostty-themes/Misterioso
 5519new file mode 100644
 5520index 0000000000000000000000000000000000000000..6d43ff2acdf63c51374c34a4d653e65106e34d8f
 5521--- /dev/null
 5522+++ b/ghostty-themes/Misterioso
 5523@@ -0,0 +1,22 @@
 5524+palette = 0=#000000
 5525+palette = 1=#ff4242
 5526+palette = 2=#74af68
 5527+palette = 3=#ffad29
 5528+palette = 4=#338f86
 5529+palette = 5=#9414e6
 5530+palette = 6=#23d7d7
 5531+palette = 7=#e1e1e0
 5532+palette = 8=#555555
 5533+palette = 9=#ff3242
 5534+palette = 10=#74cd68
 5535+palette = 11=#ffb929
 5536+palette = 12=#23d7d7
 5537+palette = 13=#ff37ff
 5538+palette = 14=#00ede1
 5539+palette = 15=#ffffff
 5540+background = #2d3743
 5541+foreground = #e1e1e0
 5542+cursor-color = #000000
 5543+cursor-text = #ffffff
 5544+selection-background = #2d37ff
 5545+selection-foreground = #000000
 5546diff --git a/ghostty-themes/Molokai b/ghostty-themes/Molokai
 5547new file mode 100644
 5548index 0000000000000000000000000000000000000000..6c065d26f7609d19974db2acd07d8ab19fbc8211
 5549--- /dev/null
 5550+++ b/ghostty-themes/Molokai
 5551@@ -0,0 +1,22 @@
 5552+palette = 0=#121212
 5553+palette = 1=#fa2573
 5554+palette = 2=#98e123
 5555+palette = 3=#dfd460
 5556+palette = 4=#1080d0
 5557+palette = 5=#8700ff
 5558+palette = 6=#43a8d0
 5559+palette = 7=#bbbbbb
 5560+palette = 8=#555555
 5561+palette = 9=#f6669d
 5562+palette = 10=#b1e05f
 5563+palette = 11=#fff26d
 5564+palette = 12=#00afff
 5565+palette = 13=#af87ff
 5566+palette = 14=#51ceff
 5567+palette = 15=#ffffff
 5568+background = #121212
 5569+foreground = #bbbbbb
 5570+cursor-color = #bbbbbb
 5571+cursor-text = #ffffff
 5572+selection-background = #b5d5ff
 5573+selection-foreground = #000000
 5574diff --git a/ghostty-themes/MonaLisa b/ghostty-themes/MonaLisa
 5575new file mode 100644
 5576index 0000000000000000000000000000000000000000..48adc1f1ea0c53d1335bcd9b4c5226128a987ade
 5577--- /dev/null
 5578+++ b/ghostty-themes/MonaLisa
 5579@@ -0,0 +1,22 @@
 5580+palette = 0=#351b0e
 5581+palette = 1=#9b291c
 5582+palette = 2=#636232
 5583+palette = 3=#c36e28
 5584+palette = 4=#515c5d
 5585+palette = 5=#9b1d29
 5586+palette = 6=#588056
 5587+palette = 7=#f7d75c
 5588+palette = 8=#874228
 5589+palette = 9=#ff4331
 5590+palette = 10=#b4b264
 5591+palette = 11=#ff9566
 5592+palette = 12=#9eb2b4
 5593+palette = 13=#ff5b6a
 5594+palette = 14=#8acd8f
 5595+palette = 15=#ffe598
 5596+background = #120b0d
 5597+foreground = #f7d66a
 5598+cursor-color = #c46c32
 5599+cursor-text = #120b0d
 5600+selection-background = #f7d66a
 5601+selection-foreground = #120b0d
 5602diff --git a/ghostty-themes/Monokai Classic b/ghostty-themes/Monokai Classic
 5603new file mode 100644
 5604index 0000000000000000000000000000000000000000..bfde9fe0281c05ecfc1b2e1d99554acb99951220
 5605--- /dev/null
 5606+++ b/ghostty-themes/Monokai Classic
 5607@@ -0,0 +1,22 @@
 5608+palette = 0=#272822
 5609+palette = 1=#f92672
 5610+palette = 2=#a6e22e
 5611+palette = 3=#e6db74
 5612+palette = 4=#fd971f
 5613+palette = 5=#ae81ff
 5614+palette = 6=#66d9ef
 5615+palette = 7=#fdfff1
 5616+palette = 8=#6e7066
 5617+palette = 9=#f92672
 5618+palette = 10=#a6e22e
 5619+palette = 11=#e6db74
 5620+palette = 12=#fd971f
 5621+palette = 13=#ae81ff
 5622+palette = 14=#66d9ef
 5623+palette = 15=#fdfff1
 5624+background = #272822
 5625+foreground = #fdfff1
 5626+cursor-color = #c0c1b5
 5627+cursor-text = #c0c1b5
 5628+selection-background = #57584f
 5629+selection-foreground = #fdfff1
 5630diff --git a/ghostty-themes/Monokai Pro b/ghostty-themes/Monokai Pro
 5631new file mode 100644
 5632index 0000000000000000000000000000000000000000..e223c848596649b0d1cc42774df6de5c0fe56aef
 5633--- /dev/null
 5634+++ b/ghostty-themes/Monokai Pro
 5635@@ -0,0 +1,22 @@
 5636+palette = 0=#2d2a2e
 5637+palette = 1=#ff6188
 5638+palette = 2=#a9dc76
 5639+palette = 3=#ffd866
 5640+palette = 4=#fc9867
 5641+palette = 5=#ab9df2
 5642+palette = 6=#78dce8
 5643+palette = 7=#fcfcfa
 5644+palette = 8=#727072
 5645+palette = 9=#ff6188
 5646+palette = 10=#a9dc76
 5647+palette = 11=#ffd866
 5648+palette = 12=#fc9867
 5649+palette = 13=#ab9df2
 5650+palette = 14=#78dce8
 5651+palette = 15=#fcfcfa
 5652+background = #2d2a2e
 5653+foreground = #fcfcfa
 5654+cursor-color = #c1c0c0
 5655+cursor-text = #c1c0c0
 5656+selection-background = #5b595c
 5657+selection-foreground = #fcfcfa
 5658diff --git a/ghostty-themes/Monokai Pro Light b/ghostty-themes/Monokai Pro Light
 5659new file mode 100644
 5660index 0000000000000000000000000000000000000000..8949196b557b51bc49d66a74a551f81270d1e335
 5661--- /dev/null
 5662+++ b/ghostty-themes/Monokai Pro Light
 5663@@ -0,0 +1,22 @@
 5664+palette = 0=#faf4f2
 5665+palette = 1=#e14775
 5666+palette = 2=#269d69
 5667+palette = 3=#cc7a0a
 5668+palette = 4=#e16032
 5669+palette = 5=#7058be
 5670+palette = 6=#1c8ca8
 5671+palette = 7=#29242a
 5672+palette = 8=#a59fa0
 5673+palette = 9=#e14775
 5674+palette = 10=#269d69
 5675+palette = 11=#cc7a0a
 5676+palette = 12=#e16032
 5677+palette = 13=#7058be
 5678+palette = 14=#1c8ca8
 5679+palette = 15=#29242a
 5680+background = #faf4f2
 5681+foreground = #29242a
 5682+cursor-color = #706b6e
 5683+cursor-text = #706b6e
 5684+selection-background = #bfb9ba
 5685+selection-foreground = #29242a
 5686diff --git a/ghostty-themes/Monokai Pro Light Sun b/ghostty-themes/Monokai Pro Light Sun
 5687new file mode 100644
 5688index 0000000000000000000000000000000000000000..6aaa382e7ed70dd3514aeb6e4168c925747187a8
 5689--- /dev/null
 5690+++ b/ghostty-themes/Monokai Pro Light Sun
 5691@@ -0,0 +1,22 @@
 5692+palette = 0=#f8efe7
 5693+palette = 1=#ce4770
 5694+palette = 2=#218871
 5695+palette = 3=#b16803
 5696+palette = 4=#d4572b
 5697+palette = 5=#6851a2
 5698+palette = 6=#2473b6
 5699+palette = 7=#2c232e
 5700+palette = 8=#a59c9c
 5701+palette = 9=#ce4770
 5702+palette = 10=#218871
 5703+palette = 11=#b16803
 5704+palette = 12=#d4572b
 5705+palette = 13=#6851a2
 5706+palette = 14=#2473b6
 5707+palette = 15=#2c232e
 5708+background = #f8efe7
 5709+foreground = #2c232e
 5710+cursor-color = #72696d
 5711+cursor-text = #72696d
 5712+selection-background = #beb5b3
 5713+selection-foreground = #2c232e
 5714diff --git a/ghostty-themes/Monokai Pro Machine b/ghostty-themes/Monokai Pro Machine
 5715new file mode 100644
 5716index 0000000000000000000000000000000000000000..e386985895a2a12241b5fa111bb99fe9eb26629c
 5717--- /dev/null
 5718+++ b/ghostty-themes/Monokai Pro Machine
 5719@@ -0,0 +1,22 @@
 5720+palette = 0=#273136
 5721+palette = 1=#ff6d7e
 5722+palette = 2=#a2e57b
 5723+palette = 3=#ffed72
 5724+palette = 4=#ffb270
 5725+palette = 5=#baa0f8
 5726+palette = 6=#7cd5f1
 5727+palette = 7=#f2fffc
 5728+palette = 8=#6b7678
 5729+palette = 9=#ff6d7e
 5730+palette = 10=#a2e57b
 5731+palette = 11=#ffed72
 5732+palette = 12=#ffb270
 5733+palette = 13=#baa0f8
 5734+palette = 14=#7cd5f1
 5735+palette = 15=#f2fffc
 5736+background = #273136
 5737+foreground = #f2fffc
 5738+cursor-color = #b8c4c3
 5739+cursor-text = #b8c4c3
 5740+selection-background = #545f62
 5741+selection-foreground = #f2fffc
 5742diff --git a/ghostty-themes/Monokai Pro Octagon b/ghostty-themes/Monokai Pro Octagon
 5743new file mode 100644
 5744index 0000000000000000000000000000000000000000..bc3c66615fe77df257bc86a27fa3060489ef1c5c
 5745--- /dev/null
 5746+++ b/ghostty-themes/Monokai Pro Octagon
 5747@@ -0,0 +1,22 @@
 5748+palette = 0=#282a3a
 5749+palette = 1=#ff657a
 5750+palette = 2=#bad761
 5751+palette = 3=#ffd76d
 5752+palette = 4=#ff9b5e
 5753+palette = 5=#c39ac9
 5754+palette = 6=#9cd1bb
 5755+palette = 7=#eaf2f1
 5756+palette = 8=#696d77
 5757+palette = 9=#ff657a
 5758+palette = 10=#bad761
 5759+palette = 11=#ffd76d
 5760+palette = 12=#ff9b5e
 5761+palette = 13=#c39ac9
 5762+palette = 14=#9cd1bb
 5763+palette = 15=#eaf2f1
 5764+background = #282a3a
 5765+foreground = #eaf2f1
 5766+cursor-color = #b2b9bd
 5767+cursor-text = #b2b9bd
 5768+selection-background = #535763
 5769+selection-foreground = #eaf2f1
 5770diff --git a/ghostty-themes/Monokai Pro Ristretto b/ghostty-themes/Monokai Pro Ristretto
 5771new file mode 100644
 5772index 0000000000000000000000000000000000000000..35d899ef38a07a7ceb8e3b4a2db5413d174cfdc2
 5773--- /dev/null
 5774+++ b/ghostty-themes/Monokai Pro Ristretto
 5775@@ -0,0 +1,22 @@
 5776+palette = 0=#2c2525
 5777+palette = 1=#fd6883
 5778+palette = 2=#adda78
 5779+palette = 3=#f9cc6c
 5780+palette = 4=#f38d70
 5781+palette = 5=#a8a9eb
 5782+palette = 6=#85dacc
 5783+palette = 7=#fff1f3
 5784+palette = 8=#72696a
 5785+palette = 9=#fd6883
 5786+palette = 10=#adda78
 5787+palette = 11=#f9cc6c
 5788+palette = 12=#f38d70
 5789+palette = 13=#a8a9eb
 5790+palette = 14=#85dacc
 5791+palette = 15=#fff1f3
 5792+background = #2c2525
 5793+foreground = #fff1f3
 5794+cursor-color = #c3b7b8
 5795+cursor-text = #c3b7b8
 5796+selection-background = #5b5353
 5797+selection-foreground = #fff1f3
 5798diff --git a/ghostty-themes/Monokai Pro Spectrum b/ghostty-themes/Monokai Pro Spectrum
 5799new file mode 100644
 5800index 0000000000000000000000000000000000000000..c163ef09ca1b9a979ff56da1367f8762c84ca5bf
 5801--- /dev/null
 5802+++ b/ghostty-themes/Monokai Pro Spectrum
 5803@@ -0,0 +1,22 @@
 5804+palette = 0=#222222
 5805+palette = 1=#fc618d
 5806+palette = 2=#7bd88f
 5807+palette = 3=#fce566
 5808+palette = 4=#fd9353
 5809+palette = 5=#948ae3
 5810+palette = 6=#5ad4e6
 5811+palette = 7=#f7f1ff
 5812+palette = 8=#69676c
 5813+palette = 9=#fc618d
 5814+palette = 10=#7bd88f
 5815+palette = 11=#fce566
 5816+palette = 12=#fd9353
 5817+palette = 13=#948ae3
 5818+palette = 14=#5ad4e6
 5819+palette = 15=#f7f1ff
 5820+background = #222222
 5821+foreground = #f7f1ff
 5822+cursor-color = #bab6c0
 5823+cursor-text = #bab6c0
 5824+selection-background = #525053
 5825+selection-foreground = #f7f1ff
 5826diff --git a/ghostty-themes/Monokai Remastered b/ghostty-themes/Monokai Remastered
 5827new file mode 100644
 5828index 0000000000000000000000000000000000000000..b7fb269977c2c8d7b30ca14161aea56ba690b218
 5829--- /dev/null
 5830+++ b/ghostty-themes/Monokai Remastered
 5831@@ -0,0 +1,22 @@
 5832+palette = 0=#1a1a1a
 5833+palette = 1=#f4005f
 5834+palette = 2=#98e024
 5835+palette = 3=#fd971f
 5836+palette = 4=#9d65ff
 5837+palette = 5=#f4005f
 5838+palette = 6=#58d1eb
 5839+palette = 7=#c4c5b5
 5840+palette = 8=#625e4c
 5841+palette = 9=#f4005f
 5842+palette = 10=#98e024
 5843+palette = 11=#e0d561
 5844+palette = 12=#9d65ff
 5845+palette = 13=#f4005f
 5846+palette = 14=#58d1eb
 5847+palette = 15=#f6f6ef
 5848+background = #0c0c0c
 5849+foreground = #d9d9d9
 5850+cursor-color = #fc971f
 5851+cursor-text = #000000
 5852+selection-background = #343434
 5853+selection-foreground = #ffffff
 5854diff --git a/ghostty-themes/Monokai Soda b/ghostty-themes/Monokai Soda
 5855new file mode 100644
 5856index 0000000000000000000000000000000000000000..ad336d5085709ff63c90840ad63dce0b50066920
 5857--- /dev/null
 5858+++ b/ghostty-themes/Monokai Soda
 5859@@ -0,0 +1,22 @@
 5860+palette = 0=#1a1a1a
 5861+palette = 1=#f4005f
 5862+palette = 2=#98e024
 5863+palette = 3=#fa8419
 5864+palette = 4=#9d65ff
 5865+palette = 5=#f4005f
 5866+palette = 6=#58d1eb
 5867+palette = 7=#c4c5b5
 5868+palette = 8=#625e4c
 5869+palette = 9=#f4005f
 5870+palette = 10=#98e024
 5871+palette = 11=#e0d561
 5872+palette = 12=#9d65ff
 5873+palette = 13=#f4005f
 5874+palette = 14=#58d1eb
 5875+palette = 15=#f6f6ef
 5876+background = #1a1a1a
 5877+foreground = #c4c5b5
 5878+cursor-color = #f6f7ec
 5879+cursor-text = #c4c5b5
 5880+selection-background = #343434
 5881+selection-foreground = #c4c5b5
 5882diff --git a/ghostty-themes/Monokai Vivid b/ghostty-themes/Monokai Vivid
 5883new file mode 100644
 5884index 0000000000000000000000000000000000000000..eea3b29844eb08aed3f9a1fecb96a25e21641af6
 5885--- /dev/null
 5886+++ b/ghostty-themes/Monokai Vivid
 5887@@ -0,0 +1,22 @@
 5888+palette = 0=#121212
 5889+palette = 1=#fa2934
 5890+palette = 2=#98e123
 5891+palette = 3=#fff30a
 5892+palette = 4=#0443ff
 5893+palette = 5=#f800f8
 5894+palette = 6=#01b6ed
 5895+palette = 7=#ffffff
 5896+palette = 8=#838383
 5897+palette = 9=#f6669d
 5898+palette = 10=#b1e05f
 5899+palette = 11=#fff26d
 5900+palette = 12=#0443ff
 5901+palette = 13=#f200f6
 5902+palette = 14=#51ceff
 5903+palette = 15=#ffffff
 5904+background = #121212
 5905+foreground = #f9f9f9
 5906+cursor-color = #fb0007
 5907+cursor-text = #ea0009
 5908+selection-background = #ffffff
 5909+selection-foreground = #000000
 5910diff --git a/ghostty-themes/N0tch2k b/ghostty-themes/N0tch2k
 5911new file mode 100644
 5912index 0000000000000000000000000000000000000000..53883e0f8e5370fea49d06c274b9d3726cec4b29
 5913--- /dev/null
 5914+++ b/ghostty-themes/N0tch2k
 5915@@ -0,0 +1,22 @@
 5916+palette = 0=#383838
 5917+palette = 1=#a95551
 5918+palette = 2=#666666
 5919+palette = 3=#a98051
 5920+palette = 4=#657d3e
 5921+palette = 5=#767676
 5922+palette = 6=#c9c9c9
 5923+palette = 7=#d0b8a3
 5924+palette = 8=#474747
 5925+palette = 9=#a97775
 5926+palette = 10=#8c8c8c
 5927+palette = 11=#a99175
 5928+palette = 12=#98bd5e
 5929+palette = 13=#a3a3a3
 5930+palette = 14=#dcdcdc
 5931+palette = 15=#d8c8bb
 5932+background = #222222
 5933+foreground = #a0a0a0
 5934+cursor-color = #aa9175
 5935+cursor-text = #000000
 5936+selection-background = #4d4d4d
 5937+selection-foreground = #ffffff
 5938diff --git a/ghostty-themes/Neon b/ghostty-themes/Neon
 5939new file mode 100644
 5940index 0000000000000000000000000000000000000000..ad939befa154c864bac297253c8abed305a81437
 5941--- /dev/null
 5942+++ b/ghostty-themes/Neon
 5943@@ -0,0 +1,22 @@
 5944+palette = 0=#000000
 5945+palette = 1=#ff3045
 5946+palette = 2=#5ffa74
 5947+palette = 3=#fffc7e
 5948+palette = 4=#0208cb
 5949+palette = 5=#f924e7
 5950+palette = 6=#00fffc
 5951+palette = 7=#c7c7c7
 5952+palette = 8=#686868
 5953+palette = 9=#ff5a5a
 5954+palette = 10=#75ff88
 5955+palette = 11=#fffd96
 5956+palette = 12=#3c40cb
 5957+palette = 13=#f15be5
 5958+palette = 14=#88fffe
 5959+palette = 15=#ffffff
 5960+background = #14161a
 5961+foreground = #00fffc
 5962+cursor-color = #c7c7c7
 5963+cursor-text = #ffffff
 5964+selection-background = #0013ff
 5965+selection-foreground = #08d2cf
 5966diff --git a/ghostty-themes/Neopolitan b/ghostty-themes/Neopolitan
 5967new file mode 100644
 5968index 0000000000000000000000000000000000000000..8d569bccd9fae0aabfd4be2e5564f364e1e86bcc
 5969--- /dev/null
 5970+++ b/ghostty-themes/Neopolitan
 5971@@ -0,0 +1,22 @@
 5972+palette = 0=#000000
 5973+palette = 1=#800000
 5974+palette = 2=#61ce3c
 5975+palette = 3=#fbde2d
 5976+palette = 4=#253b76
 5977+palette = 5=#ff0080
 5978+palette = 6=#8da6ce
 5979+palette = 7=#f8f8f8
 5980+palette = 8=#000000
 5981+palette = 9=#800000
 5982+palette = 10=#61ce3c
 5983+palette = 11=#fbde2d
 5984+palette = 12=#253b76
 5985+palette = 13=#ff0080
 5986+palette = 14=#8da6ce
 5987+palette = 15=#f8f8f8
 5988+background = #271f19
 5989+foreground = #ffffff
 5990+cursor-color = #ffffff
 5991+cursor-text = #ffffff
 5992+selection-background = #253b76
 5993+selection-foreground = #ffffff
 5994diff --git a/ghostty-themes/Neutron b/ghostty-themes/Neutron
 5995new file mode 100644
 5996index 0000000000000000000000000000000000000000..2da199ffca3a50c150ca9489334fe0781ee415f7
 5997--- /dev/null
 5998+++ b/ghostty-themes/Neutron
 5999@@ -0,0 +1,22 @@
 6000+palette = 0=#23252b
 6001+palette = 1=#b54036
 6002+palette = 2=#5ab977
 6003+palette = 3=#deb566
 6004+palette = 4=#6a7c93
 6005+palette = 5=#a4799d
 6006+palette = 6=#3f94a8
 6007+palette = 7=#e6e8ef
 6008+palette = 8=#23252b
 6009+palette = 9=#b54036
 6010+palette = 10=#5ab977
 6011+palette = 11=#deb566
 6012+palette = 12=#6a7c93
 6013+palette = 13=#a4799d
 6014+palette = 14=#3f94a8
 6015+palette = 15=#ebedf2
 6016+background = #1c1e22
 6017+foreground = #e6e8ef
 6018+cursor-color = #f6f7ec
 6019+cursor-text = #c4c5b5
 6020+selection-background = #2f363e
 6021+selection-foreground = #7d8fa4
 6022diff --git a/ghostty-themes/Night Owlish Light b/ghostty-themes/Night Owlish Light
 6023new file mode 100644
 6024index 0000000000000000000000000000000000000000..17aae63b8c288566a7d937c3694373e73dec2e02
 6025--- /dev/null
 6026+++ b/ghostty-themes/Night Owlish Light
 6027@@ -0,0 +1,22 @@
 6028+palette = 0=#011627
 6029+palette = 1=#d3423e
 6030+palette = 2=#2aa298
 6031+palette = 3=#daaa01
 6032+palette = 4=#4876d6
 6033+palette = 5=#403f53
 6034+palette = 6=#08916a
 6035+palette = 7=#7a8181
 6036+palette = 8=#7a8181
 6037+palette = 9=#f76e6e
 6038+palette = 10=#49d0c5
 6039+palette = 11=#dac26b
 6040+palette = 12=#5ca7e4
 6041+palette = 13=#697098
 6042+palette = 14=#00c990
 6043+palette = 15=#989fb1
 6044+background = #ffffff
 6045+foreground = #403f53
 6046+cursor-color = #403f53
 6047+cursor-text = #fbfbfb
 6048+selection-background = #f2f2f2
 6049+selection-foreground = #403f53
 6050diff --git a/ghostty-themes/NightLion v1 b/ghostty-themes/NightLion v1
 6051new file mode 100644
 6052index 0000000000000000000000000000000000000000..7eee9a74582386f3bdb2cdc083ac4bcab57cf895
 6053--- /dev/null
 6054+++ b/ghostty-themes/NightLion v1
 6055@@ -0,0 +1,22 @@
 6056+palette = 0=#4c4c4c
 6057+palette = 1=#bb0000
 6058+palette = 2=#5fde8f
 6059+palette = 3=#f3f167
 6060+palette = 4=#276bd8
 6061+palette = 5=#bb00bb
 6062+palette = 6=#00dadf
 6063+palette = 7=#bbbbbb
 6064+palette = 8=#555555
 6065+palette = 9=#ff5555
 6066+palette = 10=#55ff55
 6067+palette = 11=#ffff55
 6068+palette = 12=#5555ff
 6069+palette = 13=#ff55ff
 6070+palette = 14=#55ffff
 6071+palette = 15=#ffffff
 6072+background = #000000
 6073+foreground = #bbbbbb
 6074+cursor-color = #bbbbbb
 6075+cursor-text = #ffffff
 6076+selection-background = #b5d5ff
 6077+selection-foreground = #000000
 6078diff --git a/ghostty-themes/NightLion v2 b/ghostty-themes/NightLion v2
 6079new file mode 100644
 6080index 0000000000000000000000000000000000000000..b787d6c86897f951e4b800faf30a2e42ce8a24e7
 6081--- /dev/null
 6082+++ b/ghostty-themes/NightLion v2
 6083@@ -0,0 +1,22 @@
 6084+palette = 0=#4c4c4c
 6085+palette = 1=#bb0000
 6086+palette = 2=#04f623
 6087+palette = 3=#f3f167
 6088+palette = 4=#64d0f0
 6089+palette = 5=#ce6fdb
 6090+palette = 6=#00dadf
 6091+palette = 7=#bbbbbb
 6092+palette = 8=#555555
 6093+palette = 9=#ff5555
 6094+palette = 10=#7df71d
 6095+palette = 11=#ffff55
 6096+palette = 12=#62cbe8
 6097+palette = 13=#ff9bf5
 6098+palette = 14=#00ccd8
 6099+palette = 15=#ffffff
 6100+background = #171717
 6101+foreground = #bbbbbb
 6102+cursor-color = #bbbbbb
 6103+cursor-text = #ffffff
 6104+selection-background = #b5d5ff
 6105+selection-foreground = #000000
 6106diff --git a/ghostty-themes/Nocturnal Winter b/ghostty-themes/Nocturnal Winter
 6107new file mode 100644
 6108index 0000000000000000000000000000000000000000..c9a0e1190c86375591c229fc7839bd08d610c2ce
 6109--- /dev/null
 6110+++ b/ghostty-themes/Nocturnal Winter
 6111@@ -0,0 +1,22 @@
 6112+palette = 0=#4d4d4d
 6113+palette = 1=#f12d52
 6114+palette = 2=#09cd7e
 6115+palette = 3=#f5f17a
 6116+palette = 4=#3182e0
 6117+palette = 5=#ff2b6d
 6118+palette = 6=#09c87a
 6119+palette = 7=#fcfcfc
 6120+palette = 8=#808080
 6121+palette = 9=#f16d86
 6122+palette = 10=#0ae78d
 6123+palette = 11=#fffc67
 6124+palette = 12=#6096ff
 6125+palette = 13=#ff78a2
 6126+palette = 14=#0ae78d
 6127+palette = 15=#ffffff
 6128+background = #0d0d17
 6129+foreground = #e6e5e5
 6130+cursor-color = #e6e5e5
 6131+cursor-text = #ffffff
 6132+selection-background = #adbdd0
 6133+selection-foreground = #000000
 6134diff --git a/ghostty-themes/Novel b/ghostty-themes/Novel
 6135new file mode 100644
 6136index 0000000000000000000000000000000000000000..8b13f5860c92fc312c3f11d6b170e0a7a77b8df1
 6137--- /dev/null
 6138+++ b/ghostty-themes/Novel
 6139@@ -0,0 +1,22 @@
 6140+palette = 0=#000000
 6141+palette = 1=#cc0000
 6142+palette = 2=#009600
 6143+palette = 3=#d06b00
 6144+palette = 4=#0000cc
 6145+palette = 5=#cc00cc
 6146+palette = 6=#0087cc
 6147+palette = 7=#cccccc
 6148+palette = 8=#808080
 6149+palette = 9=#cc0000
 6150+palette = 10=#009600
 6151+palette = 11=#d06b00
 6152+palette = 12=#0000cc
 6153+palette = 13=#cc00cc
 6154+palette = 14=#0087cc
 6155+palette = 15=#ffffff
 6156+background = #dfdbc3
 6157+foreground = #3b2322
 6158+cursor-color = #73635a
 6159+cursor-text = #000000
 6160+selection-background = #a4a390
 6161+selection-foreground = #000000
 6162diff --git a/ghostty-themes/NvimDark b/ghostty-themes/NvimDark
 6163new file mode 100644
 6164index 0000000000000000000000000000000000000000..206c6db8c693147e93dbd213effc206e8c1ad03b
 6165--- /dev/null
 6166+++ b/ghostty-themes/NvimDark
 6167@@ -0,0 +1,22 @@
 6168+palette = 0=#07080d
 6169+palette = 1=#ffc0b9
 6170+palette = 2=#b3f6c0
 6171+palette = 3=#fce094
 6172+palette = 4=#a6dbff
 6173+palette = 5=#ffcaff
 6174+palette = 6=#8cf8f7
 6175+palette = 7=#eef1f8
 6176+palette = 8=#4f5258
 6177+palette = 9=#ffc0b9
 6178+palette = 10=#b3f6c0
 6179+palette = 11=#fce094
 6180+palette = 12=#a6dbff
 6181+palette = 13=#ffcaff
 6182+palette = 14=#8cf8f7
 6183+palette = 15=#eef1f8
 6184+background = #14161b
 6185+foreground = #e0e2ea
 6186+cursor-color = #9b9ea4
 6187+cursor-text = #e0e2ea
 6188+selection-background = #4f5258
 6189+selection-foreground = #e0e2ea
 6190diff --git a/ghostty-themes/NvimLight b/ghostty-themes/NvimLight
 6191new file mode 100644
 6192index 0000000000000000000000000000000000000000..e65994ad0660ad4fa5e7bca86ddbca17c302c9a6
 6193--- /dev/null
 6194+++ b/ghostty-themes/NvimLight
 6195@@ -0,0 +1,22 @@
 6196+palette = 0=#07080d
 6197+palette = 1=#590008
 6198+palette = 2=#005523
 6199+palette = 3=#6b5300
 6200+palette = 4=#004c73
 6201+palette = 5=#470045
 6202+palette = 6=#007373
 6203+palette = 7=#eef1f8
 6204+palette = 8=#4f5258
 6205+palette = 9=#590008
 6206+palette = 10=#005523
 6207+palette = 11=#6b5300
 6208+palette = 12=#004c73
 6209+palette = 13=#470045
 6210+palette = 14=#007373
 6211+palette = 15=#eef1f8
 6212+background = #e0e2ea
 6213+foreground = #14161b
 6214+cursor-color = #9b9ea4
 6215+cursor-text = #14161b
 6216+selection-background = #9b9ea4
 6217+selection-foreground = #14161b
 6218diff --git a/ghostty-themes/Obsidian b/ghostty-themes/Obsidian
 6219new file mode 100644
 6220index 0000000000000000000000000000000000000000..2c410aaa34fc015c92e80dce68179ac2be25a1b4
 6221--- /dev/null
 6222+++ b/ghostty-themes/Obsidian
 6223@@ -0,0 +1,22 @@
 6224+palette = 0=#000000
 6225+palette = 1=#a60001
 6226+palette = 2=#00bb00
 6227+palette = 3=#fecd22
 6228+palette = 4=#3a9bdb
 6229+palette = 5=#bb00bb
 6230+palette = 6=#00bbbb
 6231+palette = 7=#bbbbbb
 6232+palette = 8=#555555
 6233+palette = 9=#ff0003
 6234+palette = 10=#93c863
 6235+palette = 11=#fef874
 6236+palette = 12=#a1d7ff
 6237+palette = 13=#ff55ff
 6238+palette = 14=#55ffff
 6239+palette = 15=#ffffff
 6240+background = #283033
 6241+foreground = #cdcdcd
 6242+cursor-color = #c0cad0
 6243+cursor-text = #cdcdcd
 6244+selection-background = #3e4c4f
 6245+selection-foreground = #dfe1e2
 6246diff --git a/ghostty-themes/Ocean b/ghostty-themes/Ocean
 6247new file mode 100644
 6248index 0000000000000000000000000000000000000000..c764cd49af20d98a038064720f2d449d3d7bdb79
 6249--- /dev/null
 6250+++ b/ghostty-themes/Ocean
 6251@@ -0,0 +1,22 @@
 6252+palette = 0=#000000
 6253+palette = 1=#990000
 6254+palette = 2=#00a600
 6255+palette = 3=#999900
 6256+palette = 4=#0000b2
 6257+palette = 5=#b200b2
 6258+palette = 6=#00a6b2
 6259+palette = 7=#bfbfbf
 6260+palette = 8=#666666
 6261+palette = 9=#e50000
 6262+palette = 10=#00d900
 6263+palette = 11=#e5e500
 6264+palette = 12=#0000ff
 6265+palette = 13=#e500e5
 6266+palette = 14=#00e5e5
 6267+palette = 15=#e5e5e5
 6268+background = #224fbc
 6269+foreground = #ffffff
 6270+cursor-color = #7f7f7f
 6271+cursor-text = #ffffff
 6272+selection-background = #216dff
 6273+selection-foreground = #ffffff
 6274diff --git a/ghostty-themes/Oceanic-Next b/ghostty-themes/Oceanic-Next
 6275new file mode 100644
 6276index 0000000000000000000000000000000000000000..3a2e948ab15cd7f4d862b0a5f9c4ca687bb0bef2
 6277--- /dev/null
 6278+++ b/ghostty-themes/Oceanic-Next
 6279@@ -0,0 +1,22 @@
 6280+palette = 0=#1b2b34
 6281+palette = 1=#db686b
 6282+palette = 2=#a2c699
 6283+palette = 3=#f2ca73
 6284+palette = 4=#7198c8
 6285+palette = 5=#bd96c2
 6286+palette = 6=#74b1b2
 6287+palette = 7=#ffffff
 6288+palette = 8=#68737d
 6289+palette = 9=#db686b
 6290+palette = 10=#a2c699
 6291+palette = 11=#f2ca73
 6292+palette = 12=#7198c8
 6293+palette = 13=#bd96c2
 6294+palette = 14=#74b1b2
 6295+palette = 15=#ffffff
 6296+background = #1b2b34
 6297+foreground = #c1c5cd
 6298+cursor-color = #c1c5cd
 6299+cursor-text = #1e2b33
 6300+selection-background = #515b65
 6301+selection-foreground = #c1c5cd
 6302diff --git a/ghostty-themes/OceanicMaterial b/ghostty-themes/OceanicMaterial
 6303new file mode 100644
 6304index 0000000000000000000000000000000000000000..f5ae471f657d2264e08a36aa8722c1833dfb73ae
 6305--- /dev/null
 6306+++ b/ghostty-themes/OceanicMaterial
 6307@@ -0,0 +1,22 @@
 6308+palette = 0=#000000
 6309+palette = 1=#ee2b2a
 6310+palette = 2=#40a33f
 6311+palette = 3=#ffea2e
 6312+palette = 4=#1e80f0
 6313+palette = 5=#8800a0
 6314+palette = 6=#16afca
 6315+palette = 7=#a4a4a4
 6316+palette = 8=#777777
 6317+palette = 9=#dc5c60
 6318+palette = 10=#70be71
 6319+palette = 11=#fff163
 6320+palette = 12=#54a4f3
 6321+palette = 13=#aa4dbc
 6322+palette = 14=#42c7da
 6323+palette = 15=#ffffff
 6324+background = #1c262b
 6325+foreground = #c2c8d7
 6326+cursor-color = #b3b8c3
 6327+cursor-text = #ffffff
 6328+selection-background = #6dc2b8
 6329+selection-foreground = #c2c8d7
 6330diff --git a/ghostty-themes/Ollie b/ghostty-themes/Ollie
 6331new file mode 100644
 6332index 0000000000000000000000000000000000000000..2ee44e5863a63c14804e24ad6c8b7fa2b923f6a2
 6333--- /dev/null
 6334+++ b/ghostty-themes/Ollie
 6335@@ -0,0 +1,22 @@
 6336+palette = 0=#000000
 6337+palette = 1=#ac2e31
 6338+palette = 2=#31ac61
 6339+palette = 3=#ac4300
 6340+palette = 4=#2d57ac
 6341+palette = 5=#b08528
 6342+palette = 6=#1fa6ac
 6343+palette = 7=#8a8eac
 6344+palette = 8=#5b3725
 6345+palette = 9=#ff3d48
 6346+palette = 10=#3bff99
 6347+palette = 11=#ff5e1e
 6348+palette = 12=#4488ff
 6349+palette = 13=#ffc21d
 6350+palette = 14=#1ffaff
 6351+palette = 15=#5b6ea7
 6352+background = #222125
 6353+foreground = #8a8dae
 6354+cursor-color = #5b6ea7
 6355+cursor-text = #2a292d
 6356+selection-background = #1e3a66
 6357+selection-foreground = #8a8eac
 6358diff --git a/ghostty-themes/OneHalfDark b/ghostty-themes/OneHalfDark
 6359new file mode 100644
 6360index 0000000000000000000000000000000000000000..3d5d05e0c49dbcd44790ef585d86a8a59abd9e7b
 6361--- /dev/null
 6362+++ b/ghostty-themes/OneHalfDark
 6363@@ -0,0 +1,22 @@
 6364+palette = 0=#282c34
 6365+palette = 1=#e06c75
 6366+palette = 2=#98c379
 6367+palette = 3=#e5c07b
 6368+palette = 4=#61afef
 6369+palette = 5=#c678dd
 6370+palette = 6=#56b6c2
 6371+palette = 7=#dcdfe4
 6372+palette = 8=#282c34
 6373+palette = 9=#e06c75
 6374+palette = 10=#98c379
 6375+palette = 11=#e5c07b
 6376+palette = 12=#61afef
 6377+palette = 13=#c678dd
 6378+palette = 14=#56b6c2
 6379+palette = 15=#dcdfe4
 6380+background = #282c34
 6381+foreground = #dcdfe4
 6382+cursor-color = #a3b3cc
 6383+cursor-text = #dcdfe4
 6384+selection-background = #474e5d
 6385+selection-foreground = #dcdfe4
 6386diff --git a/ghostty-themes/OneHalfLight b/ghostty-themes/OneHalfLight
 6387new file mode 100644
 6388index 0000000000000000000000000000000000000000..96573f624854b732e8d17f2faeeaf1a62329f81a
 6389--- /dev/null
 6390+++ b/ghostty-themes/OneHalfLight
 6391@@ -0,0 +1,22 @@
 6392+palette = 0=#383a42
 6393+palette = 1=#e45649
 6394+palette = 2=#50a14f
 6395+palette = 3=#c18401
 6396+palette = 4=#0184bc
 6397+palette = 5=#a626a4
 6398+palette = 6=#0997b3
 6399+palette = 7=#fafafa
 6400+palette = 8=#4f525e
 6401+palette = 9=#e06c75
 6402+palette = 10=#98c379
 6403+palette = 11=#e5c07b
 6404+palette = 12=#61afef
 6405+palette = 13=#c678dd
 6406+palette = 14=#56b6c2
 6407+palette = 15=#ffffff
 6408+background = #fafafa
 6409+foreground = #383a42
 6410+cursor-color = #bfceff
 6411+cursor-text = #383a42
 6412+selection-background = #bfceff
 6413+selection-foreground = #383a42
 6414diff --git a/ghostty-themes/Operator Mono Dark b/ghostty-themes/Operator Mono Dark
 6415new file mode 100644
 6416index 0000000000000000000000000000000000000000..a99b3c672a6b084282194721c480e8fad41eee0d
 6417--- /dev/null
 6418+++ b/ghostty-themes/Operator Mono Dark
 6419@@ -0,0 +1,22 @@
 6420+palette = 0=#5a5a5a
 6421+palette = 1=#ca372d
 6422+palette = 2=#4d7b3a
 6423+palette = 3=#d4d697
 6424+palette = 4=#4387cf
 6425+palette = 5=#b86cb4
 6426+palette = 6=#72d5c6
 6427+palette = 7=#ced4cd
 6428+palette = 8=#9a9b99
 6429+palette = 9=#c37d62
 6430+palette = 10=#83d0a2
 6431+palette = 11=#fdfdc5
 6432+palette = 12=#89d3f6
 6433+palette = 13=#ff2c7a
 6434+palette = 14=#82eada
 6435+palette = 15=#fdfdf6
 6436+background = #191919
 6437+foreground = #c3cac2
 6438+cursor-color = #fcdc08
 6439+cursor-text = #161616
 6440+selection-background = #19273b
 6441+selection-foreground = #dde5dc
 6442diff --git a/ghostty-themes/Overnight Slumber b/ghostty-themes/Overnight Slumber
 6443new file mode 100644
 6444index 0000000000000000000000000000000000000000..8b370682901b73aa224abdf2296aa8c2702a7094
 6445--- /dev/null
 6446+++ b/ghostty-themes/Overnight Slumber
 6447@@ -0,0 +1,22 @@
 6448+palette = 0=#0a1222
 6449+palette = 1=#ffa7c4
 6450+palette = 2=#85cc95
 6451+palette = 3=#ffcb8b
 6452+palette = 4=#8dabe1
 6453+palette = 5=#c792eb
 6454+palette = 6=#78ccf0
 6455+palette = 7=#ffffff
 6456+palette = 8=#575656
 6457+palette = 9=#ffa7c4
 6458+palette = 10=#85cc95
 6459+palette = 11=#ffcb8b
 6460+palette = 12=#8dabe1
 6461+palette = 13=#c792eb
 6462+palette = 14=#ffa7c4
 6463+palette = 15=#ffffff
 6464+background = #0e1729
 6465+foreground = #ced2d6
 6466+cursor-color = #ffa7c4
 6467+cursor-text = #ffffff
 6468+selection-background = #1f2b41
 6469+selection-foreground = #ced2d6
 6470diff --git a/ghostty-themes/Oxocarbon b/ghostty-themes/Oxocarbon
 6471new file mode 100644
 6472index 0000000000000000000000000000000000000000..dd5774ae8948dc082b9cb64a7fa57cbf8361139d
 6473--- /dev/null
 6474+++ b/ghostty-themes/Oxocarbon
 6475@@ -0,0 +1,22 @@
 6476+palette = 0=#161616
 6477+palette = 1=#3ddbd9
 6478+palette = 2=#33b1ff
 6479+palette = 3=#ee5396
 6480+palette = 4=#42be65
 6481+palette = 5=#be95ff
 6482+palette = 6=#ff7eb6
 6483+palette = 7=#f2f4f8
 6484+palette = 8=#585858
 6485+palette = 9=#3ddbd9
 6486+palette = 10=#33b1ff
 6487+palette = 11=#ee5396
 6488+palette = 12=#42be65
 6489+palette = 13=#be95ff
 6490+palette = 14=#ff7eb6
 6491+palette = 15=#f2f4f8
 6492+background = #161616
 6493+foreground = #f2f4f8
 6494+cursor-color = #ffffff
 6495+cursor-text = #000000
 6496+selection-background = #393939
 6497+selection-foreground = #161616
 6498diff --git a/ghostty-themes/PaleNightHC b/ghostty-themes/PaleNightHC
 6499new file mode 100644
 6500index 0000000000000000000000000000000000000000..13127aea35fd9de960697901b0ea76c70fb11fe3
 6501--- /dev/null
 6502+++ b/ghostty-themes/PaleNightHC
 6503@@ -0,0 +1,22 @@
 6504+palette = 0=#000000
 6505+palette = 1=#f07178
 6506+palette = 2=#c3e88d
 6507+palette = 3=#ffcb6b
 6508+palette = 4=#82aaff
 6509+palette = 5=#c792ea
 6510+palette = 6=#89ddff
 6511+palette = 7=#ffffff
 6512+palette = 8=#666666
 6513+palette = 9=#f6a9ae
 6514+palette = 10=#dbf1ba
 6515+palette = 11=#ffdfa6
 6516+palette = 12=#b4ccff
 6517+palette = 13=#ddbdf2
 6518+palette = 14=#b8eaff
 6519+palette = 15=#999999
 6520+background = #3e4251
 6521+foreground = #cccccc
 6522+cursor-color = #ffcb6b
 6523+cursor-text = #323232
 6524+selection-background = #717cb4
 6525+selection-foreground = #80cbc4
 6526diff --git a/ghostty-themes/Pandora b/ghostty-themes/Pandora
 6527new file mode 100644
 6528index 0000000000000000000000000000000000000000..410cf2f76a4fb3792cf691dc0d2d6ca37688e0a9
 6529--- /dev/null
 6530+++ b/ghostty-themes/Pandora
 6531@@ -0,0 +1,22 @@
 6532+palette = 0=#000000
 6533+palette = 1=#ff4242
 6534+palette = 2=#74af68
 6535+palette = 3=#ffad29
 6536+palette = 4=#338f86
 6537+palette = 5=#9414e6
 6538+palette = 6=#23d7d7
 6539+palette = 7=#e2e2e2
 6540+palette = 8=#3f5648
 6541+palette = 9=#ff3242
 6542+palette = 10=#74cd68
 6543+palette = 11=#ffb929
 6544+palette = 12=#23d7d7
 6545+palette = 13=#ff37ff
 6546+palette = 14=#00ede1
 6547+palette = 15=#ffffff
 6548+background = #141e43
 6549+foreground = #e1e1e1
 6550+cursor-color = #43d58e
 6551+cursor-text = #ffffff
 6552+selection-background = #2d37ff
 6553+selection-foreground = #82e0ff
 6554diff --git a/ghostty-themes/Paraiso Dark b/ghostty-themes/Paraiso Dark
 6555new file mode 100644
 6556index 0000000000000000000000000000000000000000..ade873101e71bc474a0e5682b3399f5aa9a211f8
 6557--- /dev/null
 6558+++ b/ghostty-themes/Paraiso Dark
 6559@@ -0,0 +1,22 @@
 6560+palette = 0=#2f1e2e
 6561+palette = 1=#ef6155
 6562+palette = 2=#48b685
 6563+palette = 3=#fec418
 6564+palette = 4=#06b6ef
 6565+palette = 5=#815ba4
 6566+palette = 6=#5bc4bf
 6567+palette = 7=#a39e9b
 6568+palette = 8=#776e71
 6569+palette = 9=#ef6155
 6570+palette = 10=#48b685
 6571+palette = 11=#fec418
 6572+palette = 12=#06b6ef
 6573+palette = 13=#815ba4
 6574+palette = 14=#5bc4bf
 6575+palette = 15=#e7e9db
 6576+background = #2f1e2e
 6577+foreground = #a39e9b
 6578+cursor-color = #a39e9b
 6579+cursor-text = #2f1e2e
 6580+selection-background = #4f424c
 6581+selection-foreground = #a39e9b
 6582diff --git a/ghostty-themes/PaulMillr b/ghostty-themes/PaulMillr
 6583new file mode 100644
 6584index 0000000000000000000000000000000000000000..f8bbaca31d9a2d0794717477d1ae6120661245af
 6585--- /dev/null
 6586+++ b/ghostty-themes/PaulMillr
 6587@@ -0,0 +1,22 @@
 6588+palette = 0=#2a2a2a
 6589+palette = 1=#ff0000
 6590+palette = 2=#79ff0f
 6591+palette = 3=#e7bf00
 6592+palette = 4=#396bd7
 6593+palette = 5=#b449be
 6594+palette = 6=#66ccff
 6595+palette = 7=#bbbbbb
 6596+palette = 8=#666666
 6597+palette = 9=#ff0080
 6598+palette = 10=#66ff66
 6599+palette = 11=#f3d64e
 6600+palette = 12=#709aed
 6601+palette = 13=#db67e6
 6602+palette = 14=#7adff2
 6603+palette = 15=#ffffff
 6604+background = #000000
 6605+foreground = #f2f2f2
 6606+cursor-color = #4d4d4d
 6607+cursor-text = #ffffff
 6608+selection-background = #414141
 6609+selection-foreground = #ffffff
 6610diff --git a/ghostty-themes/PencilDark b/ghostty-themes/PencilDark
 6611new file mode 100644
 6612index 0000000000000000000000000000000000000000..71d37aa10e6fd215a69db19edd19edcfb6d881f7
 6613--- /dev/null
 6614+++ b/ghostty-themes/PencilDark
 6615@@ -0,0 +1,22 @@
 6616+palette = 0=#212121
 6617+palette = 1=#c30771
 6618+palette = 2=#10a778
 6619+palette = 3=#a89c14
 6620+palette = 4=#008ec4
 6621+palette = 5=#523c79
 6622+palette = 6=#20a5ba
 6623+palette = 7=#d9d9d9
 6624+palette = 8=#424242
 6625+palette = 9=#fb007a
 6626+palette = 10=#5fd7af
 6627+palette = 11=#f3e430
 6628+palette = 12=#20bbfc
 6629+palette = 13=#6855de
 6630+palette = 14=#4fb8cc
 6631+palette = 15=#f1f1f1
 6632+background = #212121
 6633+foreground = #f1f1f1
 6634+cursor-color = #20bbfc
 6635+cursor-text = #f1f1f1
 6636+selection-background = #b6d6fd
 6637+selection-foreground = #f1f1f1
 6638diff --git a/ghostty-themes/PencilLight b/ghostty-themes/PencilLight
 6639new file mode 100644
 6640index 0000000000000000000000000000000000000000..8ffa48c22f75f3ba67cdafaf86c3756eb408b8b2
 6641--- /dev/null
 6642+++ b/ghostty-themes/PencilLight
 6643@@ -0,0 +1,22 @@
 6644+palette = 0=#212121
 6645+palette = 1=#c30771
 6646+palette = 2=#10a778
 6647+palette = 3=#a89c14
 6648+palette = 4=#008ec4
 6649+palette = 5=#523c79
 6650+palette = 6=#20a5ba
 6651+palette = 7=#d9d9d9
 6652+palette = 8=#424242
 6653+palette = 9=#fb007a
 6654+palette = 10=#5fd7af
 6655+palette = 11=#f3e430
 6656+palette = 12=#20bbfc
 6657+palette = 13=#6855de
 6658+palette = 14=#4fb8cc
 6659+palette = 15=#f1f1f1
 6660+background = #f1f1f1
 6661+foreground = #424242
 6662+cursor-color = #20bbfc
 6663+cursor-text = #424242
 6664+selection-background = #b6d6fd
 6665+selection-foreground = #424242
 6666diff --git a/ghostty-themes/Peppermint b/ghostty-themes/Peppermint
 6667new file mode 100644
 6668index 0000000000000000000000000000000000000000..8c05557041223857d738945347a311eda9564557
 6669--- /dev/null
 6670+++ b/ghostty-themes/Peppermint
 6671@@ -0,0 +1,22 @@
 6672+palette = 0=#353535
 6673+palette = 1=#e74669
 6674+palette = 2=#89d287
 6675+palette = 3=#dab853
 6676+palette = 4=#449fd0
 6677+palette = 5=#da62dc
 6678+palette = 6=#65aaaf
 6679+palette = 7=#b4b4b4
 6680+palette = 8=#535353
 6681+palette = 9=#e4859b
 6682+palette = 10=#a3cca2
 6683+palette = 11=#e1e487
 6684+palette = 12=#6fbce2
 6685+palette = 13=#e586e7
 6686+palette = 14=#96dcdb
 6687+palette = 15=#dfdfdf
 6688+background = #000000
 6689+foreground = #c8c8c8
 6690+cursor-color = #bbbbbb
 6691+cursor-text = #ffffff
 6692+selection-background = #e6e6e6
 6693+selection-foreground = #000000
 6694diff --git a/ghostty-themes/Piatto Light b/ghostty-themes/Piatto Light
 6695new file mode 100644
 6696index 0000000000000000000000000000000000000000..ca578115fc8ce3649294150417655fdf6afb6040
 6697--- /dev/null
 6698+++ b/ghostty-themes/Piatto Light
 6699@@ -0,0 +1,22 @@
 6700+palette = 0=#414141
 6701+palette = 1=#b23771
 6702+palette = 2=#66781e
 6703+palette = 3=#cd6f34
 6704+palette = 4=#3c5ea8
 6705+palette = 5=#a454b2
 6706+palette = 6=#66781e
 6707+palette = 7=#ffffff
 6708+palette = 8=#3f3f3f
 6709+palette = 9=#db3365
 6710+palette = 10=#829429
 6711+palette = 11=#cd6f34
 6712+palette = 12=#3c5ea8
 6713+palette = 13=#a454b2
 6714+palette = 14=#829429
 6715+palette = 15=#f2f2f2
 6716+background = #ffffff
 6717+foreground = #414141
 6718+cursor-color = #5e77c8
 6719+cursor-text = #abbee5
 6720+selection-background = #706b4e
 6721+selection-foreground = #acbcdc
 6722diff --git a/ghostty-themes/Pnevma b/ghostty-themes/Pnevma
 6723new file mode 100644
 6724index 0000000000000000000000000000000000000000..3a59a793a30a4d8d2184fc76544a337ba624df40
 6725--- /dev/null
 6726+++ b/ghostty-themes/Pnevma
 6727@@ -0,0 +1,22 @@
 6728+palette = 0=#2f2e2d
 6729+palette = 1=#a36666
 6730+palette = 2=#90a57d
 6731+palette = 3=#d7af87
 6732+palette = 4=#7fa5bd
 6733+palette = 5=#c79ec4
 6734+palette = 6=#8adbb4
 6735+palette = 7=#d0d0d0
 6736+palette = 8=#4a4845
 6737+palette = 9=#d78787
 6738+palette = 10=#afbea2
 6739+palette = 11=#e4c9af
 6740+palette = 12=#a1bdce
 6741+palette = 13=#d7beda
 6742+palette = 14=#b1e7dd
 6743+palette = 15=#efefef
 6744+background = #1c1c1c
 6745+foreground = #d0d0d0
 6746+cursor-color = #e4c9af
 6747+cursor-text = #000000
 6748+selection-background = #4d4d4d
 6749+selection-foreground = #ffffff
 6750diff --git a/ghostty-themes/Popping and Locking b/ghostty-themes/Popping and Locking
 6751new file mode 100644
 6752index 0000000000000000000000000000000000000000..2e2eeb44e619ecb2030242aef7565e12cb1f82b8
 6753--- /dev/null
 6754+++ b/ghostty-themes/Popping and Locking
 6755@@ -0,0 +1,22 @@
 6756+palette = 0=#1d2021
 6757+palette = 1=#cc241d
 6758+palette = 2=#98971a
 6759+palette = 3=#d79921
 6760+palette = 4=#458588
 6761+palette = 5=#b16286
 6762+palette = 6=#689d6a
 6763+palette = 7=#a89984
 6764+palette = 8=#928374
 6765+palette = 9=#f42c3e
 6766+palette = 10=#b8bb26
 6767+palette = 11=#fabd2f
 6768+palette = 12=#99c6ca
 6769+palette = 13=#d3869b
 6770+palette = 14=#7ec16e
 6771+palette = 15=#ebdbb2
 6772+background = #181921
 6773+foreground = #ebdbb2
 6774+cursor-color = #c7c7c7
 6775+cursor-text = #ffffff
 6776+selection-background = #ebdbb2
 6777+selection-foreground = #928374
 6778diff --git a/ghostty-themes/Pro b/ghostty-themes/Pro
 6779new file mode 100644
 6780index 0000000000000000000000000000000000000000..014d78683b265c42e8f74b02f9eb1322ca9fa0ce
 6781--- /dev/null
 6782+++ b/ghostty-themes/Pro
 6783@@ -0,0 +1,22 @@
 6784+palette = 0=#000000
 6785+palette = 1=#990000
 6786+palette = 2=#00a600
 6787+palette = 3=#999900
 6788+palette = 4=#2009db
 6789+palette = 5=#b200b2
 6790+palette = 6=#00a6b2
 6791+palette = 7=#bfbfbf
 6792+palette = 8=#666666
 6793+palette = 9=#e50000
 6794+palette = 10=#00d900
 6795+palette = 11=#e5e500
 6796+palette = 12=#0000ff
 6797+palette = 13=#e500e5
 6798+palette = 14=#00e5e5
 6799+palette = 15=#e5e5e5
 6800+background = #000000
 6801+foreground = #f2f2f2
 6802+cursor-color = #4d4d4d
 6803+cursor-text = #ffffff
 6804+selection-background = #414141
 6805+selection-foreground = #000000
 6806diff --git a/ghostty-themes/Pro Light b/ghostty-themes/Pro Light
 6807new file mode 100644
 6808index 0000000000000000000000000000000000000000..77cbe1a34aad2ce591787dcfe6de0467459cdcc9
 6809--- /dev/null
 6810+++ b/ghostty-themes/Pro Light
 6811@@ -0,0 +1,22 @@
 6812+palette = 0=#000000
 6813+palette = 1=#e5492b
 6814+palette = 2=#50d148
 6815+palette = 3=#c6c440
 6816+palette = 4=#3b75ff
 6817+palette = 5=#ed66e8
 6818+palette = 6=#4ed2de
 6819+palette = 7=#dcdcdc
 6820+palette = 8=#9f9f9f
 6821+palette = 9=#ff6640
 6822+palette = 10=#61ef57
 6823+palette = 11=#f2f156
 6824+palette = 12=#0082ff
 6825+palette = 13=#ff7eff
 6826+palette = 14=#61f7f8
 6827+palette = 15=#f2f2f2
 6828+background = #ffffff
 6829+foreground = #191919
 6830+cursor-color = #4d4d4d
 6831+cursor-text = #f2f2f2
 6832+selection-background = #c1ddff
 6833+selection-foreground = #191919
 6834diff --git a/ghostty-themes/Purple Rain b/ghostty-themes/Purple Rain
 6835new file mode 100644
 6836index 0000000000000000000000000000000000000000..067d7354aee076899061cb79353880685108c243
 6837--- /dev/null
 6838+++ b/ghostty-themes/Purple Rain
 6839@@ -0,0 +1,22 @@
 6840+palette = 0=#000000
 6841+palette = 1=#ff260e
 6842+palette = 2=#9be205
 6843+palette = 3=#ffc400
 6844+palette = 4=#00a2fa
 6845+palette = 5=#815bb5
 6846+palette = 6=#00deef
 6847+palette = 7=#ffffff
 6848+palette = 8=#565656
 6849+palette = 9=#ff4250
 6850+palette = 10=#b8e36e
 6851+palette = 11=#ffd852
 6852+palette = 12=#00a6ff
 6853+palette = 13=#ac7bf0
 6854+palette = 14=#74fdf3
 6855+palette = 15=#ffffff
 6856+background = #21084a
 6857+foreground = #fffbf6
 6858+cursor-color = #ff271d
 6859+cursor-text = #ff271d
 6860+selection-background = #287691
 6861+selection-foreground = #ffffff
 6862diff --git a/ghostty-themes/Rapture b/ghostty-themes/Rapture
 6863new file mode 100644
 6864index 0000000000000000000000000000000000000000..958bc46c1e964e8cb05a30ac0910cd4038c84997
 6865--- /dev/null
 6866+++ b/ghostty-themes/Rapture
 6867@@ -0,0 +1,22 @@
 6868+palette = 0=#000000
 6869+palette = 1=#fc644d
 6870+palette = 2=#7afde1
 6871+palette = 3=#fff09b
 6872+palette = 4=#6c9bf5
 6873+palette = 5=#ff4fa1
 6874+palette = 6=#64e0ff
 6875+palette = 7=#c0c9e5
 6876+palette = 8=#304b66
 6877+palette = 9=#fc644d
 6878+palette = 10=#7afde1
 6879+palette = 11=#fff09b
 6880+palette = 12=#6c9bf5
 6881+palette = 13=#ff4fa1
 6882+palette = 14=#64e0ff
 6883+palette = 15=#ffffff
 6884+background = #111e2a
 6885+foreground = #c0c9e5
 6886+cursor-color = #ffffff
 6887+cursor-text = #111e2a
 6888+selection-background = #304b66
 6889+selection-foreground = #ffffff
 6890diff --git a/ghostty-themes/Raycast_Dark b/ghostty-themes/Raycast_Dark
 6891new file mode 100644
 6892index 0000000000000000000000000000000000000000..6620f98bb3809a71fa0777b64e48ddf29165961a
 6893--- /dev/null
 6894+++ b/ghostty-themes/Raycast_Dark
 6895@@ -0,0 +1,22 @@
 6896+palette = 0=#000000
 6897+palette = 1=#ff5360
 6898+palette = 2=#59d499
 6899+palette = 3=#ffc531
 6900+palette = 4=#56c2ff
 6901+palette = 5=#cf2f98
 6902+palette = 6=#52eee5
 6903+palette = 7=#ffffff
 6904+palette = 8=#000000
 6905+palette = 9=#ff6363
 6906+palette = 10=#59d499
 6907+palette = 11=#ffc531
 6908+palette = 12=#56c2ff
 6909+palette = 13=#cf2f98
 6910+palette = 14=#52eee5
 6911+palette = 15=#ffffff
 6912+background = #1a1a1a
 6913+foreground = #ffffff
 6914+cursor-color = #cccccc
 6915+cursor-text = #ffffff
 6916+selection-background = #333333
 6917+selection-foreground = #000000
 6918diff --git a/ghostty-themes/Raycast_Light b/ghostty-themes/Raycast_Light
 6919new file mode 100644
 6920index 0000000000000000000000000000000000000000..5826ae51c6e178e7195567f367f44570da5c7c3e
 6921--- /dev/null
 6922+++ b/ghostty-themes/Raycast_Light
 6923@@ -0,0 +1,22 @@
 6924+palette = 0=#000000
 6925+palette = 1=#b12424
 6926+palette = 2=#006b4f
 6927+palette = 3=#f8a300
 6928+palette = 4=#138af2
 6929+palette = 5=#9a1b6e
 6930+palette = 6=#3eb8bf
 6931+palette = 7=#ffffff
 6932+palette = 8=#000000
 6933+palette = 9=#b12424
 6934+palette = 10=#006b4f
 6935+palette = 11=#f8a300
 6936+palette = 12=#138af2
 6937+palette = 13=#9a1b6e
 6938+palette = 14=#3eb8bf
 6939+palette = 15=#ffffff
 6940+background = #ffffff
 6941+foreground = #000000
 6942+cursor-color = #000000
 6943+cursor-text = #000000
 6944+selection-background = #e5e5e5
 6945+selection-foreground = #000000
 6946diff --git a/ghostty-themes/Red Alert b/ghostty-themes/Red Alert
 6947new file mode 100644
 6948index 0000000000000000000000000000000000000000..713c00ff90d326b28cb614fde1cb552534116ba0
 6949--- /dev/null
 6950+++ b/ghostty-themes/Red Alert
 6951@@ -0,0 +1,22 @@
 6952+palette = 0=#000000
 6953+palette = 1=#d62e4e
 6954+palette = 2=#71be6b
 6955+palette = 3=#beb86b
 6956+palette = 4=#489bee
 6957+palette = 5=#e979d7
 6958+palette = 6=#6bbeb8
 6959+palette = 7=#d6d6d6
 6960+palette = 8=#262626
 6961+palette = 9=#e02553
 6962+palette = 10=#aff08c
 6963+palette = 11=#dfddb7
 6964+palette = 12=#65aaf1
 6965+palette = 13=#ddb7df
 6966+palette = 14=#b7dfdd
 6967+palette = 15=#ffffff
 6968+background = #762423
 6969+foreground = #ffffff
 6970+cursor-color = #ffffff
 6971+cursor-text = #762423
 6972+selection-background = #073642
 6973+selection-foreground = #ffffff
 6974diff --git a/ghostty-themes/Red Planet b/ghostty-themes/Red Planet
 6975new file mode 100644
 6976index 0000000000000000000000000000000000000000..d024aaa8bd2fb4262fe64108aec46e188ea8d788
 6977--- /dev/null
 6978+++ b/ghostty-themes/Red Planet
 6979@@ -0,0 +1,22 @@
 6980+palette = 0=#202020
 6981+palette = 1=#8c3432
 6982+palette = 2=#728271
 6983+palette = 3=#e8bf6a
 6984+palette = 4=#69819e
 6985+palette = 5=#896492
 6986+palette = 6=#5b8390
 6987+palette = 7=#b9aa99
 6988+palette = 8=#676767
 6989+palette = 9=#b55242
 6990+palette = 10=#869985
 6991+palette = 11=#ebeb91
 6992+palette = 12=#60827e
 6993+palette = 13=#de4974
 6994+palette = 14=#38add8
 6995+palette = 15=#d6bfb8
 6996+background = #222222
 6997+foreground = #c2b790
 6998+cursor-color = #c2b790
 6999+cursor-text = #202020
 7000+selection-background = #1b324a
 7001+selection-foreground = #bcb291
 7002diff --git a/ghostty-themes/Red Sands b/ghostty-themes/Red Sands
 7003new file mode 100644
 7004index 0000000000000000000000000000000000000000..b82b9530a6f82312bbf66071ab26b1711a7bda63
 7005--- /dev/null
 7006+++ b/ghostty-themes/Red Sands
 7007@@ -0,0 +1,22 @@
 7008+palette = 0=#000000
 7009+palette = 1=#ff3f00
 7010+palette = 2=#00bb00
 7011+palette = 3=#e7b000
 7012+palette = 4=#0072ff
 7013+palette = 5=#bb00bb
 7014+palette = 6=#00bbbb
 7015+palette = 7=#bbbbbb
 7016+palette = 8=#555555
 7017+palette = 9=#bb0000
 7018+palette = 10=#00bb00
 7019+palette = 11=#e7b000
 7020+palette = 12=#0072ae
 7021+palette = 13=#ff55ff
 7022+palette = 14=#55ffff
 7023+palette = 15=#ffffff
 7024+background = #7a251e
 7025+foreground = #d7c9a7
 7026+cursor-color = #ffffff
 7027+cursor-text = #000000
 7028+selection-background = #a4a390
 7029+selection-foreground = #000000
 7030diff --git a/ghostty-themes/Relaxed b/ghostty-themes/Relaxed
 7031new file mode 100644
 7032index 0000000000000000000000000000000000000000..1f80ff814a16ac9b8129e24f1a19723ebf96fd16
 7033--- /dev/null
 7034+++ b/ghostty-themes/Relaxed
 7035@@ -0,0 +1,22 @@
 7036+palette = 0=#151515
 7037+palette = 1=#bc5653
 7038+palette = 2=#909d63
 7039+palette = 3=#ebc17a
 7040+palette = 4=#6a8799
 7041+palette = 5=#b06698
 7042+palette = 6=#c9dfff
 7043+palette = 7=#d9d9d9
 7044+palette = 8=#636363
 7045+palette = 9=#bc5653
 7046+palette = 10=#a0ac77
 7047+palette = 11=#ebc17a
 7048+palette = 12=#7eaac7
 7049+palette = 13=#b06698
 7050+palette = 14=#acbbd0
 7051+palette = 15=#f7f7f7
 7052+background = #353a44
 7053+foreground = #d9d9d9
 7054+cursor-color = #d9d9d9
 7055+cursor-text = #1b1b1b
 7056+selection-background = #6a7985
 7057+selection-foreground = #d9d9d9
 7058diff --git a/ghostty-themes/Retro b/ghostty-themes/Retro
 7059new file mode 100644
 7060index 0000000000000000000000000000000000000000..ab6e13ccc29297461806892ea8676e38e4fdb4c6
 7061--- /dev/null
 7062+++ b/ghostty-themes/Retro
 7063@@ -0,0 +1,22 @@
 7064+palette = 0=#13a10e
 7065+palette = 1=#13a10e
 7066+palette = 2=#13a10e
 7067+palette = 3=#13a10e
 7068+palette = 4=#13a10e
 7069+palette = 5=#13a10e
 7070+palette = 6=#13a10e
 7071+palette = 7=#13a10e
 7072+palette = 8=#16ba10
 7073+palette = 9=#16ba10
 7074+palette = 10=#16ba10
 7075+palette = 11=#16ba10
 7076+palette = 12=#16ba10
 7077+palette = 13=#16ba10
 7078+palette = 14=#16ba10
 7079+palette = 15=#16ba10
 7080+background = #000000
 7081+foreground = #13a10e
 7082+cursor-color = #13a10e
 7083+cursor-text = #000000
 7084+selection-background = #ffffff
 7085+selection-foreground = #000000
 7086diff --git a/ghostty-themes/RetroLegends b/ghostty-themes/RetroLegends
 7087new file mode 100644
 7088index 0000000000000000000000000000000000000000..ac8a77cddb44ee5284c1a92dcbb0d349e48616bc
 7089--- /dev/null
 7090+++ b/ghostty-themes/RetroLegends
 7091@@ -0,0 +1,22 @@
 7092+palette = 0=#262626
 7093+palette = 1=#de5454
 7094+palette = 2=#45eb45
 7095+palette = 3=#f7bf2b
 7096+palette = 4=#4066f2
 7097+palette = 5=#bf4cf2
 7098+palette = 6=#40d9e6
 7099+palette = 7=#bfe6bf
 7100+palette = 8=#4c594c
 7101+palette = 9=#ff6666
 7102+palette = 10=#59ff59
 7103+palette = 11=#ffd933
 7104+palette = 12=#4c80ff
 7105+palette = 13=#e666ff
 7106+palette = 14=#59e6ff
 7107+palette = 15=#f2fff2
 7108+background = #0d0d0d
 7109+foreground = #45eb45
 7110+cursor-color = #45eb45
 7111+cursor-text = #0d0d0d
 7112+selection-background = #336633
 7113+selection-foreground = #f2fff2
 7114diff --git a/ghostty-themes/Rippedcasts b/ghostty-themes/Rippedcasts
 7115new file mode 100644
 7116index 0000000000000000000000000000000000000000..c6e92a716f51e2066733078db704f87e5712f7e8
 7117--- /dev/null
 7118+++ b/ghostty-themes/Rippedcasts
 7119@@ -0,0 +1,22 @@
 7120+palette = 0=#000000
 7121+palette = 1=#cdaf95
 7122+palette = 2=#a8ff60
 7123+palette = 3=#bfbb1f
 7124+palette = 4=#75a5b0
 7125+palette = 5=#ff73fd
 7126+palette = 6=#5a647e
 7127+palette = 7=#bfbfbf
 7128+palette = 8=#666666
 7129+palette = 9=#eecbad
 7130+palette = 10=#bcee68
 7131+palette = 11=#e5e500
 7132+palette = 12=#86bdc9
 7133+palette = 13=#e500e5
 7134+palette = 14=#8c9bc4
 7135+palette = 15=#e5e5e5
 7136+background = #2b2b2b
 7137+foreground = #ffffff
 7138+cursor-color = #7f7f7f
 7139+cursor-text = #ffffff
 7140+selection-background = #5a647e
 7141+selection-foreground = #f2f2f2
 7142diff --git a/ghostty-themes/Rouge 2 b/ghostty-themes/Rouge 2
 7143new file mode 100644
 7144index 0000000000000000000000000000000000000000..5df14f80c8f6e62368dc594921df738b6ea5b518
 7145--- /dev/null
 7146+++ b/ghostty-themes/Rouge 2
 7147@@ -0,0 +1,22 @@
 7148+palette = 0=#5d5d6b
 7149+palette = 1=#c6797e
 7150+palette = 2=#969e92
 7151+palette = 3=#dbcdab
 7152+palette = 4=#6e94b9
 7153+palette = 5=#4c4e78
 7154+palette = 6=#8ab6c1
 7155+palette = 7=#e8e8ea
 7156+palette = 8=#616274
 7157+palette = 9=#c6797e
 7158+palette = 10=#e6dcc4
 7159+palette = 11=#e6dcc4
 7160+palette = 12=#98b3cd
 7161+palette = 13=#8283a1
 7162+palette = 14=#abcbd3
 7163+palette = 15=#e8e8ea
 7164+background = #17182b
 7165+foreground = #a2a3aa
 7166+cursor-color = #969e92
 7167+cursor-text = #ffffff
 7168+selection-background = #5d5d6b
 7169+selection-foreground = #dfe5ee
 7170diff --git a/ghostty-themes/Royal b/ghostty-themes/Royal
 7171new file mode 100644
 7172index 0000000000000000000000000000000000000000..049aa0c3274f7b6a3dd67cefa9ff06026a2066d1
 7173--- /dev/null
 7174+++ b/ghostty-themes/Royal
 7175@@ -0,0 +1,22 @@
 7176+palette = 0=#241f2b
 7177+palette = 1=#91284c
 7178+palette = 2=#23801c
 7179+palette = 3=#b49d27
 7180+palette = 4=#6580b0
 7181+palette = 5=#674d96
 7182+palette = 6=#8aaabe
 7183+palette = 7=#524966
 7184+palette = 8=#312d3d
 7185+palette = 9=#d5356c
 7186+palette = 10=#2cd946
 7187+palette = 11=#fde83b
 7188+palette = 12=#90baf9
 7189+palette = 13=#a479e3
 7190+palette = 14=#acd4eb
 7191+palette = 15=#9e8cbd
 7192+background = #100815
 7193+foreground = #514968
 7194+cursor-color = #524966
 7195+cursor-text = #100613
 7196+selection-background = #1f1d2b
 7197+selection-foreground = #a593cd
 7198diff --git a/ghostty-themes/Ryuuko b/ghostty-themes/Ryuuko
 7199new file mode 100644
 7200index 0000000000000000000000000000000000000000..f9e9dd4f57bc1fc608df6500b39436c83d3aad54
 7201--- /dev/null
 7202+++ b/ghostty-themes/Ryuuko
 7203@@ -0,0 +1,22 @@
 7204+palette = 0=#2c3941
 7205+palette = 1=#865f5b
 7206+palette = 2=#66907d
 7207+palette = 3=#b1a990
 7208+palette = 4=#6a8e95
 7209+palette = 5=#b18a73
 7210+palette = 6=#88b2ac
 7211+palette = 7=#ececec
 7212+palette = 8=#5d7079
 7213+palette = 9=#865f5b
 7214+palette = 10=#66907d
 7215+palette = 11=#b1a990
 7216+palette = 12=#6a8e95
 7217+palette = 13=#b18a73
 7218+palette = 14=#88b2ac
 7219+palette = 15=#ececec
 7220+background = #2c3941
 7221+foreground = #ececec
 7222+cursor-color = #ececec
 7223+cursor-text = #002831
 7224+selection-background = #002831
 7225+selection-foreground = #819090
 7226diff --git a/ghostty-themes/Sakura b/ghostty-themes/Sakura
 7227new file mode 100644
 7228index 0000000000000000000000000000000000000000..c48d6418c6bb0faebb2ee080f7f2210a5e4d966f
 7229--- /dev/null
 7230+++ b/ghostty-themes/Sakura
 7231@@ -0,0 +1,22 @@
 7232+palette = 0=#000000
 7233+palette = 1=#d52370
 7234+palette = 2=#41af1a
 7235+palette = 3=#bc7053
 7236+palette = 4=#6964ab
 7237+palette = 5=#c71fbf
 7238+palette = 6=#939393
 7239+palette = 7=#998eac
 7240+palette = 8=#786d69
 7241+palette = 9=#f41d99
 7242+palette = 10=#22e529
 7243+palette = 11=#f59574
 7244+palette = 12=#9892f1
 7245+palette = 13=#e90cdd
 7246+palette = 14=#eeeeee
 7247+palette = 15=#cbb6ff
 7248+background = #18131e
 7249+foreground = #dd7bdc
 7250+cursor-color = #ff65fd
 7251+cursor-text = #24242e
 7252+selection-background = #c05cbf
 7253+selection-foreground = #24242e
 7254diff --git a/ghostty-themes/Scarlet Protocol b/ghostty-themes/Scarlet Protocol
 7255new file mode 100644
 7256index 0000000000000000000000000000000000000000..02e1c855382df27133344a593ab2f86bf32d38df
 7257--- /dev/null
 7258+++ b/ghostty-themes/Scarlet Protocol
 7259@@ -0,0 +1,22 @@
 7260+palette = 0=#101116
 7261+palette = 1=#ff0051
 7262+palette = 2=#00dc84
 7263+palette = 3=#faf945
 7264+palette = 4=#0271b6
 7265+palette = 5=#ca30c7
 7266+palette = 6=#00c5c7
 7267+palette = 7=#c7c7c7
 7268+palette = 8=#686868
 7269+palette = 9=#ff6e67
 7270+palette = 10=#5ffa68
 7271+palette = 11=#fffc67
 7272+palette = 12=#6871ff
 7273+palette = 13=#bd35ec
 7274+palette = 14=#60fdff
 7275+palette = 15=#ffffff
 7276+background = #1c153d
 7277+foreground = #e41951
 7278+cursor-color = #76ff9f
 7279+cursor-text = #ffffff
 7280+selection-background = #c1deff
 7281+selection-foreground = #000000
 7282diff --git a/ghostty-themes/SeaShells b/ghostty-themes/SeaShells
 7283new file mode 100644
 7284index 0000000000000000000000000000000000000000..0c18bdb973eab715616d082e580db833e3ff61ca
 7285--- /dev/null
 7286+++ b/ghostty-themes/SeaShells
 7287@@ -0,0 +1,22 @@
 7288+palette = 0=#17384c
 7289+palette = 1=#d15123
 7290+palette = 2=#027c9b
 7291+palette = 3=#fca02f
 7292+palette = 4=#1e4950
 7293+palette = 5=#68d4f1
 7294+palette = 6=#50a3b5
 7295+palette = 7=#deb88d
 7296+palette = 8=#434b53
 7297+palette = 9=#d48678
 7298+palette = 10=#628d98
 7299+palette = 11=#fdd39f
 7300+palette = 12=#1bbcdd
 7301+palette = 13=#bbe3ee
 7302+palette = 14=#87acb4
 7303+palette = 15=#fee4ce
 7304+background = #09141b
 7305+foreground = #deb88d
 7306+cursor-color = #fca02f
 7307+cursor-text = #08131a
 7308+selection-background = #1e4962
 7309+selection-foreground = #fee4ce
 7310diff --git a/ghostty-themes/Seafoam Pastel b/ghostty-themes/Seafoam Pastel
 7311new file mode 100644
 7312index 0000000000000000000000000000000000000000..6a271bcf2cd661146e33d0d5a4f203bb8c595dd2
 7313--- /dev/null
 7314+++ b/ghostty-themes/Seafoam Pastel
 7315@@ -0,0 +1,22 @@
 7316+palette = 0=#757575
 7317+palette = 1=#825d4d
 7318+palette = 2=#728c62
 7319+palette = 3=#ada16d
 7320+palette = 4=#4d7b82
 7321+palette = 5=#8a7267
 7322+palette = 6=#729494
 7323+palette = 7=#e0e0e0
 7324+palette = 8=#8a8a8a
 7325+palette = 9=#cf937a
 7326+palette = 10=#98d9aa
 7327+palette = 11=#fae79d
 7328+palette = 12=#7ac3cf
 7329+palette = 13=#d6b2a1
 7330+palette = 14=#ade0e0
 7331+palette = 15=#e0e0e0
 7332+background = #243435
 7333+foreground = #d4e7d4
 7334+cursor-color = #57647a
 7335+cursor-text = #323232
 7336+selection-background = #ffffff
 7337+selection-foreground = #9e8b13
 7338diff --git a/ghostty-themes/Seti b/ghostty-themes/Seti
 7339new file mode 100644
 7340index 0000000000000000000000000000000000000000..331f0caaaa3ca4b90a2d8d5699bb90c2da8dd998
 7341--- /dev/null
 7342+++ b/ghostty-themes/Seti
 7343@@ -0,0 +1,22 @@
 7344+palette = 0=#323232
 7345+palette = 1=#c22832
 7346+palette = 2=#8ec43d
 7347+palette = 3=#e0c64f
 7348+palette = 4=#43a5d5
 7349+palette = 5=#8b57b5
 7350+palette = 6=#8ec43d
 7351+palette = 7=#eeeeee
 7352+palette = 8=#323232
 7353+palette = 9=#c22832
 7354+palette = 10=#8ec43d
 7355+palette = 11=#e0c64f
 7356+palette = 12=#43a5d5
 7357+palette = 13=#8b57b5
 7358+palette = 14=#8ec43d
 7359+palette = 15=#ffffff
 7360+background = #111213
 7361+foreground = #cacecd
 7362+cursor-color = #e3bf21
 7363+cursor-text = #e0be2e
 7364+selection-background = #303233
 7365+selection-foreground = #cacecd
 7366diff --git a/ghostty-themes/Shaman b/ghostty-themes/Shaman
 7367new file mode 100644
 7368index 0000000000000000000000000000000000000000..869ae85350e59cee4c8a058ae90c35544b448cfa
 7369--- /dev/null
 7370+++ b/ghostty-themes/Shaman
 7371@@ -0,0 +1,22 @@
 7372+palette = 0=#012026
 7373+palette = 1=#b2302d
 7374+palette = 2=#00a941
 7375+palette = 3=#5e8baa
 7376+palette = 4=#449a86
 7377+palette = 5=#00599d
 7378+palette = 6=#5d7e19
 7379+palette = 7=#405555
 7380+palette = 8=#384451
 7381+palette = 9=#ff4242
 7382+palette = 10=#2aea5e
 7383+palette = 11=#8ed4fd
 7384+palette = 12=#61d5ba
 7385+palette = 13=#1298ff
 7386+palette = 14=#98d028
 7387+palette = 15=#58fbd6
 7388+background = #001015
 7389+foreground = #405555
 7390+cursor-color = #4afcd6
 7391+cursor-text = #031413
 7392+selection-background = #415555
 7393+selection-foreground = #5afad6
 7394diff --git a/ghostty-themes/Slate b/ghostty-themes/Slate
 7395new file mode 100644
 7396index 0000000000000000000000000000000000000000..822bf4c7de123f1e4583c78146e4516df7e7469e
 7397--- /dev/null
 7398+++ b/ghostty-themes/Slate
 7399@@ -0,0 +1,22 @@
 7400+palette = 0=#222222
 7401+palette = 1=#e2a8bf
 7402+palette = 2=#81d778
 7403+palette = 3=#c4c9c0
 7404+palette = 4=#264b49
 7405+palette = 5=#a481d3
 7406+palette = 6=#15ab9c
 7407+palette = 7=#02c5e0
 7408+palette = 8=#ffffff
 7409+palette = 9=#ffcdd9
 7410+palette = 10=#beffa8
 7411+palette = 11=#d0ccca
 7412+palette = 12=#7ab0d2
 7413+palette = 13=#c5a7d9
 7414+palette = 14=#8cdfe0
 7415+palette = 15=#e0e0e0
 7416+background = #222222
 7417+foreground = #35b1d2
 7418+cursor-color = #87d3c4
 7419+cursor-text = #323232
 7420+selection-background = #0f3754
 7421+selection-foreground = #2dffc0
 7422diff --git a/ghostty-themes/SleepyHollow b/ghostty-themes/SleepyHollow
 7423new file mode 100644
 7424index 0000000000000000000000000000000000000000..753d44a936cbb4c5f0b886ea90696ff40b0ded06
 7425--- /dev/null
 7426+++ b/ghostty-themes/SleepyHollow
 7427@@ -0,0 +1,22 @@
 7428+palette = 0=#572100
 7429+palette = 1=#ba3934
 7430+palette = 2=#91773f
 7431+palette = 3=#b55600
 7432+palette = 4=#5f63b4
 7433+palette = 5=#a17c7b
 7434+palette = 6=#8faea9
 7435+palette = 7=#af9a91
 7436+palette = 8=#4e4b61
 7437+palette = 9=#d9443f
 7438+palette = 10=#d6b04e
 7439+palette = 11=#f66813
 7440+palette = 12=#8086ef
 7441+palette = 13=#e2c2bb
 7442+palette = 14=#a4dce7
 7443+palette = 15=#d2c7a9
 7444+background = #121214
 7445+foreground = #af9a91
 7446+cursor-color = #af9a91
 7447+cursor-text = #391a02
 7448+selection-background = #575256
 7449+selection-foreground = #d2c7a9
 7450diff --git a/ghostty-themes/Smyck b/ghostty-themes/Smyck
 7451new file mode 100644
 7452index 0000000000000000000000000000000000000000..52cb2b31342ea953f0f30d0707aaef9cc5e305b2
 7453--- /dev/null
 7454+++ b/ghostty-themes/Smyck
 7455@@ -0,0 +1,22 @@
 7456+palette = 0=#000000
 7457+palette = 1=#b84131
 7458+palette = 2=#7da900
 7459+palette = 3=#c4a500
 7460+palette = 4=#62a3c4
 7461+palette = 5=#ba8acc
 7462+palette = 6=#207383
 7463+palette = 7=#a1a1a1
 7464+palette = 8=#7a7a7a
 7465+palette = 9=#d6837c
 7466+palette = 10=#c4f137
 7467+palette = 11=#fee14d
 7468+palette = 12=#8dcff0
 7469+palette = 13=#f79aff
 7470+palette = 14=#6ad9cf
 7471+palette = 15=#f7f7f7
 7472+background = #1b1b1b
 7473+foreground = #f7f7f7
 7474+cursor-color = #bbbbbb
 7475+cursor-text = #ffffff
 7476+selection-background = #207483
 7477+selection-foreground = #f7f7f7
 7478diff --git a/ghostty-themes/Snazzy b/ghostty-themes/Snazzy
 7479new file mode 100644
 7480index 0000000000000000000000000000000000000000..71aa8d9df1242878891b950816bdc4017b3c9bd1
 7481--- /dev/null
 7482+++ b/ghostty-themes/Snazzy
 7483@@ -0,0 +1,22 @@
 7484+palette = 0=#000000
 7485+palette = 1=#fc4346
 7486+palette = 2=#50fb7c
 7487+palette = 3=#f0fb8c
 7488+palette = 4=#49baff
 7489+palette = 5=#fc4cb4
 7490+palette = 6=#8be9fe
 7491+palette = 7=#ededec
 7492+palette = 8=#555555
 7493+palette = 9=#fc4346
 7494+palette = 10=#50fb7c
 7495+palette = 11=#f0fb8c
 7496+palette = 12=#49baff
 7497+palette = 13=#fc4cb4
 7498+palette = 14=#8be9fe
 7499+palette = 15=#ededec
 7500+background = #1e1f29
 7501+foreground = #ebece6
 7502+cursor-color = #e4e4e4
 7503+cursor-text = #f6f6f6
 7504+selection-background = #81aec6
 7505+selection-foreground = #000000
 7506diff --git a/ghostty-themes/Snazzy Soft b/ghostty-themes/Snazzy Soft
 7507new file mode 100644
 7508index 0000000000000000000000000000000000000000..61ae201a3b70e37f004ae210e3f2d9064cae7eb6
 7509--- /dev/null
 7510+++ b/ghostty-themes/Snazzy Soft
 7511@@ -0,0 +1,22 @@
 7512+palette = 0=#000000
 7513+palette = 1=#ff5c57
 7514+palette = 2=#5af78e
 7515+palette = 3=#f3f99d
 7516+palette = 4=#57c7ff
 7517+palette = 5=#ff6ac1
 7518+palette = 6=#9aedfe
 7519+palette = 7=#f1f1f0
 7520+palette = 8=#686868
 7521+palette = 9=#ff5c57
 7522+palette = 10=#5af78e
 7523+palette = 11=#f3f99d
 7524+palette = 12=#57c7ff
 7525+palette = 13=#ff6ac1
 7526+palette = 14=#9aedfe
 7527+palette = 15=#f1f1f0
 7528+background = #282a36
 7529+foreground = #eff0eb
 7530+cursor-color = #eaeaea
 7531+cursor-text = #282a36
 7532+selection-background = #92bcd0
 7533+selection-foreground = #000000
 7534diff --git a/ghostty-themes/SoftServer b/ghostty-themes/SoftServer
 7535new file mode 100644
 7536index 0000000000000000000000000000000000000000..b26328ba820a2bf4d0392febe4f57da363605e15
 7537--- /dev/null
 7538+++ b/ghostty-themes/SoftServer
 7539@@ -0,0 +1,22 @@
 7540+palette = 0=#000000
 7541+palette = 1=#a2686a
 7542+palette = 2=#9aa56a
 7543+palette = 3=#a3906a
 7544+palette = 4=#6b8fa3
 7545+palette = 5=#6a71a3
 7546+palette = 6=#6ba58f
 7547+palette = 7=#99a3a2
 7548+palette = 8=#666c6c
 7549+palette = 9=#dd5c60
 7550+palette = 10=#bfdf55
 7551+palette = 11=#deb360
 7552+palette = 12=#62b1df
 7553+palette = 13=#606edf
 7554+palette = 14=#64e39c
 7555+palette = 15=#d2e0de
 7556+background = #242626
 7557+foreground = #99a3a2
 7558+cursor-color = #d2e0de
 7559+cursor-text = #000000
 7560+selection-background = #7f8786
 7561+selection-foreground = #effffe
 7562diff --git a/ghostty-themes/Solarized Darcula b/ghostty-themes/Solarized Darcula
 7563new file mode 100644
 7564index 0000000000000000000000000000000000000000..e40d37c53ceadfa005802bfc089277a3e0a24c54
 7565--- /dev/null
 7566+++ b/ghostty-themes/Solarized Darcula
 7567@@ -0,0 +1,22 @@
 7568+palette = 0=#25292a
 7569+palette = 1=#f24840
 7570+palette = 2=#629655
 7571+palette = 3=#b68800
 7572+palette = 4=#2075c7
 7573+palette = 5=#797fd4
 7574+palette = 6=#15968d
 7575+palette = 7=#d2d8d9
 7576+palette = 8=#25292a
 7577+palette = 9=#f24840
 7578+palette = 10=#629655
 7579+palette = 11=#b68800
 7580+palette = 12=#2075c7
 7581+palette = 13=#797fd4
 7582+palette = 14=#15968d
 7583+palette = 15=#d2d8d9
 7584+background = #3d3f41
 7585+foreground = #d2d8d9
 7586+cursor-color = #708284
 7587+cursor-text = #002831
 7588+selection-background = #214283
 7589+selection-foreground = #d2d8d9
 7590diff --git a/ghostty-themes/Solarized Dark - Patched b/ghostty-themes/Solarized Dark - Patched
 7591new file mode 100644
 7592index 0000000000000000000000000000000000000000..3e73d2d02d887c6cb9c3ed66fec6b05e6ea8484f
 7593--- /dev/null
 7594+++ b/ghostty-themes/Solarized Dark - Patched
 7595@@ -0,0 +1,22 @@
 7596+palette = 0=#002831
 7597+palette = 1=#d11c24
 7598+palette = 2=#738a05
 7599+palette = 3=#a57706
 7600+palette = 4=#2176c7
 7601+palette = 5=#c61c6f
 7602+palette = 6=#259286
 7603+palette = 7=#eae3cb
 7604+palette = 8=#475b62
 7605+palette = 9=#bd3613
 7606+palette = 10=#475b62
 7607+palette = 11=#536870
 7608+palette = 12=#708284
 7609+palette = 13=#5956ba
 7610+palette = 14=#819090
 7611+palette = 15=#fcf4dc
 7612+background = #001e27
 7613+foreground = #708284
 7614+cursor-color = #708284
 7615+cursor-text = #002831
 7616+selection-background = #002831
 7617+selection-foreground = #819090
 7618diff --git a/ghostty-themes/Solarized Dark Higher Contrast b/ghostty-themes/Solarized Dark Higher Contrast
 7619new file mode 100644
 7620index 0000000000000000000000000000000000000000..6695e1682699feda108994753f16cfc7288ac73e
 7621--- /dev/null
 7622+++ b/ghostty-themes/Solarized Dark Higher Contrast
 7623@@ -0,0 +1,22 @@
 7624+palette = 0=#002831
 7625+palette = 1=#d11c24
 7626+palette = 2=#6cbe6c
 7627+palette = 3=#a57706
 7628+palette = 4=#2176c7
 7629+palette = 5=#c61c6f
 7630+palette = 6=#259286
 7631+palette = 7=#eae3cb
 7632+palette = 8=#006488
 7633+palette = 9=#f5163b
 7634+palette = 10=#51ef84
 7635+palette = 11=#b27e28
 7636+palette = 12=#178ec8
 7637+palette = 13=#e24d8e
 7638+palette = 14=#00b39e
 7639+palette = 15=#fcf4dc
 7640+background = #001e27
 7641+foreground = #9cc2c3
 7642+cursor-color = #f34b00
 7643+cursor-text = #002831
 7644+selection-background = #003748
 7645+selection-foreground = #7a8f8e
 7646diff --git a/ghostty-themes/SpaceGray b/ghostty-themes/SpaceGray
 7647new file mode 100644
 7648index 0000000000000000000000000000000000000000..4ed52c86e7b9b1fbebe84a74ded45a5e37efb1a2
 7649--- /dev/null
 7650+++ b/ghostty-themes/SpaceGray
 7651@@ -0,0 +1,22 @@
 7652+palette = 0=#000000
 7653+palette = 1=#b04b57
 7654+palette = 2=#87b379
 7655+palette = 3=#e5c179
 7656+palette = 4=#7d8fa4
 7657+palette = 5=#a47996
 7658+palette = 6=#85a7a5
 7659+palette = 7=#b3b8c3
 7660+palette = 8=#000000
 7661+palette = 9=#b04b57
 7662+palette = 10=#87b379
 7663+palette = 11=#e5c179
 7664+palette = 12=#7d8fa4
 7665+palette = 13=#a47996
 7666+palette = 14=#85a7a5
 7667+palette = 15=#ffffff
 7668+background = #20242d
 7669+foreground = #b3b8c3
 7670+cursor-color = #b3b8c3
 7671+cursor-text = #1d1f21
 7672+selection-background = #16181e
 7673+selection-foreground = #b3b8c3
 7674diff --git a/ghostty-themes/SpaceGray Bright b/ghostty-themes/SpaceGray Bright
 7675new file mode 100644
 7676index 0000000000000000000000000000000000000000..fe4e83b917687532ff1f1f5bc894360d901d278d
 7677--- /dev/null
 7678+++ b/ghostty-themes/SpaceGray Bright
 7679@@ -0,0 +1,22 @@
 7680+palette = 0=#080808
 7681+palette = 1=#bc5553
 7682+palette = 2=#a0b56c
 7683+palette = 3=#f6c987
 7684+palette = 4=#7baec1
 7685+palette = 5=#b98aae
 7686+palette = 6=#85c9b8
 7687+palette = 7=#d8d8d8
 7688+palette = 8=#626262
 7689+palette = 9=#bc5553
 7690+palette = 10=#a0b56c
 7691+palette = 11=#f6c987
 7692+palette = 12=#7baec1
 7693+palette = 13=#b98aae
 7694+palette = 14=#85c9b8
 7695+palette = 15=#f7f7f7
 7696+background = #2a2e3a
 7697+foreground = #f3f3f3
 7698+cursor-color = #c6c6c6
 7699+cursor-text = #ffffff
 7700+selection-background = #cacaca
 7701+selection-foreground = #000000
 7702diff --git a/ghostty-themes/SpaceGray Eighties b/ghostty-themes/SpaceGray Eighties
 7703new file mode 100644
 7704index 0000000000000000000000000000000000000000..9f3c50b6278c9e9716346b8b2a816c4d8894f9a8
 7705--- /dev/null
 7706+++ b/ghostty-themes/SpaceGray Eighties
 7707@@ -0,0 +1,22 @@
 7708+palette = 0=#15171c
 7709+palette = 1=#ec5f67
 7710+palette = 2=#81a764
 7711+palette = 3=#fec254
 7712+palette = 4=#5486c0
 7713+palette = 5=#bf83c1
 7714+palette = 6=#57c2c1
 7715+palette = 7=#efece7
 7716+palette = 8=#555555
 7717+palette = 9=#ff6973
 7718+palette = 10=#93d493
 7719+palette = 11=#ffd256
 7720+palette = 12=#4d84d1
 7721+palette = 13=#ff55ff
 7722+palette = 14=#83e9e4
 7723+palette = 15=#ffffff
 7724+background = #222222
 7725+foreground = #bdbaae
 7726+cursor-color = #bbbbbb
 7727+cursor-text = #ffffff
 7728+selection-background = #272e35
 7729+selection-foreground = #ffffff
 7730diff --git a/ghostty-themes/SpaceGray Eighties Dull b/ghostty-themes/SpaceGray Eighties Dull
 7731new file mode 100644
 7732index 0000000000000000000000000000000000000000..a04b55a39659990142c08e9673cf202c53fb1062
 7733--- /dev/null
 7734+++ b/ghostty-themes/SpaceGray Eighties Dull
 7735@@ -0,0 +1,22 @@
 7736+palette = 0=#15171c
 7737+palette = 1=#b24a56
 7738+palette = 2=#92b477
 7739+palette = 3=#c6735a
 7740+palette = 4=#7c8fa5
 7741+palette = 5=#a5789e
 7742+palette = 6=#80cdcb
 7743+palette = 7=#b3b8c3
 7744+palette = 8=#555555
 7745+palette = 9=#ec5f67
 7746+palette = 10=#89e986
 7747+palette = 11=#fec254
 7748+palette = 12=#5486c0
 7749+palette = 13=#bf83c1
 7750+palette = 14=#58c2c1
 7751+palette = 15=#ffffff
 7752+background = #222222
 7753+foreground = #c9c6bc
 7754+cursor-color = #bbbbbb
 7755+cursor-text = #ffffff
 7756+selection-background = #272e36
 7757+selection-foreground = #ffffff
 7758diff --git a/ghostty-themes/Spacedust b/ghostty-themes/Spacedust
 7759new file mode 100644
 7760index 0000000000000000000000000000000000000000..de3a40a91472ea1b039736aa138428b1ae64eae1
 7761--- /dev/null
 7762+++ b/ghostty-themes/Spacedust
 7763@@ -0,0 +1,22 @@
 7764+palette = 0=#6e5346
 7765+palette = 1=#e35b00
 7766+palette = 2=#5cab96
 7767+palette = 3=#e3cd7b
 7768+palette = 4=#0f548b
 7769+palette = 5=#e35b00
 7770+palette = 6=#06afc7
 7771+palette = 7=#f0f1ce
 7772+palette = 8=#684c31
 7773+palette = 9=#ff8a3a
 7774+palette = 10=#aecab8
 7775+palette = 11=#ffc878
 7776+palette = 12=#67a0ce
 7777+palette = 13=#ff8a3a
 7778+palette = 14=#83a7b4
 7779+palette = 15=#fefff1
 7780+background = #0a1e24
 7781+foreground = #ecf0c1
 7782+cursor-color = #708284
 7783+cursor-text = #002831
 7784+selection-background = #0a385c
 7785+selection-foreground = #ffffff
 7786diff --git a/ghostty-themes/Spiderman b/ghostty-themes/Spiderman
 7787new file mode 100644
 7788index 0000000000000000000000000000000000000000..fa2f78ff33744b60ff01a032af2d2051a90509ed
 7789--- /dev/null
 7790+++ b/ghostty-themes/Spiderman
 7791@@ -0,0 +1,22 @@
 7792+palette = 0=#1b1d1e
 7793+palette = 1=#e60813
 7794+palette = 2=#e22928
 7795+palette = 3=#e24756
 7796+palette = 4=#2c3fff
 7797+palette = 5=#2435db
 7798+palette = 6=#3256ff
 7799+palette = 7=#fffef6
 7800+palette = 8=#505354
 7801+palette = 9=#ff0325
 7802+palette = 10=#ff3338
 7803+palette = 11=#fe3a35
 7804+palette = 12=#1d50ff
 7805+palette = 13=#747cff
 7806+palette = 14=#6184ff
 7807+palette = 15=#fffff9
 7808+background = #1b1d1e
 7809+foreground = #e3e3e3
 7810+cursor-color = #2c3fff
 7811+cursor-text = #000000
 7812+selection-background = #070e50
 7813+selection-foreground = #f0272d
 7814diff --git a/ghostty-themes/Spring b/ghostty-themes/Spring
 7815new file mode 100644
 7816index 0000000000000000000000000000000000000000..a78b0f67078cb1e4b7a313c116bb8408d60fece0
 7817--- /dev/null
 7818+++ b/ghostty-themes/Spring
 7819@@ -0,0 +1,22 @@
 7820+palette = 0=#000000
 7821+palette = 1=#ff4d83
 7822+palette = 2=#1f8c3b
 7823+palette = 3=#1fc95b
 7824+palette = 4=#1dd3ee
 7825+palette = 5=#8959a8
 7826+palette = 6=#3e999f
 7827+palette = 7=#ffffff
 7828+palette = 8=#000000
 7829+palette = 9=#ff0021
 7830+palette = 10=#1fc231
 7831+palette = 11=#d5b807
 7832+palette = 12=#15a9fd
 7833+palette = 13=#8959a8
 7834+palette = 14=#3e999f
 7835+palette = 15=#ffffff
 7836+background = #ffffff
 7837+foreground = #4d4d4c
 7838+cursor-color = #4d4d4c
 7839+cursor-text = #ffffff
 7840+selection-background = #d6d6d6
 7841+selection-foreground = #4d4d4c
 7842diff --git a/ghostty-themes/Square b/ghostty-themes/Square
 7843new file mode 100644
 7844index 0000000000000000000000000000000000000000..95b3e5e8cfe72458bc3aa93d8ccfa630355ba06d
 7845--- /dev/null
 7846+++ b/ghostty-themes/Square
 7847@@ -0,0 +1,22 @@
 7848+palette = 0=#050505
 7849+palette = 1=#e9897c
 7850+palette = 2=#b6377d
 7851+palette = 3=#ecebbe
 7852+palette = 4=#a9cdeb
 7853+palette = 5=#75507b
 7854+palette = 6=#c9caec
 7855+palette = 7=#f2f2f2
 7856+palette = 8=#141414
 7857+palette = 9=#f99286
 7858+palette = 10=#c3f786
 7859+palette = 11=#fcfbcc
 7860+palette = 12=#b6defb
 7861+palette = 13=#ad7fa8
 7862+palette = 14=#d7d9fc
 7863+palette = 15=#e2e2e2
 7864+background = #1a1a1a
 7865+foreground = #acacab
 7866+cursor-color = #fcfbcc
 7867+cursor-text = #000000
 7868+selection-background = #4d4d4d
 7869+selection-foreground = #ffffff
 7870diff --git a/ghostty-themes/Squirrelsong Dark b/ghostty-themes/Squirrelsong Dark
 7871new file mode 100644
 7872index 0000000000000000000000000000000000000000..1788d12ad856588c80151dfcdca17e04ed87e4a0
 7873--- /dev/null
 7874+++ b/ghostty-themes/Squirrelsong Dark
 7875@@ -0,0 +1,22 @@
 7876+palette = 0=#352a21
 7877+palette = 1=#ac493e
 7878+palette = 2=#558240
 7879+palette = 3=#ceb250
 7880+palette = 4=#5993c2
 7881+palette = 5=#7f61b3
 7882+palette = 6=#4f9593
 7883+palette = 7=#cfbaa5
 7884+palette = 8=#6b503c
 7885+palette = 9=#ce574a
 7886+palette = 10=#719955
 7887+palette = 11=#e2c358
 7888+palette = 12=#63a2d6
 7889+palette = 13=#9672d4
 7890+palette = 14=#72aaa8
 7891+palette = 15=#edd5be
 7892+background = #352a21
 7893+foreground = #ad9c8b
 7894+cursor-color = #ad9c8b
 7895+cursor-text = #352a21
 7896+selection-background = #574131
 7897+selection-foreground = #ad9c8b
 7898diff --git a/ghostty-themes/Sublette b/ghostty-themes/Sublette
 7899new file mode 100644
 7900index 0000000000000000000000000000000000000000..6b97b26ce981d47243f046c6305d6f4e93f82064
 7901--- /dev/null
 7902+++ b/ghostty-themes/Sublette
 7903@@ -0,0 +1,22 @@
 7904+palette = 0=#253045
 7905+palette = 1=#ee5577
 7906+palette = 2=#55ee77
 7907+palette = 3=#ffdd88
 7908+palette = 4=#5588ff
 7909+palette = 5=#ff77cc
 7910+palette = 6=#44eeee
 7911+palette = 7=#f5f5da
 7912+palette = 8=#405570
 7913+palette = 9=#ee6655
 7914+palette = 10=#99ee77
 7915+palette = 11=#ffff77
 7916+palette = 12=#77bbff
 7917+palette = 13=#aa88ff
 7918+palette = 14=#55ffbb
 7919+palette = 15=#ffffee
 7920+background = #202535
 7921+foreground = #ccced0
 7922+cursor-color = #ccced0
 7923+cursor-text = #202535
 7924+selection-background = #ccced0
 7925+selection-foreground = #202535
 7926diff --git a/ghostty-themes/Subliminal b/ghostty-themes/Subliminal
 7927new file mode 100644
 7928index 0000000000000000000000000000000000000000..982048077c6959ee74a62ea3752a0095c4c5ac51
 7929--- /dev/null
 7930+++ b/ghostty-themes/Subliminal
 7931@@ -0,0 +1,22 @@
 7932+palette = 0=#7f7f7f
 7933+palette = 1=#e15a60
 7934+palette = 2=#a9cfa4
 7935+palette = 3=#ffe2a9
 7936+palette = 4=#6699cc
 7937+palette = 5=#f1a5ab
 7938+palette = 6=#5fb3b3
 7939+palette = 7=#d4d4d4
 7940+palette = 8=#7f7f7f
 7941+palette = 9=#e15a60
 7942+palette = 10=#a9cfa4
 7943+palette = 11=#ffe2a9
 7944+palette = 12=#6699cc
 7945+palette = 13=#f1a5ab
 7946+palette = 14=#5fb3b3
 7947+palette = 15=#d4d4d4
 7948+background = #282c35
 7949+foreground = #d4d4d4
 7950+cursor-color = #c7c7c7
 7951+cursor-text = #ffffff
 7952+selection-background = #484e5b
 7953+selection-foreground = #ffffff
 7954diff --git a/ghostty-themes/Sugarplum b/ghostty-themes/Sugarplum
 7955new file mode 100644
 7956index 0000000000000000000000000000000000000000..10c990e07fedc344967a3b2710d20597cfb17ddf
 7957--- /dev/null
 7958+++ b/ghostty-themes/Sugarplum
 7959@@ -0,0 +1,22 @@
 7960+palette = 0=#111147
 7961+palette = 1=#5ca8dc
 7962+palette = 2=#53b397
 7963+palette = 3=#249a84
 7964+palette = 4=#db7ddd
 7965+palette = 5=#d0beee
 7966+palette = 6=#f9f3f9
 7967+palette = 7=#a175d4
 7968+palette = 8=#111147
 7969+palette = 9=#5cb5dc
 7970+palette = 10=#52deb5
 7971+palette = 11=#01f5c7
 7972+palette = 12=#fa5dfd
 7973+palette = 13=#c6a5fd
 7974+palette = 14=#ffffff
 7975+palette = 15=#b577fd
 7976+background = #111147
 7977+foreground = #db7ddd
 7978+cursor-color = #53b397
 7979+cursor-text = #53b397
 7980+selection-background = #5ca8dc
 7981+selection-foreground = #d0beee
 7982diff --git a/ghostty-themes/Sundried b/ghostty-themes/Sundried
 7983new file mode 100644
 7984index 0000000000000000000000000000000000000000..9e75140b47306658e07b16791b226a4aec7acb16
 7985--- /dev/null
 7986+++ b/ghostty-themes/Sundried
 7987@@ -0,0 +1,22 @@
 7988+palette = 0=#302b2a
 7989+palette = 1=#a7463d
 7990+palette = 2=#587744
 7991+palette = 3=#9d602a
 7992+palette = 4=#485b98
 7993+palette = 5=#864651
 7994+palette = 6=#9c814f
 7995+palette = 7=#c9c9c9
 7996+palette = 8=#4d4e48
 7997+palette = 9=#aa000c
 7998+palette = 10=#128c21
 7999+palette = 11=#fc6a21
 8000+palette = 12=#7999f7
 8001+palette = 13=#fd8aa1
 8002+palette = 14=#fad484
 8003+palette = 15=#ffffff
 8004+background = #1a1818
 8005+foreground = #c9c9c9
 8006+cursor-color = #ffffff
 8007+cursor-text = #191717
 8008+selection-background = #302b2a
 8009+selection-foreground = #c9c9c9
 8010diff --git a/ghostty-themes/Symfonic b/ghostty-themes/Symfonic
 8011new file mode 100644
 8012index 0000000000000000000000000000000000000000..12694f56984650a0013996bfe8091d01a01e14ed
 8013--- /dev/null
 8014+++ b/ghostty-themes/Symfonic
 8015@@ -0,0 +1,22 @@
 8016+palette = 0=#000000
 8017+palette = 1=#dc322f
 8018+palette = 2=#56db3a
 8019+palette = 3=#ff8400
 8020+palette = 4=#0084d4
 8021+palette = 5=#b729d9
 8022+palette = 6=#ccccff
 8023+palette = 7=#ffffff
 8024+palette = 8=#1b1d21
 8025+palette = 9=#dc322f
 8026+palette = 10=#56db3a
 8027+palette = 11=#ff8400
 8028+palette = 12=#0084d4
 8029+palette = 13=#b729d9
 8030+palette = 14=#ccccff
 8031+palette = 15=#ffffff
 8032+background = #000000
 8033+foreground = #ffffff
 8034+cursor-color = #dc322f
 8035+cursor-text = #ffffff
 8036+selection-background = #073642
 8037+selection-foreground = #ffffff
 8038diff --git a/ghostty-themes/SynthwaveAlpha b/ghostty-themes/SynthwaveAlpha
 8039new file mode 100644
 8040index 0000000000000000000000000000000000000000..ecd53e7d5bdca3264f0aee7cb6a1178144e15b86
 8041--- /dev/null
 8042+++ b/ghostty-themes/SynthwaveAlpha
 8043@@ -0,0 +1,22 @@
 8044+palette = 0=#241b30
 8045+palette = 1=#e60a70
 8046+palette = 2=#00986c
 8047+palette = 3=#adad3e
 8048+palette = 4=#6e29ad
 8049+palette = 5=#b300ad
 8050+palette = 6=#00b0b1
 8051+palette = 7=#b9b1bc
 8052+palette = 8=#7f7094
 8053+palette = 9=#e60a70
 8054+palette = 10=#0ae4a4
 8055+palette = 11=#f9f972
 8056+palette = 12=#aa54f9
 8057+palette = 13=#ff00f6
 8058+palette = 14=#00fbfd
 8059+palette = 15=#f2f2e3
 8060+background = #241b30
 8061+foreground = #f2f2e3
 8062+cursor-color = #f2f2e3
 8063+cursor-text = #241b30
 8064+selection-background = #6e29ad
 8065+selection-foreground = #f2f2e3
 8066diff --git a/ghostty-themes/Tango Adapted b/ghostty-themes/Tango Adapted
 8067new file mode 100644
 8068index 0000000000000000000000000000000000000000..952dd0470a762f081927a8593f10973c31af25cd
 8069--- /dev/null
 8070+++ b/ghostty-themes/Tango Adapted
 8071@@ -0,0 +1,22 @@
 8072+palette = 0=#000000
 8073+palette = 1=#ff0000
 8074+palette = 2=#59d600
 8075+palette = 3=#f0cb00
 8076+palette = 4=#00a2ff
 8077+palette = 5=#c17ecc
 8078+palette = 6=#00d0d6
 8079+palette = 7=#e6ebe1
 8080+palette = 8=#8f928b
 8081+palette = 9=#ff0013
 8082+palette = 10=#93ff00
 8083+palette = 11=#fff121
 8084+palette = 12=#88c9ff
 8085+palette = 13=#e9a7e1
 8086+palette = 14=#00feff
 8087+palette = 15=#f6f6f4
 8088+background = #ffffff
 8089+foreground = #000000
 8090+cursor-color = #000000
 8091+cursor-text = #ffffff
 8092+selection-background = #c1deff
 8093+selection-foreground = #000000
 8094diff --git a/ghostty-themes/Tango Half Adapted b/ghostty-themes/Tango Half Adapted
 8095new file mode 100644
 8096index 0000000000000000000000000000000000000000..ebdec787af15258d3fa84c989ef7e8b0f5785bc8
 8097--- /dev/null
 8098+++ b/ghostty-themes/Tango Half Adapted
 8099@@ -0,0 +1,22 @@
 8100+palette = 0=#000000
 8101+palette = 1=#ff0000
 8102+palette = 2=#4cc300
 8103+palette = 3=#e2c000
 8104+palette = 4=#008ef6
 8105+palette = 5=#a96cb3
 8106+palette = 6=#00bdc3
 8107+palette = 7=#e0e5db
 8108+palette = 8=#797d76
 8109+palette = 9=#ff0013
 8110+palette = 10=#8af600
 8111+palette = 11=#ffec00
 8112+palette = 12=#76bfff
 8113+palette = 13=#d898d1
 8114+palette = 14=#00f6fa
 8115+palette = 15=#f4f4f2
 8116+background = #ffffff
 8117+foreground = #000000
 8118+cursor-color = #000000
 8119+cursor-text = #ffffff
 8120+selection-background = #c1deff
 8121+selection-foreground = #000000
 8122diff --git a/ghostty-themes/Teerb b/ghostty-themes/Teerb
 8123new file mode 100644
 8124index 0000000000000000000000000000000000000000..fed187389a873f2535156cc1213f99e581dbfadf
 8125--- /dev/null
 8126+++ b/ghostty-themes/Teerb
 8127@@ -0,0 +1,22 @@
 8128+palette = 0=#1c1c1c
 8129+palette = 1=#d68686
 8130+palette = 2=#aed686
 8131+palette = 3=#d7af87
 8132+palette = 4=#86aed6
 8133+palette = 5=#d6aed6
 8134+palette = 6=#8adbb4
 8135+palette = 7=#d0d0d0
 8136+palette = 8=#1c1c1c
 8137+palette = 9=#d68686
 8138+palette = 10=#aed686
 8139+palette = 11=#e4c9af
 8140+palette = 12=#86aed6
 8141+palette = 13=#d6aed6
 8142+palette = 14=#b1e7dd
 8143+palette = 15=#efefef
 8144+background = #262626
 8145+foreground = #d0d0d0
 8146+cursor-color = #e4c9af
 8147+cursor-text = #000000
 8148+selection-background = #4d4d4d
 8149+selection-foreground = #ffffff
 8150diff --git a/ghostty-themes/Terminal Basic b/ghostty-themes/Terminal Basic
 8151new file mode 100644
 8152index 0000000000000000000000000000000000000000..47a347b578595d864cd374703d718db03350ccd5
 8153--- /dev/null
 8154+++ b/ghostty-themes/Terminal Basic
 8155@@ -0,0 +1,22 @@
 8156+palette = 0=#000000
 8157+palette = 1=#990000
 8158+palette = 2=#00a600
 8159+palette = 3=#999900
 8160+palette = 4=#0000b2
 8161+palette = 5=#b200b2
 8162+palette = 6=#00a6b2
 8163+palette = 7=#bfbfbf
 8164+palette = 8=#666666
 8165+palette = 9=#e50000
 8166+palette = 10=#00d900
 8167+palette = 11=#e5e500
 8168+palette = 12=#0000ff
 8169+palette = 13=#e500e5
 8170+palette = 14=#00e5e5
 8171+palette = 15=#e5e5e5
 8172+background = #ffffff
 8173+foreground = #000000
 8174+cursor-color = #7f7f7f
 8175+cursor-text = #000000
 8176+selection-background = #a4c9ff
 8177+selection-foreground = #000000
 8178diff --git a/ghostty-themes/Thayer Bright b/ghostty-themes/Thayer Bright
 8179new file mode 100644
 8180index 0000000000000000000000000000000000000000..dbf1a31de7c4f4c9df7bd103a7c9844a8239d627
 8181--- /dev/null
 8182+++ b/ghostty-themes/Thayer Bright
 8183@@ -0,0 +1,22 @@
 8184+palette = 0=#1b1d1e
 8185+palette = 1=#f92672
 8186+palette = 2=#4df840
 8187+palette = 3=#f4fd22
 8188+palette = 4=#2757d6
 8189+palette = 5=#8c54fe
 8190+palette = 6=#38c8b5
 8191+palette = 7=#ccccc6
 8192+palette = 8=#505354
 8193+palette = 9=#ff5995
 8194+palette = 10=#b6e354
 8195+palette = 11=#feed6c
 8196+palette = 12=#3f78ff
 8197+palette = 13=#9e6ffe
 8198+palette = 14=#23cfd5
 8199+palette = 15=#f8f8f2
 8200+background = #1b1d1e
 8201+foreground = #f8f8f8
 8202+cursor-color = #fc971f
 8203+cursor-text = #000000
 8204+selection-background = #4d4d4d
 8205+selection-foreground = #ffffff
 8206diff --git a/ghostty-themes/The Hulk b/ghostty-themes/The Hulk
 8207new file mode 100644
 8208index 0000000000000000000000000000000000000000..0f00610f47d197a3955289c5a33195a30c56f1be
 8209--- /dev/null
 8210+++ b/ghostty-themes/The Hulk
 8211@@ -0,0 +1,22 @@
 8212+palette = 0=#1b1d1e
 8213+palette = 1=#269d1b
 8214+palette = 2=#13ce30
 8215+palette = 3=#63e457
 8216+palette = 4=#2525f5
 8217+palette = 5=#641f74
 8218+palette = 6=#378ca9
 8219+palette = 7=#d9d8d1
 8220+palette = 8=#505354
 8221+palette = 9=#8dff2a
 8222+palette = 10=#48ff77
 8223+palette = 11=#3afe16
 8224+palette = 12=#506b95
 8225+palette = 13=#72589d
 8226+palette = 14=#4085a6
 8227+palette = 15=#e5e6e1
 8228+background = #1b1d1e
 8229+foreground = #b5b5b5
 8230+cursor-color = #16b61b
 8231+cursor-text = #000000
 8232+selection-background = #4d504c
 8233+selection-foreground = #0b6309
 8234diff --git a/ghostty-themes/Tinacious Design (Dark) b/ghostty-themes/Tinacious Design (Dark)
 8235new file mode 100644
 8236index 0000000000000000000000000000000000000000..17bef5dcd414c9add2f5116071b6ffbaf5479dea
 8237--- /dev/null
 8238+++ b/ghostty-themes/Tinacious Design (Dark)
 8239@@ -0,0 +1,22 @@
 8240+palette = 0=#1d1d26
 8241+palette = 1=#ff3399
 8242+palette = 2=#00d364
 8243+palette = 3=#ffcc66
 8244+palette = 4=#00cbff
 8245+palette = 5=#cc66ff
 8246+palette = 6=#00ceca
 8247+palette = 7=#cbcbf0
 8248+palette = 8=#636667
 8249+palette = 9=#ff2f92
 8250+palette = 10=#00d364
 8251+palette = 11=#ffd479
 8252+palette = 12=#00cbff
 8253+palette = 13=#d783ff
 8254+palette = 14=#00d5d4
 8255+palette = 15=#d5d6f3
 8256+background = #1d1d26
 8257+foreground = #cbcbf0
 8258+cursor-color = #cbcbf0
 8259+cursor-text = #ffffff
 8260+selection-background = #ff3399
 8261+selection-foreground = #ffffff
 8262diff --git a/ghostty-themes/Tinacious Design (Light) b/ghostty-themes/Tinacious Design (Light)
 8263new file mode 100644
 8264index 0000000000000000000000000000000000000000..d26c5c2ff43290799a1136fd0934f8264e53312f
 8265--- /dev/null
 8266+++ b/ghostty-themes/Tinacious Design (Light)
 8267@@ -0,0 +1,22 @@
 8268+palette = 0=#1d1d26
 8269+palette = 1=#ff3399
 8270+palette = 2=#00d364
 8271+palette = 3=#ffcc66
 8272+palette = 4=#00cbff
 8273+palette = 5=#cc66ff
 8274+palette = 6=#00ceca
 8275+palette = 7=#cbcbf0
 8276+palette = 8=#636667
 8277+palette = 9=#ff2f92
 8278+palette = 10=#00d364
 8279+palette = 11=#ffd479
 8280+palette = 12=#00cbff
 8281+palette = 13=#d783ff
 8282+palette = 14=#00d5d4
 8283+palette = 15=#d5d6f3
 8284+background = #f8f8ff
 8285+foreground = #1d1d26
 8286+cursor-color = #cbcbf0
 8287+cursor-text = #ffffff
 8288+selection-background = #ff3399
 8289+selection-foreground = #ffffff
 8290diff --git a/ghostty-themes/Tomorrow b/ghostty-themes/Tomorrow
 8291new file mode 100644
 8292index 0000000000000000000000000000000000000000..97718f728725fdfac804e04efac85db9de56ca3d
 8293--- /dev/null
 8294+++ b/ghostty-themes/Tomorrow
 8295@@ -0,0 +1,22 @@
 8296+palette = 0=#000000
 8297+palette = 1=#c82829
 8298+palette = 2=#718c00
 8299+palette = 3=#eab700
 8300+palette = 4=#4271ae
 8301+palette = 5=#8959a8
 8302+palette = 6=#3e999f
 8303+palette = 7=#ffffff
 8304+palette = 8=#000000
 8305+palette = 9=#c82829
 8306+palette = 10=#718c00
 8307+palette = 11=#eab700
 8308+palette = 12=#4271ae
 8309+palette = 13=#8959a8
 8310+palette = 14=#3e999f
 8311+palette = 15=#ffffff
 8312+background = #ffffff
 8313+foreground = #4d4d4c
 8314+cursor-color = #4d4d4c
 8315+cursor-text = #ffffff
 8316+selection-background = #d6d6d6
 8317+selection-foreground = #4d4d4c
 8318diff --git a/ghostty-themes/Tomorrow Night b/ghostty-themes/Tomorrow Night
 8319new file mode 100644
 8320index 0000000000000000000000000000000000000000..89ae3a2f44c31be3b5d6b67f950ef35497b5c025
 8321--- /dev/null
 8322+++ b/ghostty-themes/Tomorrow Night
 8323@@ -0,0 +1,22 @@
 8324+palette = 0=#000000
 8325+palette = 1=#cc6666
 8326+palette = 2=#b5bd68
 8327+palette = 3=#f0c674
 8328+palette = 4=#81a2be
 8329+palette = 5=#b294bb
 8330+palette = 6=#8abeb7
 8331+palette = 7=#ffffff
 8332+palette = 8=#000000
 8333+palette = 9=#cc6666
 8334+palette = 10=#b5bd68
 8335+palette = 11=#f0c674
 8336+palette = 12=#81a2be
 8337+palette = 13=#b294bb
 8338+palette = 14=#8abeb7
 8339+palette = 15=#ffffff
 8340+background = #1d1f21
 8341+foreground = #c5c8c6
 8342+cursor-color = #c5c8c6
 8343+cursor-text = #1d1f21
 8344+selection-background = #373b41
 8345+selection-foreground = #c5c8c6
 8346diff --git a/ghostty-themes/Tomorrow Night Blue b/ghostty-themes/Tomorrow Night Blue
 8347new file mode 100644
 8348index 0000000000000000000000000000000000000000..2cd0559f20d2e5776cd3fd55c2b0a1b973e82dc1
 8349--- /dev/null
 8350+++ b/ghostty-themes/Tomorrow Night Blue
 8351@@ -0,0 +1,22 @@
 8352+palette = 0=#000000
 8353+palette = 1=#ff9da4
 8354+palette = 2=#d1f1a9
 8355+palette = 3=#ffeead
 8356+palette = 4=#bbdaff
 8357+palette = 5=#ebbbff
 8358+palette = 6=#99ffff
 8359+palette = 7=#ffffff
 8360+palette = 8=#000000
 8361+palette = 9=#ff9da4
 8362+palette = 10=#d1f1a9
 8363+palette = 11=#ffeead
 8364+palette = 12=#bbdaff
 8365+palette = 13=#ebbbff
 8366+palette = 14=#99ffff
 8367+palette = 15=#ffffff
 8368+background = #002451
 8369+foreground = #ffffff
 8370+cursor-color = #ffffff
 8371+cursor-text = #003f8e
 8372+selection-background = #003f8e
 8373+selection-foreground = #ffffff
 8374diff --git a/ghostty-themes/Tomorrow Night Bright b/ghostty-themes/Tomorrow Night Bright
 8375new file mode 100644
 8376index 0000000000000000000000000000000000000000..f25d28cf87ac0c73472af207de56428687282324
 8377--- /dev/null
 8378+++ b/ghostty-themes/Tomorrow Night Bright
 8379@@ -0,0 +1,22 @@
 8380+palette = 0=#000000
 8381+palette = 1=#d54e53
 8382+palette = 2=#b9ca4a
 8383+palette = 3=#e7c547
 8384+palette = 4=#7aa6da
 8385+palette = 5=#c397d8
 8386+palette = 6=#70c0b1
 8387+palette = 7=#ffffff
 8388+palette = 8=#000000
 8389+palette = 9=#d54e53
 8390+palette = 10=#b9ca4a
 8391+palette = 11=#e7c547
 8392+palette = 12=#7aa6da
 8393+palette = 13=#c397d8
 8394+palette = 14=#70c0b1
 8395+palette = 15=#ffffff
 8396+background = #000000
 8397+foreground = #eaeaea
 8398+cursor-color = #eaeaea
 8399+cursor-text = #000000
 8400+selection-background = #424242
 8401+selection-foreground = #eaeaea
 8402diff --git a/ghostty-themes/Tomorrow Night Burns b/ghostty-themes/Tomorrow Night Burns
 8403new file mode 100644
 8404index 0000000000000000000000000000000000000000..1f6320bdbbe1df2006821e3b2a1311c5303cdfbf
 8405--- /dev/null
 8406+++ b/ghostty-themes/Tomorrow Night Burns
 8407@@ -0,0 +1,22 @@
 8408+palette = 0=#252525
 8409+palette = 1=#832e31
 8410+palette = 2=#a63c40
 8411+palette = 3=#d3494e
 8412+palette = 4=#fc595f
 8413+palette = 5=#df9395
 8414+palette = 6=#ba8586
 8415+palette = 7=#f5f5f5
 8416+palette = 8=#5d6f71
 8417+palette = 9=#832e31
 8418+palette = 10=#a63c40
 8419+palette = 11=#d2494e
 8420+palette = 12=#fc595f
 8421+palette = 13=#df9395
 8422+palette = 14=#ba8586
 8423+palette = 15=#f5f5f5
 8424+background = #151515
 8425+foreground = #a1b0b8
 8426+cursor-color = #ff443e
 8427+cursor-text = #708284
 8428+selection-background = #b0bec5
 8429+selection-foreground = #2a2d32
 8430diff --git a/ghostty-themes/Tomorrow Night Eighties b/ghostty-themes/Tomorrow Night Eighties
 8431new file mode 100644
 8432index 0000000000000000000000000000000000000000..9a0c2a8504c46a24604de655d64006f7c31d2b15
 8433--- /dev/null
 8434+++ b/ghostty-themes/Tomorrow Night Eighties
 8435@@ -0,0 +1,22 @@
 8436+palette = 0=#000000
 8437+palette = 1=#f2777a
 8438+palette = 2=#99cc99
 8439+palette = 3=#ffcc66
 8440+palette = 4=#6699cc
 8441+palette = 5=#cc99cc
 8442+palette = 6=#66cccc
 8443+palette = 7=#ffffff
 8444+palette = 8=#000000
 8445+palette = 9=#f2777a
 8446+palette = 10=#99cc99
 8447+palette = 11=#ffcc66
 8448+palette = 12=#6699cc
 8449+palette = 13=#cc99cc
 8450+palette = 14=#66cccc
 8451+palette = 15=#ffffff
 8452+background = #2d2d2d
 8453+foreground = #cccccc
 8454+cursor-color = #cccccc
 8455+cursor-text = #2d2d2d
 8456+selection-background = #515151
 8457+selection-foreground = #cccccc
 8458diff --git a/ghostty-themes/ToyChest b/ghostty-themes/ToyChest
 8459new file mode 100644
 8460index 0000000000000000000000000000000000000000..6ec3f015efe0e7ff68c256155a80955ecdc2402d
 8461--- /dev/null
 8462+++ b/ghostty-themes/ToyChest
 8463@@ -0,0 +1,22 @@
 8464+palette = 0=#2c3f58
 8465+palette = 1=#be2d26
 8466+palette = 2=#1a9172
 8467+palette = 3=#db8e27
 8468+palette = 4=#325d96
 8469+palette = 5=#8a5edc
 8470+palette = 6=#35a08f
 8471+palette = 7=#23d183
 8472+palette = 8=#336889
 8473+palette = 9=#dd5944
 8474+palette = 10=#31d07b
 8475+palette = 11=#e7d84b
 8476+palette = 12=#34a6da
 8477+palette = 13=#ae6bdc
 8478+palette = 14=#42c3ae
 8479+palette = 15=#d5d5d5
 8480+background = #24364b
 8481+foreground = #31d07b
 8482+cursor-color = #d5d5d5
 8483+cursor-text = #141c25
 8484+selection-background = #5f217a
 8485+selection-foreground = #d5d5d5
 8486diff --git a/ghostty-themes/Treehouse b/ghostty-themes/Treehouse
 8487new file mode 100644
 8488index 0000000000000000000000000000000000000000..5dbb434e2d7d517b63ca7e2e72cc78c0bfe5905e
 8489--- /dev/null
 8490+++ b/ghostty-themes/Treehouse
 8491@@ -0,0 +1,22 @@
 8492+palette = 0=#321300
 8493+palette = 1=#b2270e
 8494+palette = 2=#44a900
 8495+palette = 3=#aa820c
 8496+palette = 4=#58859a
 8497+palette = 5=#97363d
 8498+palette = 6=#b25a1e
 8499+palette = 7=#786b53
 8500+palette = 8=#433626
 8501+palette = 9=#ed5d20
 8502+palette = 10=#55f238
 8503+palette = 11=#f2b732
 8504+palette = 12=#85cfed
 8505+palette = 13=#e14c5a
 8506+palette = 14=#f07d14
 8507+palette = 15=#ffc800
 8508+background = #191919
 8509+foreground = #786b53
 8510+cursor-color = #fac814
 8511+cursor-text = #191919
 8512+selection-background = #786b53
 8513+selection-foreground = #fac800
 8514diff --git a/ghostty-themes/Twilight b/ghostty-themes/Twilight
 8515new file mode 100644
 8516index 0000000000000000000000000000000000000000..9a5af61ed6cfb284a9e953f2716ada886a00069c
 8517--- /dev/null
 8518+++ b/ghostty-themes/Twilight
 8519@@ -0,0 +1,22 @@
 8520+palette = 0=#141414
 8521+palette = 1=#c06d44
 8522+palette = 2=#afb97a
 8523+palette = 3=#c2a86c
 8524+palette = 4=#44474a
 8525+palette = 5=#b4be7c
 8526+palette = 6=#778385
 8527+palette = 7=#ffffd4
 8528+palette = 8=#262626
 8529+palette = 9=#de7c4c
 8530+palette = 10=#ccd88c
 8531+palette = 11=#e2c47e
 8532+palette = 12=#5a5e62
 8533+palette = 13=#d0dc8e
 8534+palette = 14=#8a989b
 8535+palette = 15=#ffffd4
 8536+background = #141414
 8537+foreground = #ffffd4
 8538+cursor-color = #ffffff
 8539+cursor-text = #000000
 8540+selection-background = #313131
 8541+selection-foreground = #ffffd4
 8542diff --git a/ghostty-themes/Ubuntu b/ghostty-themes/Ubuntu
 8543new file mode 100644
 8544index 0000000000000000000000000000000000000000..6e31533bde9c00ed44fb86f11545dc9a2f8418a5
 8545--- /dev/null
 8546+++ b/ghostty-themes/Ubuntu
 8547@@ -0,0 +1,22 @@
 8548+palette = 0=#2e3436
 8549+palette = 1=#cc0000
 8550+palette = 2=#4e9a06
 8551+palette = 3=#c4a000
 8552+palette = 4=#3465a4
 8553+palette = 5=#75507b
 8554+palette = 6=#06989a
 8555+palette = 7=#d3d7cf
 8556+palette = 8=#555753
 8557+palette = 9=#ef2929
 8558+palette = 10=#8ae234
 8559+palette = 11=#fce94f
 8560+palette = 12=#729fcf
 8561+palette = 13=#ad7fa8
 8562+palette = 14=#34e2e2
 8563+palette = 15=#eeeeec
 8564+background = #300a24
 8565+foreground = #eeeeec
 8566+cursor-color = #bbbbbb
 8567+cursor-text = #ffffff
 8568+selection-background = #b5d5ff
 8569+selection-foreground = #000000
 8570diff --git a/ghostty-themes/UltraDark b/ghostty-themes/UltraDark
 8571new file mode 100644
 8572index 0000000000000000000000000000000000000000..6d815d33d02d60f757ca2a2a365e6cf56da89097
 8573--- /dev/null
 8574+++ b/ghostty-themes/UltraDark
 8575@@ -0,0 +1,22 @@
 8576+palette = 0=#000000
 8577+palette = 1=#f07178
 8578+palette = 2=#c3e88d
 8579+palette = 3=#ffcb6b
 8580+palette = 4=#82aaff
 8581+palette = 5=#c792ea
 8582+palette = 6=#89ddff
 8583+palette = 7=#cccccc
 8584+palette = 8=#333333
 8585+palette = 9=#f6a9ae
 8586+palette = 10=#dbf1ba
 8587+palette = 11=#ffdfa6
 8588+palette = 12=#b4ccff
 8589+palette = 13=#ddbdf2
 8590+palette = 14=#b8eaff
 8591+palette = 15=#ffffff
 8592+background = #000000
 8593+foreground = #ffffff
 8594+cursor-color = #fefefe
 8595+cursor-text = #000000
 8596+selection-background = #222222
 8597+selection-foreground = #cccccc
 8598diff --git a/ghostty-themes/UltraViolent b/ghostty-themes/UltraViolent
 8599new file mode 100644
 8600index 0000000000000000000000000000000000000000..3030ec3a1bea9a8c8a0093b0b0fc1cdd6105a748
 8601--- /dev/null
 8602+++ b/ghostty-themes/UltraViolent
 8603@@ -0,0 +1,22 @@
 8604+palette = 0=#242728
 8605+palette = 1=#ff0090
 8606+palette = 2=#b6ff00
 8607+palette = 3=#fff727
 8608+palette = 4=#47e0fb
 8609+palette = 5=#d731ff
 8610+palette = 6=#0effbb
 8611+palette = 7=#e1e1e1
 8612+palette = 8=#636667
 8613+palette = 9=#fb58b4
 8614+palette = 10=#deff8c
 8615+palette = 11=#ebe087
 8616+palette = 12=#7fecff
 8617+palette = 13=#e681ff
 8618+palette = 14=#69fcd3
 8619+palette = 15=#f9f9f5
 8620+background = #242728
 8621+foreground = #c1c1c1
 8622+cursor-color = #c1c1c1
 8623+cursor-text = #ffffff
 8624+selection-background = #574c49
 8625+selection-foreground = #c3c7cb
 8626diff --git a/ghostty-themes/UnderTheSea b/ghostty-themes/UnderTheSea
 8627new file mode 100644
 8628index 0000000000000000000000000000000000000000..50df3f32373b8d1ef4d427d0f261086915a37e03
 8629--- /dev/null
 8630+++ b/ghostty-themes/UnderTheSea
 8631@@ -0,0 +1,22 @@
 8632+palette = 0=#022026
 8633+palette = 1=#b2302d
 8634+palette = 2=#00a941
 8635+palette = 3=#59819c
 8636+palette = 4=#459a86
 8637+palette = 5=#00599d
 8638+palette = 6=#5d7e19
 8639+palette = 7=#405555
 8640+palette = 8=#384451
 8641+palette = 9=#ff4242
 8642+palette = 10=#2aea5e
 8643+palette = 11=#8ed4fd
 8644+palette = 12=#61d5ba
 8645+palette = 13=#1298ff
 8646+palette = 14=#98d028
 8647+palette = 15=#58fbd6
 8648+background = #011116
 8649+foreground = #ffffff
 8650+cursor-color = #4afcd6
 8651+cursor-text = #031413
 8652+selection-background = #415555
 8653+selection-foreground = #4dffda
 8654diff --git a/ghostty-themes/Unikitty b/ghostty-themes/Unikitty
 8655new file mode 100644
 8656index 0000000000000000000000000000000000000000..d8223c6a9adb271be9ae1b424b6b72294ead9e3b
 8657--- /dev/null
 8658+++ b/ghostty-themes/Unikitty
 8659@@ -0,0 +1,22 @@
 8660+palette = 0=#0c0c0c
 8661+palette = 1=#a80f20
 8662+palette = 2=#bafc8b
 8663+palette = 3=#eedf4b
 8664+palette = 4=#145fcd
 8665+palette = 5=#ff36a2
 8666+palette = 6=#6bd1bc
 8667+palette = 7=#e2d7e1
 8668+palette = 8=#434343
 8669+palette = 9=#d91329
 8670+palette = 10=#d3ffaf
 8671+palette = 11=#ffef50
 8672+palette = 12=#0075ea
 8673+palette = 13=#fdd5e5
 8674+palette = 14=#79ecd5
 8675+palette = 15=#fff3fe
 8676+background = #ff8cd9
 8677+foreground = #0b0b0b
 8678+cursor-color = #bafc8b
 8679+cursor-text = #202020
 8680+selection-background = #3ea9fe
 8681+selection-foreground = #ffffff
 8682diff --git a/ghostty-themes/Urple b/ghostty-themes/Urple
 8683new file mode 100644
 8684index 0000000000000000000000000000000000000000..84be0733fc4e0fce93a64253b08f6f1f8e08de7d
 8685--- /dev/null
 8686+++ b/ghostty-themes/Urple
 8687@@ -0,0 +1,22 @@
 8688+palette = 0=#000000
 8689+palette = 1=#b0425b
 8690+palette = 2=#37a415
 8691+palette = 3=#ad5c42
 8692+palette = 4=#564d9b
 8693+palette = 5=#6c3ca1
 8694+palette = 6=#808080
 8695+palette = 7=#87799c
 8696+palette = 8=#5d3225
 8697+palette = 9=#ff6388
 8698+palette = 10=#29e620
 8699+palette = 11=#f08161
 8700+palette = 12=#867aed
 8701+palette = 13=#a05eee
 8702+palette = 14=#eaeaea
 8703+palette = 15=#bfa3ff
 8704+background = #1b1b23
 8705+foreground = #877a9b
 8706+cursor-color = #a063eb
 8707+cursor-text = #1b1b22
 8708+selection-background = #a063eb
 8709+selection-foreground = #1b1b22
 8710diff --git a/ghostty-themes/Vaughn b/ghostty-themes/Vaughn
 8711new file mode 100644
 8712index 0000000000000000000000000000000000000000..5560b9563d0959816923bdbe70caf5c56b674cc3
 8713--- /dev/null
 8714+++ b/ghostty-themes/Vaughn
 8715@@ -0,0 +1,22 @@
 8716+palette = 0=#25234f
 8717+palette = 1=#705050
 8718+palette = 2=#60b48a
 8719+palette = 3=#dfaf8f
 8720+palette = 4=#5555ff
 8721+palette = 5=#f08cc3
 8722+palette = 6=#8cd0d3
 8723+palette = 7=#709080
 8724+palette = 8=#709080
 8725+palette = 9=#dca3a3
 8726+palette = 10=#60b48a
 8727+palette = 11=#f0dfaf
 8728+palette = 12=#5555ff
 8729+palette = 13=#ec93d3
 8730+palette = 14=#93e0e3
 8731+palette = 15=#ffffff
 8732+background = #25234f
 8733+foreground = #dcdccc
 8734+cursor-color = #ff5555
 8735+cursor-text = #ffffff
 8736+selection-background = #b5d5ff
 8737+selection-foreground = #000000
 8738diff --git a/ghostty-themes/VibrantInk b/ghostty-themes/VibrantInk
 8739new file mode 100644
 8740index 0000000000000000000000000000000000000000..d9876e525d64bd83e9d80c7cf9fbbdfc45868c17
 8741--- /dev/null
 8742+++ b/ghostty-themes/VibrantInk
 8743@@ -0,0 +1,22 @@
 8744+palette = 0=#878787
 8745+palette = 1=#ff6600
 8746+palette = 2=#ccff04
 8747+palette = 3=#ffcc00
 8748+palette = 4=#44b4cc
 8749+palette = 5=#9933cc
 8750+palette = 6=#44b4cc
 8751+palette = 7=#f5f5f5
 8752+palette = 8=#555555
 8753+palette = 9=#ff0000
 8754+palette = 10=#00ff00
 8755+palette = 11=#ffff00
 8756+palette = 12=#0000ff
 8757+palette = 13=#ff00ff
 8758+palette = 14=#00ffff
 8759+palette = 15=#e5e5e5
 8760+background = #000000
 8761+foreground = #ffffff
 8762+cursor-color = #ffffff
 8763+cursor-text = #000000
 8764+selection-background = #b5d5ff
 8765+selection-foreground = #000000
 8766diff --git a/ghostty-themes/Violet Dark b/ghostty-themes/Violet Dark
 8767new file mode 100644
 8768index 0000000000000000000000000000000000000000..156843d65fcb1a30c9f89a6a93aa3dc49445680f
 8769--- /dev/null
 8770+++ b/ghostty-themes/Violet Dark
 8771@@ -0,0 +1,22 @@
 8772+palette = 0=#56595c
 8773+palette = 1=#c94c22
 8774+palette = 2=#85981c
 8775+palette = 3=#b4881d
 8776+palette = 4=#2e8bce
 8777+palette = 5=#d13a82
 8778+palette = 6=#32a198
 8779+palette = 7=#c9c6bd
 8780+palette = 8=#45484b
 8781+palette = 9=#bd3613
 8782+palette = 10=#738a04
 8783+palette = 11=#a57705
 8784+palette = 12=#2176c7
 8785+palette = 13=#c61c6f
 8786+palette = 14=#259286
 8787+palette = 15=#c9c6bd
 8788+background = #1c1d1f
 8789+foreground = #708284
 8790+cursor-color = #708284
 8791+cursor-text = #1c1d1f
 8792+selection-background = #595ab7
 8793+selection-foreground = #1c1d1f
 8794diff --git a/ghostty-themes/Violet Light b/ghostty-themes/Violet Light
 8795new file mode 100644
 8796index 0000000000000000000000000000000000000000..5512dd4eead73bfe34faff87bd00356269d2f775
 8797--- /dev/null
 8798+++ b/ghostty-themes/Violet Light
 8799@@ -0,0 +1,22 @@
 8800+palette = 0=#56595c
 8801+palette = 1=#c94c22
 8802+palette = 2=#85981c
 8803+palette = 3=#b4881d
 8804+palette = 4=#2e8bce
 8805+palette = 5=#d13a82
 8806+palette = 6=#32a198
 8807+palette = 7=#d3d0c9
 8808+palette = 8=#45484b
 8809+palette = 9=#bd3613
 8810+palette = 10=#738a04
 8811+palette = 11=#a57705
 8812+palette = 12=#2176c7
 8813+palette = 13=#c61c6f
 8814+palette = 14=#259286
 8815+palette = 15=#c9c6bd
 8816+background = #fcf4dc
 8817+foreground = #536870
 8818+cursor-color = #536870
 8819+cursor-text = #fcf4dc
 8820+selection-background = #595ab7
 8821+selection-foreground = #fcf4dc
 8822diff --git a/ghostty-themes/WarmNeon b/ghostty-themes/WarmNeon
 8823new file mode 100644
 8824index 0000000000000000000000000000000000000000..0c3e6e14e7dffe3ac4f851ff10c78f51cf995553
 8825--- /dev/null
 8826+++ b/ghostty-themes/WarmNeon
 8827@@ -0,0 +1,22 @@
 8828+palette = 0=#000000
 8829+palette = 1=#e24346
 8830+palette = 2=#39b13a
 8831+palette = 3=#dae145
 8832+palette = 4=#4261c5
 8833+palette = 5=#f920fb
 8834+palette = 6=#2abbd4
 8835+palette = 7=#d0b8a3
 8836+palette = 8=#fefcfc
 8837+palette = 9=#e97071
 8838+palette = 10=#9cc090
 8839+palette = 11=#ddda7a
 8840+palette = 12=#7b91d6
 8841+palette = 13=#f674ba
 8842+palette = 14=#5ed1e5
 8843+palette = 15=#d8c8bb
 8844+background = #404040
 8845+foreground = #afdab6
 8846+cursor-color = #30ff24
 8847+cursor-text = #3eef37
 8848+selection-background = #b0ad21
 8849+selection-foreground = #ffffff
 8850diff --git a/ghostty-themes/Wez b/ghostty-themes/Wez
 8851new file mode 100644
 8852index 0000000000000000000000000000000000000000..83ecdb0295aac447c4cddb776d764dcecbeaabe7
 8853--- /dev/null
 8854+++ b/ghostty-themes/Wez
 8855@@ -0,0 +1,22 @@
 8856+palette = 0=#000000
 8857+palette = 1=#cc5555
 8858+palette = 2=#55cc55
 8859+palette = 3=#cdcd55
 8860+palette = 4=#5555cc
 8861+palette = 5=#cc55cc
 8862+palette = 6=#7acaca
 8863+palette = 7=#cccccc
 8864+palette = 8=#555555
 8865+palette = 9=#ff5555
 8866+palette = 10=#55ff55
 8867+palette = 11=#ffff55
 8868+palette = 12=#5555ff
 8869+palette = 13=#ff55ff
 8870+palette = 14=#55ffff
 8871+palette = 15=#ffffff
 8872+background = #000000
 8873+foreground = #b3b3b3
 8874+cursor-color = #53ae71
 8875+cursor-text = #000000
 8876+selection-background = #4d52f8
 8877+selection-foreground = #000000
 8878diff --git a/ghostty-themes/Whimsy b/ghostty-themes/Whimsy
 8879new file mode 100644
 8880index 0000000000000000000000000000000000000000..dc90f6fbc37d964565327dcad48b273a770c0c42
 8881--- /dev/null
 8882+++ b/ghostty-themes/Whimsy
 8883@@ -0,0 +1,22 @@
 8884+palette = 0=#535178
 8885+palette = 1=#ef6487
 8886+palette = 2=#5eca89
 8887+palette = 3=#fdd877
 8888+palette = 4=#65aef7
 8889+palette = 5=#aa7ff0
 8890+palette = 6=#43c1be
 8891+palette = 7=#ffffff
 8892+palette = 8=#535178
 8893+palette = 9=#ef6487
 8894+palette = 10=#5eca89
 8895+palette = 11=#fdd877
 8896+palette = 12=#65aef7
 8897+palette = 13=#aa7ff0
 8898+palette = 14=#43c1be
 8899+palette = 15=#ffffff
 8900+background = #29283b
 8901+foreground = #b3b0d6
 8902+cursor-color = #b3b0d6
 8903+cursor-text = #535178
 8904+selection-background = #3d3c58
 8905+selection-foreground = #ffffff
 8906diff --git a/ghostty-themes/WildCherry b/ghostty-themes/WildCherry
 8907new file mode 100644
 8908index 0000000000000000000000000000000000000000..e92e11b1b78e311adbf14317851f57fbb9f5561e
 8909--- /dev/null
 8910+++ b/ghostty-themes/WildCherry
 8911@@ -0,0 +1,22 @@
 8912+palette = 0=#000507
 8913+palette = 1=#d94085
 8914+palette = 2=#2ab250
 8915+palette = 3=#ffd16f
 8916+palette = 4=#883cdc
 8917+palette = 5=#ececec
 8918+palette = 6=#c1b8b7
 8919+palette = 7=#fff8de
 8920+palette = 8=#009cc9
 8921+palette = 9=#da6bac
 8922+palette = 10=#f4dca5
 8923+palette = 11=#eac066
 8924+palette = 12=#308cba
 8925+palette = 13=#ae636b
 8926+palette = 14=#ff919d
 8927+palette = 15=#e4838d
 8928+background = #1f1726
 8929+foreground = #dafaff
 8930+cursor-color = #dd00ff
 8931+cursor-text = #ff00fe
 8932+selection-background = #002831
 8933+selection-foreground = #e4ffff
 8934diff --git a/ghostty-themes/Wombat b/ghostty-themes/Wombat
 8935new file mode 100644
 8936index 0000000000000000000000000000000000000000..3370ebb97fb1540ed2bd1fbdd3fb4454de904b78
 8937--- /dev/null
 8938+++ b/ghostty-themes/Wombat
 8939@@ -0,0 +1,22 @@
 8940+palette = 0=#000000
 8941+palette = 1=#ff615a
 8942+palette = 2=#b1e969
 8943+palette = 3=#ebd99c
 8944+palette = 4=#5da9f6
 8945+palette = 5=#e86aff
 8946+palette = 6=#82fff7
 8947+palette = 7=#dedacf
 8948+palette = 8=#313131
 8949+palette = 9=#f58c80
 8950+palette = 10=#ddf88f
 8951+palette = 11=#eee5b2
 8952+palette = 12=#a5c7ff
 8953+palette = 13=#ddaaff
 8954+palette = 14=#b7fff9
 8955+palette = 15=#ffffff
 8956+background = #171717
 8957+foreground = #dedacf
 8958+cursor-color = #bbbbbb
 8959+cursor-text = #ffffff
 8960+selection-background = #453b39
 8961+selection-foreground = #b6bbc0
 8962diff --git a/ghostty-themes/Wryan b/ghostty-themes/Wryan
 8963new file mode 100644
 8964index 0000000000000000000000000000000000000000..8bcd31c11964d07d9d18d7cec9f7e8ba83cbb41b
 8965--- /dev/null
 8966+++ b/ghostty-themes/Wryan
 8967@@ -0,0 +1,22 @@
 8968+palette = 0=#333333
 8969+palette = 1=#8c4665
 8970+palette = 2=#287373
 8971+palette = 3=#7c7c99
 8972+palette = 4=#395573
 8973+palette = 5=#5e468c
 8974+palette = 6=#31658c
 8975+palette = 7=#899ca1
 8976+palette = 8=#3d3d3d
 8977+palette = 9=#bf4d80
 8978+palette = 10=#53a6a6
 8979+palette = 11=#9e9ecb
 8980+palette = 12=#477ab3
 8981+palette = 13=#7e62b3
 8982+palette = 14=#6096bf
 8983+palette = 15=#c0c0c0
 8984+background = #101010
 8985+foreground = #999993
 8986+cursor-color = #9e9ecb
 8987+cursor-text = #000000
 8988+selection-background = #4d4d4d
 8989+selection-foreground = #ffffff
 8990diff --git a/ghostty-themes/Zenburn b/ghostty-themes/Zenburn
 8991new file mode 100644
 8992index 0000000000000000000000000000000000000000..d8c5fdd5115d9100f1ce66c656611fe56f3e907a
 8993--- /dev/null
 8994+++ b/ghostty-themes/Zenburn
 8995@@ -0,0 +1,22 @@
 8996+palette = 0=#4d4d4d
 8997+palette = 1=#705050
 8998+palette = 2=#60b48a
 8999+palette = 3=#f0dfaf
 9000+palette = 4=#506070
 9001+palette = 5=#dc8cc3
 9002+palette = 6=#8cd0d3
 9003+palette = 7=#dcdccc
 9004+palette = 8=#709080
 9005+palette = 9=#dca3a3
 9006+palette = 10=#c3bf9f
 9007+palette = 11=#e0cf9f
 9008+palette = 12=#94bff3
 9009+palette = 13=#ec93d3
 9010+palette = 14=#93e0e3
 9011+palette = 15=#ffffff
 9012+background = #3f3f3f
 9013+foreground = #dcdccc
 9014+cursor-color = #73635a
 9015+cursor-text = #000000
 9016+selection-background = #21322f
 9017+selection-foreground = #c2d87a
 9018diff --git a/ghostty-themes/arcoiris b/ghostty-themes/arcoiris
 9019new file mode 100644
 9020index 0000000000000000000000000000000000000000..9a2c80c151a1ce6a0994d8b3fec823f4945a74a4
 9021--- /dev/null
 9022+++ b/ghostty-themes/arcoiris
 9023@@ -0,0 +1,22 @@
 9024+palette = 0=#333333
 9025+palette = 1=#da2700
 9026+palette = 2=#12c258
 9027+palette = 3=#ffc656
 9028+palette = 4=#518bfc
 9029+palette = 5=#e37bd9
 9030+palette = 6=#63fad5
 9031+palette = 7=#bab2b2
 9032+palette = 8=#777777
 9033+palette = 9=#ffb9b9
 9034+palette = 10=#e3f6aa
 9035+palette = 11=#ffddaa
 9036+palette = 12=#b3e8f3
 9037+palette = 13=#cbbaf9
 9038+palette = 14=#bcffc7
 9039+palette = 15=#efefef
 9040+background = #201f1e
 9041+foreground = #eee4d9
 9042+cursor-color = #7a1c1c
 9043+cursor-text = #fffbf2
 9044+selection-background = #25524a
 9045+selection-foreground = #f3fffd
 9046diff --git a/ghostty-themes/ayu b/ghostty-themes/ayu
 9047new file mode 100644
 9048index 0000000000000000000000000000000000000000..dded2c745b0df4b12ab85fc40785de640b45b335
 9049--- /dev/null
 9050+++ b/ghostty-themes/ayu
 9051@@ -0,0 +1,22 @@
 9052+palette = 0=#000000
 9053+palette = 1=#ff3333
 9054+palette = 2=#b8cc52
 9055+palette = 3=#e7c547
 9056+palette = 4=#36a3d9
 9057+palette = 5=#f07178
 9058+palette = 6=#95e6cb
 9059+palette = 7=#ffffff
 9060+palette = 8=#323232
 9061+palette = 9=#ff6565
 9062+palette = 10=#eafe84
 9063+palette = 11=#fff779
 9064+palette = 12=#68d5ff
 9065+palette = 13=#ffa3aa
 9066+palette = 14=#c7fffd
 9067+palette = 15=#ffffff
 9068+background = #0f1419
 9069+foreground = #e6e1cf
 9070+cursor-color = #f29718
 9071+cursor-text = #e6e1cf
 9072+selection-background = #253340
 9073+selection-foreground = #e6e1cf
 9074diff --git a/ghostty-themes/ayu_light b/ghostty-themes/ayu_light
 9075new file mode 100644
 9076index 0000000000000000000000000000000000000000..623bc7af2f3d9b03590b9613dadad8838572a6d7
 9077--- /dev/null
 9078+++ b/ghostty-themes/ayu_light
 9079@@ -0,0 +1,22 @@
 9080+palette = 0=#000000
 9081+palette = 1=#ff3333
 9082+palette = 2=#86b300
 9083+palette = 3=#f29718
 9084+palette = 4=#41a6d9
 9085+palette = 5=#f07178
 9086+palette = 6=#4dbf99
 9087+palette = 7=#ffffff
 9088+palette = 8=#323232
 9089+palette = 9=#ff6565
 9090+palette = 10=#b8e532
 9091+palette = 11=#ffc94a
 9092+palette = 12=#73d8ff
 9093+palette = 13=#ffa3aa
 9094+palette = 14=#7ff1cb
 9095+palette = 15=#ffffff
 9096+background = #fafafa
 9097+foreground = #5c6773
 9098+cursor-color = #ff6a00
 9099+cursor-text = #5c6773
 9100+selection-background = #f0eee4
 9101+selection-foreground = #5c6773
 9102diff --git a/ghostty-themes/carbonfox b/ghostty-themes/carbonfox
 9103new file mode 100644
 9104index 0000000000000000000000000000000000000000..e7a85fcb2cefce19c1240fc96101fa4096464de1
 9105--- /dev/null
 9106+++ b/ghostty-themes/carbonfox
 9107@@ -0,0 +1,22 @@
 9108+palette = 0=#282828
 9109+palette = 1=#ee5396
 9110+palette = 2=#25be6a
 9111+palette = 3=#08bdba
 9112+palette = 4=#78a9ff
 9113+palette = 5=#be95ff
 9114+palette = 6=#33b1ff
 9115+palette = 7=#dfdfe0
 9116+palette = 8=#484848
 9117+palette = 9=#f16da6
 9118+palette = 10=#46c880
 9119+palette = 11=#2dc7c4
 9120+palette = 12=#8cb6ff
 9121+palette = 13=#c8a5ff
 9122+palette = 14=#52bdff
 9123+palette = 15=#e4e4e5
 9124+palette = 16=#3ddbd9
 9125+background = #161616
 9126+foreground = #f2f4f8
 9127+selection-background = #2a2a2a
 9128+selection-foreground = #f2f4f8
 9129+cursor-color = #f2f4f8
 9130diff --git a/ghostty-themes/catppuccin-frappe b/ghostty-themes/catppuccin-frappe
 9131new file mode 100644
 9132index 0000000000000000000000000000000000000000..746acf54ce743cd38c1b2649eae78fbc32e84193
 9133--- /dev/null
 9134+++ b/ghostty-themes/catppuccin-frappe
 9135@@ -0,0 +1,22 @@
 9136+palette = 0=#51576d
 9137+palette = 1=#e78284
 9138+palette = 2=#a6d189
 9139+palette = 3=#e5c890
 9140+palette = 4=#8caaee
 9141+palette = 5=#f4b8e4
 9142+palette = 6=#81c8be
 9143+palette = 7=#a5adce
 9144+palette = 8=#626880
 9145+palette = 9=#e67172
 9146+palette = 10=#8ec772
 9147+palette = 11=#d9ba73
 9148+palette = 12=#7b9ef0
 9149+palette = 13=#f2a4db
 9150+palette = 14=#5abfb5
 9151+palette = 15=#b5bfe2
 9152+background = #303446
 9153+foreground = #c6d0f5
 9154+cursor-color = #f2d5cf
 9155+cursor-text = #c6d0f5
 9156+selection-background = #626880
 9157+selection-foreground = #c6d0f5
 9158diff --git a/ghostty-themes/catppuccin-latte b/ghostty-themes/catppuccin-latte
 9159new file mode 100644
 9160index 0000000000000000000000000000000000000000..68be1a7e1753dfec4064dc06c3d4b6ebc87b0855
 9161--- /dev/null
 9162+++ b/ghostty-themes/catppuccin-latte
 9163@@ -0,0 +1,22 @@
 9164+palette = 0=#5c5f77
 9165+palette = 1=#d20f39
 9166+palette = 2=#40a02b
 9167+palette = 3=#df8e1d
 9168+palette = 4=#1e66f5
 9169+palette = 5=#ea76cb
 9170+palette = 6=#179299
 9171+palette = 7=#acb0be
 9172+palette = 8=#6c6f85
 9173+palette = 9=#de293e
 9174+palette = 10=#49af3d
 9175+palette = 11=#eea02d
 9176+palette = 12=#456eff
 9177+palette = 13=#fe85d8
 9178+palette = 14=#2d9fa8
 9179+palette = 15=#bcc0cc
 9180+background = #eff1f5
 9181+foreground = #4c4f69
 9182+cursor-color = #dc8a78
 9183+cursor-text = #4c4f69
 9184+selection-background = #acb0be
 9185+selection-foreground = #4c4f69
 9186diff --git a/ghostty-themes/catppuccin-macchiato b/ghostty-themes/catppuccin-macchiato
 9187new file mode 100644
 9188index 0000000000000000000000000000000000000000..dbc84c6be3c65bef94dc78e1003c2c4d2682dd82
 9189--- /dev/null
 9190+++ b/ghostty-themes/catppuccin-macchiato
 9191@@ -0,0 +1,22 @@
 9192+palette = 0=#494d64
 9193+palette = 1=#ed8796
 9194+palette = 2=#a6da95
 9195+palette = 3=#eed49f
 9196+palette = 4=#8aadf4
 9197+palette = 5=#f5bde6
 9198+palette = 6=#8bd5ca
 9199+palette = 7=#a5adcb
 9200+palette = 8=#5b6078
 9201+palette = 9=#ec7486
 9202+palette = 10=#8ccf7f
 9203+palette = 11=#e1c682
 9204+palette = 12=#78a1f6
 9205+palette = 13=#f2a9dd
 9206+palette = 14=#63cbc0
 9207+palette = 15=#b8c0e0
 9208+background = #24273a
 9209+foreground = #cad3f5
 9210+cursor-color = #f4dbd6
 9211+cursor-text = #cad3f5
 9212+selection-background = #5b6078
 9213+selection-foreground = #cad3f5
 9214diff --git a/ghostty-themes/catppuccin-mocha b/ghostty-themes/catppuccin-mocha
 9215new file mode 100644
 9216index 0000000000000000000000000000000000000000..f6ff7d1914e8bcbb9b9bdde9d54a13452d46f385
 9217--- /dev/null
 9218+++ b/ghostty-themes/catppuccin-mocha
 9219@@ -0,0 +1,22 @@
 9220+palette = 0=#45475a
 9221+palette = 1=#f38ba8
 9222+palette = 2=#a6e3a1
 9223+palette = 3=#f9e2af
 9224+palette = 4=#89b4fa
 9225+palette = 5=#f5c2e7
 9226+palette = 6=#94e2d5
 9227+palette = 7=#a6adc8
 9228+palette = 8=#585b70
 9229+palette = 9=#f37799
 9230+palette = 10=#89d88b
 9231+palette = 11=#ebd391
 9232+palette = 12=#74a8fc
 9233+palette = 13=#f2aede
 9234+palette = 14=#6bd7ca
 9235+palette = 15=#bac2de
 9236+background = #1e1e2e
 9237+foreground = #cdd6f4
 9238+cursor-color = #f5e0dc
 9239+cursor-text = #cdd6f4
 9240+selection-background = #585b70
 9241+selection-foreground = #cdd6f4
 9242diff --git a/ghostty-themes/citruszest b/ghostty-themes/citruszest
 9243new file mode 100644
 9244index 0000000000000000000000000000000000000000..1438813265246b2e28fa622f5ef30364bb300da3
 9245--- /dev/null
 9246+++ b/ghostty-themes/citruszest
 9247@@ -0,0 +1,22 @@
 9248+palette = 0=#404040
 9249+palette = 1=#ff5454
 9250+palette = 2=#00cc7a
 9251+palette = 3=#ffd400
 9252+palette = 4=#00bfff
 9253+palette = 5=#ff90fe
 9254+palette = 6=#48d1cc
 9255+palette = 7=#bfbfbf
 9256+palette = 8=#808080
 9257+palette = 9=#ff1a75
 9258+palette = 10=#1affa3
 9259+palette = 11=#ffff00
 9260+palette = 12=#33cfff
 9261+palette = 13=#ffb2fe
 9262+palette = 14=#00fff2
 9263+palette = 15=#f9f9f9
 9264+background = #121212
 9265+foreground = #bfbfbf
 9266+cursor-color = #666666
 9267+cursor-text = #f9f9f9
 9268+selection-background = #ff8c00
 9269+selection-foreground = #f4f4f4
 9270diff --git a/ghostty-themes/coffee_theme b/ghostty-themes/coffee_theme
 9271new file mode 100644
 9272index 0000000000000000000000000000000000000000..8241bb72d3165a031488c1f9af9acff45a5cb479
 9273--- /dev/null
 9274+++ b/ghostty-themes/coffee_theme
 9275@@ -0,0 +1,22 @@
 9276+palette = 0=#000000
 9277+palette = 1=#c91b00
 9278+palette = 2=#00c200
 9279+palette = 3=#c7c400
 9280+palette = 4=#0225c7
 9281+palette = 5=#ca30c7
 9282+palette = 6=#00c5c7
 9283+palette = 7=#c7c7c7
 9284+palette = 8=#686868
 9285+palette = 9=#ff6e67
 9286+palette = 10=#5ffa68
 9287+palette = 11=#fffc67
 9288+palette = 12=#6871ff
 9289+palette = 13=#ff77ff
 9290+palette = 14=#60fdff
 9291+palette = 15=#ffffff
 9292+background = #f5deb3
 9293+foreground = #000000
 9294+cursor-color = #c7c7c7
 9295+cursor-text = #fffc67
 9296+selection-background = #c1deff
 9297+selection-foreground = #000000
 9298diff --git a/ghostty-themes/cyberpunk b/ghostty-themes/cyberpunk
 9299new file mode 100644
 9300index 0000000000000000000000000000000000000000..1bbc590519b225c7eec81c09edcb27e60687dda9
 9301--- /dev/null
 9302+++ b/ghostty-themes/cyberpunk
 9303@@ -0,0 +1,22 @@
 9304+palette = 0=#000000
 9305+palette = 1=#ff7092
 9306+palette = 2=#00fbac
 9307+palette = 3=#fffa6a
 9308+palette = 4=#00bfff
 9309+palette = 5=#df95ff
 9310+palette = 6=#86cbfe
 9311+palette = 7=#ffffff
 9312+palette = 8=#000000
 9313+palette = 9=#ff8aa4
 9314+palette = 10=#21f6bc
 9315+palette = 11=#fff787
 9316+palette = 12=#1bccfd
 9317+palette = 13=#e6aefe
 9318+palette = 14=#99d6fc
 9319+palette = 15=#ffffff
 9320+background = #332a57
 9321+foreground = #e5e5e5
 9322+cursor-color = #21f6bc
 9323+cursor-text = #ffffff
 9324+selection-background = #c1deff
 9325+selection-foreground = #000000
 9326diff --git a/ghostty-themes/darkermatrix b/ghostty-themes/darkermatrix
 9327new file mode 100644
 9328index 0000000000000000000000000000000000000000..8217d97821a35e68caef2bb8a322b239d71008fe
 9329--- /dev/null
 9330+++ b/ghostty-themes/darkermatrix
 9331@@ -0,0 +1,22 @@
 9332+palette = 0=#091013
 9333+palette = 1=#002e18
 9334+palette = 2=#6fa64c
 9335+palette = 3=#595900
 9336+palette = 4=#00cb6b
 9337+palette = 5=#412a4d
 9338+palette = 6=#125459
 9339+palette = 7=#002e19
 9340+palette = 8=#333333
 9341+palette = 9=#00381d
 9342+palette = 10=#90d762
 9343+palette = 11=#e2e500
 9344+palette = 12=#00ff87
 9345+palette = 13=#412a4d
 9346+palette = 14=#176c73
 9347+palette = 15=#00381e
 9348+background = #070c0e
 9349+foreground = #28380d
 9350+cursor-color = #373a26
 9351+cursor-text = #00ff87
 9352+selection-background = #0f191c
 9353+selection-foreground = #00ff87
 9354diff --git a/ghostty-themes/darkmatrix b/ghostty-themes/darkmatrix
 9355new file mode 100644
 9356index 0000000000000000000000000000000000000000..916444219a82641faa03e869fcca3a61a0150e8c
 9357--- /dev/null
 9358+++ b/ghostty-themes/darkmatrix
 9359@@ -0,0 +1,22 @@
 9360+palette = 0=#091013
 9361+palette = 1=#006536
 9362+palette = 2=#6fa64c
 9363+palette = 3=#7e8000
 9364+palette = 4=#2c9a84
 9365+palette = 5=#452d53
 9366+palette = 6=#114d53
 9367+palette = 7=#006536
 9368+palette = 8=#333333
 9369+palette = 9=#00733d
 9370+palette = 10=#90d762
 9371+palette = 11=#e2e500
 9372+palette = 12=#46d8b8
 9373+palette = 13=#4a3059
 9374+palette = 14=#12545a
 9375+palette = 15=#006536
 9376+background = #070c0e
 9377+foreground = #3e5715
 9378+cursor-color = #9fa86e
 9379+cursor-text = #00ff87
 9380+selection-background = #0f191c
 9381+selection-foreground = #00ff87
 9382diff --git a/ghostty-themes/dawnfox b/ghostty-themes/dawnfox
 9383new file mode 100644
 9384index 0000000000000000000000000000000000000000..8de6fc89f4716830cefa21686a4abc835fe6c16b
 9385--- /dev/null
 9386+++ b/ghostty-themes/dawnfox
 9387@@ -0,0 +1,22 @@
 9388+palette = 0=#575279
 9389+palette = 1=#b4637a
 9390+palette = 2=#618774
 9391+palette = 3=#ea9d34
 9392+palette = 4=#286983
 9393+palette = 5=#907aa9
 9394+palette = 6=#56949f
 9395+palette = 7=#e5e9f0
 9396+palette = 8=#5f5695
 9397+palette = 9=#c26d85
 9398+palette = 10=#629f81
 9399+palette = 11=#eea846
 9400+palette = 12=#2d81a3
 9401+palette = 13=#9a80b9
 9402+palette = 14=#5ca7b4
 9403+palette = 15=#e6ebf3
 9404+palette = 16=#d7827e
 9405+background = #faf4ed
 9406+foreground = #575279
 9407+selection-background = #d0d8d8
 9408+selection-foreground = #575279
 9409+cursor-color = #575279
 9410diff --git a/ghostty-themes/dayfox b/ghostty-themes/dayfox
 9411new file mode 100644
 9412index 0000000000000000000000000000000000000000..624f4aef21d96df5ccd2086e4fbf8380e2601a1b
 9413--- /dev/null
 9414+++ b/ghostty-themes/dayfox
 9415@@ -0,0 +1,22 @@
 9416+palette = 0=#352c24
 9417+palette = 1=#a5222f
 9418+palette = 2=#396847
 9419+palette = 3=#ac5402
 9420+palette = 4=#2848a9
 9421+palette = 5=#6e33ce
 9422+palette = 6=#287980
 9423+palette = 7=#f2e9e1
 9424+palette = 8=#534c45
 9425+palette = 9=#b3434e
 9426+palette = 10=#577f63
 9427+palette = 11=#b86e28
 9428+palette = 12=#4863b6
 9429+palette = 13=#8452d5
 9430+palette = 14=#488d93
 9431+palette = 15=#f4ece6
 9432+background = #f6f2ee
 9433+foreground = #3d2b5a
 9434+cursor-color = #3d2b5a
 9435+cursor-text = #f6f2ee
 9436+selection-background = #e7d2be
 9437+selection-foreground = #3d2b5a
 9438diff --git a/ghostty-themes/deep b/ghostty-themes/deep
 9439new file mode 100644
 9440index 0000000000000000000000000000000000000000..893aa7ffbddc370f93841f13b1ef6c936cb378d0
 9441--- /dev/null
 9442+++ b/ghostty-themes/deep
 9443@@ -0,0 +1,22 @@
 9444+palette = 0=#000000
 9445+palette = 1=#d70005
 9446+palette = 2=#1cd915
 9447+palette = 3=#d9bd26
 9448+palette = 4=#5665ff
 9449+palette = 5=#b052da
 9450+palette = 6=#50d2da
 9451+palette = 7=#e0e0e0
 9452+palette = 8=#535353
 9453+palette = 9=#fb0007
 9454+palette = 10=#22ff18
 9455+palette = 11=#fedc2b
 9456+palette = 12=#9fa9ff
 9457+palette = 13=#e09aff
 9458+palette = 14=#8df9ff
 9459+palette = 15=#ffffff
 9460+background = #090909
 9461+foreground = #cdcdcd
 9462+cursor-color = #d0d0d0
 9463+cursor-text = #151515
 9464+selection-background = #780002
 9465+selection-foreground = #ececec
 9466diff --git a/ghostty-themes/detuned b/ghostty-themes/detuned
 9467new file mode 100644
 9468index 0000000000000000000000000000000000000000..3f1302f1d1fe7ced13a356565ae9966eeaf910e7
 9469--- /dev/null
 9470+++ b/ghostty-themes/detuned
 9471@@ -0,0 +1,22 @@
 9472+palette = 0=#171717
 9473+palette = 1=#ea5386
 9474+palette = 2=#b3e153
 9475+palette = 3=#e4da81
 9476+palette = 4=#4192d3
 9477+palette = 5=#8f3ef6
 9478+palette = 6=#6cb4d5
 9479+palette = 7=#c7c7c7
 9480+palette = 8=#686868
 9481+palette = 9=#ea86ac
 9482+palette = 10=#c5e280
 9483+palette = 11=#fdf38f
 9484+palette = 12=#55bbf9
 9485+palette = 13=#b9a0f9
 9486+palette = 14=#7fd4fb
 9487+palette = 15=#ffffff
 9488+background = #000000
 9489+foreground = #c7c7c7
 9490+cursor-color = #c7c7c7
 9491+cursor-text = #ffffff
 9492+selection-background = #c7ddfc
 9493+selection-foreground = #000000
 9494diff --git a/ghostty-themes/duckbones b/ghostty-themes/duckbones
 9495new file mode 100644
 9496index 0000000000000000000000000000000000000000..56c955504b4080d7a10e207cdc8e19fbaaa81f08
 9497--- /dev/null
 9498+++ b/ghostty-themes/duckbones
 9499@@ -0,0 +1,22 @@
 9500+palette = 0=#0e101a
 9501+palette = 1=#e03600
 9502+palette = 2=#5dcd97
 9503+palette = 3=#e39500
 9504+palette = 4=#00a3cb
 9505+palette = 5=#795ccc
 9506+palette = 6=#00a3cb
 9507+palette = 7=#ebefc0
 9508+palette = 8=#2b2f46
 9509+palette = 9=#ff4821
 9510+palette = 10=#58db9e
 9511+palette = 11=#f6a100
 9512+palette = 12=#00b4e0
 9513+palette = 13=#b3a1e6
 9514+palette = 14=#00b4e0
 9515+palette = 15=#b3b692
 9516+background = #0e101a
 9517+foreground = #ebefc0
 9518+cursor-color = #edf2c2
 9519+cursor-text = #0e101a
 9520+selection-background = #37382d
 9521+selection-foreground = #ebefc0
 9522diff --git a/ghostty-themes/duskfox b/ghostty-themes/duskfox
 9523new file mode 100644
 9524index 0000000000000000000000000000000000000000..20c43432662d4c6f34959be32f16cb4aa12ca607
 9525--- /dev/null
 9526+++ b/ghostty-themes/duskfox
 9527@@ -0,0 +1,22 @@
 9528+palette = 0=#393552
 9529+palette = 1=#eb6f92
 9530+palette = 2=#a3be8c
 9531+palette = 3=#f6c177
 9532+palette = 4=#569fba
 9533+palette = 5=#c4a7e7
 9534+palette = 6=#9ccfd8
 9535+palette = 7=#e0def4
 9536+palette = 8=#47407d
 9537+palette = 9=#f083a2
 9538+palette = 10=#b1d196
 9539+palette = 11=#f9cb8c
 9540+palette = 12=#65b1cd
 9541+palette = 13=#ccb1ed
 9542+palette = 14=#a6dae3
 9543+palette = 15=#e2e0f7
 9544+palette = 16=#ea9a97
 9545+background = #232136
 9546+foreground = #e0def4
 9547+selection-background = #433c59
 9548+selection-foreground = #e0def4
 9549+cursor-color = #e0def4
 9550diff --git a/ghostty-themes/electron-highlighter b/ghostty-themes/electron-highlighter
 9551new file mode 100644
 9552index 0000000000000000000000000000000000000000..88c13f7d6c10f737f519749e2c54b3f4052c0afe
 9553--- /dev/null
 9554+++ b/ghostty-themes/electron-highlighter
 9555@@ -0,0 +1,22 @@
 9556+palette = 0=#15161e
 9557+palette = 1=#f7768e
 9558+palette = 2=#58ffc7
 9559+palette = 3=#ffd9af
 9560+palette = 4=#82aaff
 9561+palette = 5=#d2a6ef
 9562+palette = 6=#57f9ff
 9563+palette = 7=#7c8eac
 9564+palette = 8=#506686
 9565+palette = 9=#f7768e
 9566+palette = 10=#58ffc7
 9567+palette = 11=#ffd9af
 9568+palette = 12=#82aaff
 9569+palette = 13=#d2a6ef
 9570+palette = 14=#57f9ff
 9571+palette = 15=#c5cee0
 9572+background = #24283b
 9573+foreground = #a8b5d1
 9574+cursor-color = #a8b5d1
 9575+cursor-text = #1a1b26
 9576+selection-background = #283457
 9577+selection-foreground = #a8b5d1
 9578diff --git a/ghostty-themes/embers-dark b/ghostty-themes/embers-dark
 9579new file mode 100644
 9580index 0000000000000000000000000000000000000000..67108998c5a3b39bc04d0fb3737c7858c7709b85
 9581--- /dev/null
 9582+++ b/ghostty-themes/embers-dark
 9583@@ -0,0 +1,22 @@
 9584+palette = 0=#16130f
 9585+palette = 1=#826d57
 9586+palette = 2=#57826d
 9587+palette = 3=#6d8257
 9588+palette = 4=#6d5782
 9589+palette = 5=#82576d
 9590+palette = 6=#576d82
 9591+palette = 7=#a39a90
 9592+palette = 8=#5a5047
 9593+palette = 9=#828257
 9594+palette = 10=#2c2620
 9595+palette = 11=#433b32
 9596+palette = 12=#8a8075
 9597+palette = 13=#beb6ae
 9598+palette = 14=#825757
 9599+palette = 15=#dbd6d1
 9600+background = #16130f
 9601+foreground = #a39a90
 9602+cursor-color = #a39a90
 9603+cursor-text = #16130f
 9604+selection-background = #433b32
 9605+selection-foreground = #a39a90
 9606diff --git a/ghostty-themes/farmhouse-dark b/ghostty-themes/farmhouse-dark
 9607new file mode 100644
 9608index 0000000000000000000000000000000000000000..997559216537545b0e9f74900a6b8ab5dd5c2785
 9609--- /dev/null
 9610+++ b/ghostty-themes/farmhouse-dark
 9611@@ -0,0 +1,22 @@
 9612+palette = 0=#1d2027
 9613+palette = 1=#ba0004
 9614+palette = 2=#549d00
 9615+palette = 3=#c87300
 9616+palette = 4=#0049e6
 9617+palette = 5=#9f1b61
 9618+palette = 6=#1fb65c
 9619+palette = 7=#e8e4e1
 9620+palette = 8=#394047
 9621+palette = 9=#eb0009
 9622+palette = 10=#7ac100
 9623+palette = 11=#ea9a00
 9624+palette = 12=#006efe
 9625+palette = 13=#bf3b7f
 9626+palette = 14=#19e062
 9627+palette = 15=#f4eef0
 9628+background = #1d2027
 9629+foreground = #e8e4e1
 9630+cursor-color = #006efe
 9631+cursor-text = #e8e4e1
 9632+selection-background = #4d5658
 9633+selection-foreground = #b3b1aa
 9634diff --git a/ghostty-themes/farmhouse-light b/ghostty-themes/farmhouse-light
 9635new file mode 100644
 9636index 0000000000000000000000000000000000000000..ee74b1742f38cb2d91cf0302ff689d08e1d6979a
 9637--- /dev/null
 9638+++ b/ghostty-themes/farmhouse-light
 9639@@ -0,0 +1,22 @@
 9640+palette = 0=#1d2027
 9641+palette = 1=#8d0003
 9642+palette = 2=#3a7d00
 9643+palette = 3=#a95600
 9644+palette = 4=#092ccd
 9645+palette = 5=#820046
 9646+palette = 6=#229256
 9647+palette = 7=#e8e4e1
 9648+palette = 8=#394047
 9649+palette = 9=#eb0009
 9650+palette = 10=#7ac100
 9651+palette = 11=#ea9a00
 9652+palette = 12=#006efe
 9653+palette = 13=#bf3b7f
 9654+palette = 14=#19e062
 9655+palette = 15=#f4eef0
 9656+background = #e8e4e1
 9657+foreground = #1d2027
 9658+cursor-color = #006efe
 9659+cursor-text = #1d2027
 9660+selection-background = #b3b1aa
 9661+selection-foreground = #4d5658
 9662diff --git a/ghostty-themes/flexoki-dark b/ghostty-themes/flexoki-dark
 9663new file mode 100644
 9664index 0000000000000000000000000000000000000000..9b4146b5d215adbef25aaece042b5fc3f0daef9c
 9665--- /dev/null
 9666+++ b/ghostty-themes/flexoki-dark
 9667@@ -0,0 +1,22 @@
 9668+palette = 0=#100f0f
 9669+palette = 1=#d14d41
 9670+palette = 2=#879a39
 9671+palette = 3=#d0a215
 9672+palette = 4=#4385be
 9673+palette = 5=#ce5d97
 9674+palette = 6=#3aa99f
 9675+palette = 7=#878580
 9676+palette = 8=#575653
 9677+palette = 9=#af3029
 9678+palette = 10=#66800b
 9679+palette = 11=#ad8301
 9680+palette = 12=#205ea6
 9681+palette = 13=#a02f6f
 9682+palette = 14=#24837b
 9683+palette = 15=#cecdc3
 9684+background = #100f0f
 9685+foreground = #cecdc3
 9686+cursor-color = #cecdc3
 9687+cursor-text = #100f0f
 9688+selection-background = #cecdc3
 9689+selection-foreground = #100f0f
 9690diff --git a/ghostty-themes/flexoki-light b/ghostty-themes/flexoki-light
 9691new file mode 100644
 9692index 0000000000000000000000000000000000000000..4bc063fcc840541b219f8ecd17d6a3c9cdb664e1
 9693--- /dev/null
 9694+++ b/ghostty-themes/flexoki-light
 9695@@ -0,0 +1,22 @@
 9696+palette = 0=#100f0f
 9697+palette = 1=#af3029
 9698+palette = 2=#66800b
 9699+palette = 3=#ad8301
 9700+palette = 4=#205ea6
 9701+palette = 5=#a02f6f
 9702+palette = 6=#24837b
 9703+palette = 7=#6f6e69
 9704+palette = 8=#b7b5ac
 9705+palette = 9=#d14d41
 9706+palette = 10=#879a39
 9707+palette = 11=#d0a215
 9708+palette = 12=#4385be
 9709+palette = 13=#ce5d97
 9710+palette = 14=#3aa99f
 9711+palette = 15=#cecdc3
 9712+background = #fffcf0
 9713+foreground = #100f0f
 9714+cursor-color = #100f0f
 9715+cursor-text = #fffcf0
 9716+selection-background = #6f6e69
 9717+selection-foreground = #fffcf0
 9718diff --git a/ghostty-themes/gruber-darker b/ghostty-themes/gruber-darker
 9719new file mode 100644
 9720index 0000000000000000000000000000000000000000..062de5251adc0422704e288a3f31c2dfc7234269
 9721--- /dev/null
 9722+++ b/ghostty-themes/gruber-darker
 9723@@ -0,0 +1,22 @@
 9724+palette = 0=#181818
 9725+palette = 1=#f43841
 9726+palette = 2=#73d936
 9727+palette = 3=#ffdd33
 9728+palette = 4=#96a6c8
 9729+palette = 5=#9e95c7
 9730+palette = 6=#95a99f
 9731+palette = 7=#e4e4e4
 9732+palette = 8=#52494e
 9733+palette = 9=#ff4f58
 9734+palette = 10=#73d936
 9735+palette = 11=#ffdd33
 9736+palette = 12=#96a6c8
 9737+palette = 13=#afafd7
 9738+palette = 14=#95a99f
 9739+palette = 15=#f5f5f5
 9740+background = #181818
 9741+foreground = #e4e4e4
 9742+cursor-color = #ffdd33
 9743+cursor-text = #ffffff
 9744+selection-background = #ffffff
 9745+selection-foreground = #52494e
 9746diff --git a/ghostty-themes/gruvbox-material b/ghostty-themes/gruvbox-material
 9747new file mode 100644
 9748index 0000000000000000000000000000000000000000..6e67b3785cec776902d3faee69c84224a61c5112
 9749--- /dev/null
 9750+++ b/ghostty-themes/gruvbox-material
 9751@@ -0,0 +1,22 @@
 9752+palette = 0=#141617
 9753+palette = 1=#ea6962
 9754+palette = 2=#a9b665
 9755+palette = 3=#d8a657
 9756+palette = 4=#7daea3
 9757+palette = 5=#d3869b
 9758+palette = 6=#89b482
 9759+palette = 7=#ddc7a1
 9760+palette = 8=#666666
 9761+palette = 9=#ea6962
 9762+palette = 10=#a9b665
 9763+palette = 11=#d8a657
 9764+palette = 12=#7daea3
 9765+palette = 13=#d3869b
 9766+palette = 14=#89b482
 9767+palette = 15=#ddc7a1
 9768+background = #282828
 9769+foreground = #d4be98
 9770+cursor-color = #ffffff
 9771+cursor-text = #141617
 9772+selection-background = #2b2c3f
 9773+selection-foreground = #333e34
 9774diff --git a/ghostty-themes/heeler b/ghostty-themes/heeler
 9775new file mode 100644
 9776index 0000000000000000000000000000000000000000..26131cbc87ab7fcda5fcf43abd325bb47fbed80c
 9777--- /dev/null
 9778+++ b/ghostty-themes/heeler
 9779@@ -0,0 +1,22 @@
 9780+palette = 0=#000000
 9781+palette = 1=#d3573b
 9782+palette = 2=#c1d041
 9783+palette = 3=#eecf75
 9784+palette = 4=#6da3ec
 9785+palette = 5=#fd9bc1
 9786+palette = 6=#fe9d6e
 9787+palette = 7=#ffffff
 9788+palette = 8=#000000
 9789+palette = 9=#d3573b
 9790+palette = 10=#c1d041
 9791+palette = 11=#eecf75
 9792+palette = 12=#2c86ff
 9793+palette = 13=#fd9bc1
 9794+palette = 14=#92a5df
 9795+palette = 15=#ffffff
 9796+background = #211f44
 9797+foreground = #fdfdfd
 9798+cursor-color = #ffffff
 9799+cursor-text = #000000
 9800+selection-background = #2b2c3f
 9801+selection-foreground = #7cfb70
 9802diff --git a/ghostty-themes/iTerm2 Dark Background b/ghostty-themes/iTerm2 Dark Background
 9803new file mode 100644
 9804index 0000000000000000000000000000000000000000..1943e420fa546af39e620b650d94360c90ecacfb
 9805--- /dev/null
 9806+++ b/ghostty-themes/iTerm2 Dark Background
 9807@@ -0,0 +1,22 @@
 9808+palette = 0=#000000
 9809+palette = 1=#c91b00
 9810+palette = 2=#00c200
 9811+palette = 3=#c7c400
 9812+palette = 4=#0225c7
 9813+palette = 5=#ca30c7
 9814+palette = 6=#00c5c7
 9815+palette = 7=#c7c7c7
 9816+palette = 8=#686868
 9817+palette = 9=#ff6e67
 9818+palette = 10=#5ffa68
 9819+palette = 11=#fffc67
 9820+palette = 12=#6871ff
 9821+palette = 13=#ff77ff
 9822+palette = 14=#60fdff
 9823+palette = 15=#ffffff
 9824+background = #000000
 9825+foreground = #c7c7c7
 9826+cursor-color = #c7c7c7
 9827+cursor-text = #ffffff
 9828+selection-background = #c1deff
 9829+selection-foreground = #000000
 9830diff --git a/ghostty-themes/iTerm2 Default b/ghostty-themes/iTerm2 Default
 9831new file mode 100644
 9832index 0000000000000000000000000000000000000000..716203cb4a094039983f688bb5ae1e7562ab0143
 9833--- /dev/null
 9834+++ b/ghostty-themes/iTerm2 Default
 9835@@ -0,0 +1,22 @@
 9836+palette = 0=#000000
 9837+palette = 1=#c91b00
 9838+palette = 2=#00c200
 9839+palette = 3=#c7c400
 9840+palette = 4=#2225c4
 9841+palette = 5=#ca30c7
 9842+palette = 6=#00c5c7
 9843+palette = 7=#ffffff
 9844+palette = 8=#686868
 9845+palette = 9=#ff6e67
 9846+palette = 10=#5ffa68
 9847+palette = 11=#fffc67
 9848+palette = 12=#6871ff
 9849+palette = 13=#ff77ff
 9850+palette = 14=#60fdff
 9851+palette = 15=#ffffff
 9852+background = #000000
 9853+foreground = #ffffff
 9854+cursor-color = #e5e5e5
 9855+cursor-text = #000000
 9856+selection-background = #c1deff
 9857+selection-foreground = #000000
 9858diff --git a/ghostty-themes/iTerm2 Light Background b/ghostty-themes/iTerm2 Light Background
 9859new file mode 100644
 9860index 0000000000000000000000000000000000000000..8a1f8691aaf399f0cc5a3b41f6a3439bb501e213
 9861--- /dev/null
 9862+++ b/ghostty-themes/iTerm2 Light Background
 9863@@ -0,0 +1,22 @@
 9864+palette = 0=#000000
 9865+palette = 1=#c91b00
 9866+palette = 2=#00c200
 9867+palette = 3=#c7c400
 9868+palette = 4=#0225c7
 9869+palette = 5=#ca30c7
 9870+palette = 6=#00c5c7
 9871+palette = 7=#c7c7c7
 9872+palette = 8=#686868
 9873+palette = 9=#ff6e67
 9874+palette = 10=#5ffa68
 9875+palette = 11=#fffc67
 9876+palette = 12=#6871ff
 9877+palette = 13=#ff77ff
 9878+palette = 14=#60fdff
 9879+palette = 15=#ffffff
 9880+background = #ffffff
 9881+foreground = #000000
 9882+cursor-color = #000000
 9883+cursor-text = #ffffff
 9884+selection-background = #c1deff
 9885+selection-foreground = #000000
 9886diff --git a/ghostty-themes/iTerm2 Pastel Dark Background b/ghostty-themes/iTerm2 Pastel Dark Background
 9887new file mode 100644
 9888index 0000000000000000000000000000000000000000..ee19d79a964c5a7b8e361f2ffac566a4acd395c2
 9889--- /dev/null
 9890+++ b/ghostty-themes/iTerm2 Pastel Dark Background
 9891@@ -0,0 +1,22 @@
 9892+palette = 0=#626262
 9893+palette = 1=#ff8373
 9894+palette = 2=#b4fb73
 9895+palette = 3=#fffdc3
 9896+palette = 4=#a5d5fe
 9897+palette = 5=#ff90fe
 9898+palette = 6=#d1d1fe
 9899+palette = 7=#f1f1f1
 9900+palette = 8=#8f8f8f
 9901+palette = 9=#ffc4be
 9902+palette = 10=#d6fcba
 9903+palette = 11=#fffed5
 9904+palette = 12=#c2e3ff
 9905+palette = 13=#ffb2fe
 9906+palette = 14=#e6e6fe
 9907+palette = 15=#ffffff
 9908+background = #000000
 9909+foreground = #c7c7c7
 9910+cursor-color = #ffb473
 9911+cursor-text = #ffffff
 9912+selection-background = #454d96
 9913+selection-foreground = #f4f4f4
 9914diff --git a/ghostty-themes/iTerm2 Smoooooth b/ghostty-themes/iTerm2 Smoooooth
 9915new file mode 100644
 9916index 0000000000000000000000000000000000000000..76f1c5466a034dfad32b7bfb1d3fdbf22d3933cb
 9917--- /dev/null
 9918+++ b/ghostty-themes/iTerm2 Smoooooth
 9919@@ -0,0 +1,22 @@
 9920+palette = 0=#14191e
 9921+palette = 1=#b43c2a
 9922+palette = 2=#00c200
 9923+palette = 3=#c7c400
 9924+palette = 4=#2744c7
 9925+palette = 5=#c040be
 9926+palette = 6=#00c5c7
 9927+palette = 7=#c7c7c7
 9928+palette = 8=#686868
 9929+palette = 9=#dd7975
 9930+palette = 10=#58e790
 9931+palette = 11=#ece100
 9932+palette = 12=#a7abf2
 9933+palette = 13=#e17ee1
 9934+palette = 14=#60fdff
 9935+palette = 15=#ffffff
 9936+background = #15191f
 9937+foreground = #dcdcdc
 9938+cursor-color = #ffffff
 9939+cursor-text = #000000
 9940+selection-background = #b3d7ff
 9941+selection-foreground = #000000
 9942diff --git a/ghostty-themes/iTerm2 Solarized Dark b/ghostty-themes/iTerm2 Solarized Dark
 9943new file mode 100644
 9944index 0000000000000000000000000000000000000000..3c484144aa8d7cca60ae3546fea47cc074a4e33a
 9945--- /dev/null
 9946+++ b/ghostty-themes/iTerm2 Solarized Dark
 9947@@ -0,0 +1,22 @@
 9948+palette = 0=#073642
 9949+palette = 1=#dc322f
 9950+palette = 2=#859900
 9951+palette = 3=#b58900
 9952+palette = 4=#268bd2
 9953+palette = 5=#d33682
 9954+palette = 6=#2aa198
 9955+palette = 7=#eee8d5
 9956+palette = 8=#002b36
 9957+palette = 9=#cb4b16
 9958+palette = 10=#586e75
 9959+palette = 11=#657b83
 9960+palette = 12=#839496
 9961+palette = 13=#6c71c4
 9962+palette = 14=#93a1a1
 9963+palette = 15=#fdf6e3
 9964+background = #002b36
 9965+foreground = #839496
 9966+cursor-color = #839496
 9967+cursor-text = #073642
 9968+selection-background = #073642
 9969+selection-foreground = #93a1a1
 9970diff --git a/ghostty-themes/iTerm2 Solarized Light b/ghostty-themes/iTerm2 Solarized Light
 9971new file mode 100644
 9972index 0000000000000000000000000000000000000000..5c82b7982094bde2696e0c02458747e3566137ef
 9973--- /dev/null
 9974+++ b/ghostty-themes/iTerm2 Solarized Light
 9975@@ -0,0 +1,22 @@
 9976+palette = 0=#073642
 9977+palette = 1=#dc322f
 9978+palette = 2=#859900
 9979+palette = 3=#b58900
 9980+palette = 4=#268bd2
 9981+palette = 5=#d33682
 9982+palette = 6=#2aa198
 9983+palette = 7=#eee8d5
 9984+palette = 8=#002b36
 9985+palette = 9=#cb4b16
 9986+palette = 10=#586e75
 9987+palette = 11=#657b83
 9988+palette = 12=#839496
 9989+palette = 13=#6c71c4
 9990+palette = 14=#93a1a1
 9991+palette = 15=#fdf6e3
 9992+background = #fdf6e3
 9993+foreground = #657b83
 9994+cursor-color = #657b83
 9995+cursor-text = #eee8d5
 9996+selection-background = #eee8d5
 9997+selection-foreground = #586e75
 9998diff --git a/ghostty-themes/iTerm2 Tango Dark b/ghostty-themes/iTerm2 Tango Dark
 9999new file mode 100644
10000index 0000000000000000000000000000000000000000..4dd8439913e150d66c7d0a1cf7324f02fc293a9e
10001--- /dev/null
10002+++ b/ghostty-themes/iTerm2 Tango Dark
10003@@ -0,0 +1,22 @@
10004+palette = 0=#000000
10005+palette = 1=#d81e00
10006+palette = 2=#5ea702
10007+palette = 3=#cfae00
10008+palette = 4=#427ab3
10009+palette = 5=#89658e
10010+palette = 6=#00a7aa
10011+palette = 7=#dbded8
10012+palette = 8=#686a66
10013+palette = 9=#f54235
10014+palette = 10=#99e343
10015+palette = 11=#fdeb61
10016+palette = 12=#84b0d8
10017+palette = 13=#bc94b7
10018+palette = 14=#37e6e8
10019+palette = 15=#f1f1f0
10020+background = #000000
10021+foreground = #ffffff
10022+cursor-color = #ffffff
10023+cursor-text = #000000
10024+selection-background = #c1deff
10025+selection-foreground = #000000
10026diff --git a/ghostty-themes/iTerm2 Tango Light b/ghostty-themes/iTerm2 Tango Light
10027new file mode 100644
10028index 0000000000000000000000000000000000000000..b8caef829b6eadda4fe2352eb4632e254b4a5273
10029--- /dev/null
10030+++ b/ghostty-themes/iTerm2 Tango Light
10031@@ -0,0 +1,22 @@
10032+palette = 0=#000000
10033+palette = 1=#d81e00
10034+palette = 2=#5ea702
10035+palette = 3=#cfae00
10036+palette = 4=#427ab3
10037+palette = 5=#89658e
10038+palette = 6=#00a7aa
10039+palette = 7=#dbded8
10040+palette = 8=#686a66
10041+palette = 9=#f54235
10042+palette = 10=#99e343
10043+palette = 11=#fdeb61
10044+palette = 12=#84b0d8
10045+palette = 13=#bc94b7
10046+palette = 14=#37e6e8
10047+palette = 15=#f1f1f0
10048+background = #ffffff
10049+foreground = #000000
10050+cursor-color = #000000
10051+cursor-text = #ffffff
10052+selection-background = #c1deff
10053+selection-foreground = #000000
10054diff --git a/ghostty-themes/iceberg-dark b/ghostty-themes/iceberg-dark
10055new file mode 100644
10056index 0000000000000000000000000000000000000000..77d8c2372870436d1a0c8b98634641d82b272cc5
10057--- /dev/null
10058+++ b/ghostty-themes/iceberg-dark
10059@@ -0,0 +1,22 @@
10060+palette = 0=#1e2132
10061+palette = 1=#e27878
10062+palette = 2=#b4be82
10063+palette = 3=#e2a478
10064+palette = 4=#84a0c6
10065+palette = 5=#a093c7
10066+palette = 6=#89b8c2
10067+palette = 7=#c6c8d1
10068+palette = 8=#6b7089
10069+palette = 9=#e98989
10070+palette = 10=#c0ca8e
10071+palette = 11=#e9b189
10072+palette = 12=#91acd1
10073+palette = 13=#ada0d3
10074+palette = 14=#95c4ce
10075+palette = 15=#d2d4de
10076+background = #161821
10077+foreground = #c6c8d1
10078+cursor-color = #c6c8d1
10079+cursor-text = #161821
10080+selection-background = #c6c8d1
10081+selection-foreground = #161821
10082diff --git a/ghostty-themes/iceberg-light b/ghostty-themes/iceberg-light
10083new file mode 100644
10084index 0000000000000000000000000000000000000000..86c304e8f13d3d215eba4ff448ef5df605e73732
10085--- /dev/null
10086+++ b/ghostty-themes/iceberg-light
10087@@ -0,0 +1,22 @@
10088+palette = 0=#dcdfe7
10089+palette = 1=#cc517a
10090+palette = 2=#668e3d
10091+palette = 3=#c57339
10092+palette = 4=#2d539e
10093+palette = 5=#7759b4
10094+palette = 6=#3f83a6
10095+palette = 7=#33374c
10096+palette = 8=#8389a3
10097+palette = 9=#cc3768
10098+palette = 10=#598030
10099+palette = 11=#b6662d
10100+palette = 12=#22478e
10101+palette = 13=#6845ad
10102+palette = 14=#327698
10103+palette = 15=#262a3f
10104+background = #e8e9ec
10105+foreground = #33374c
10106+cursor-color = #33374c
10107+cursor-text = #e8e9ec
10108+selection-background = #33374c
10109+selection-foreground = #e8e9ec
10110diff --git a/ghostty-themes/idea b/ghostty-themes/idea
10111new file mode 100644
10112index 0000000000000000000000000000000000000000..3e1e5cd38aad8131052a9b9bb25e786c02a67d6e
10113--- /dev/null
10114+++ b/ghostty-themes/idea
10115@@ -0,0 +1,22 @@
10116+palette = 0=#adadad
10117+palette = 1=#fc5256
10118+palette = 2=#98b61c
10119+palette = 3=#ccb444
10120+palette = 4=#437ee7
10121+palette = 5=#9d74b0
10122+palette = 6=#248887
10123+palette = 7=#181818
10124+palette = 8=#ffffff
10125+palette = 9=#fc7072
10126+palette = 10=#98b61c
10127+palette = 11=#ffff0b
10128+palette = 12=#6c9ced
10129+palette = 13=#fc7eff
10130+palette = 14=#248887
10131+palette = 15=#181818
10132+background = #202020
10133+foreground = #adadad
10134+cursor-color = #bbbbbb
10135+cursor-text = #ffffff
10136+selection-background = #44475a
10137+selection-foreground = #ffffff
10138diff --git a/ghostty-themes/idleToes b/ghostty-themes/idleToes
10139new file mode 100644
10140index 0000000000000000000000000000000000000000..cb4251c5eb145ac4ae7b9c415ea5cebd7aebaba2
10141--- /dev/null
10142+++ b/ghostty-themes/idleToes
10143@@ -0,0 +1,22 @@
10144+palette = 0=#323232
10145+palette = 1=#d25252
10146+palette = 2=#7fe173
10147+palette = 3=#ffc66d
10148+palette = 4=#4099ff
10149+palette = 5=#f680ff
10150+palette = 6=#bed6ff
10151+palette = 7=#eeeeec
10152+palette = 8=#535353
10153+palette = 9=#f07070
10154+palette = 10=#9dff91
10155+palette = 11=#ffe48b
10156+palette = 12=#5eb7f7
10157+palette = 13=#ff9dff
10158+palette = 14=#dcf4ff
10159+palette = 15=#ffffff
10160+background = #323232
10161+foreground = #ffffff
10162+cursor-color = #d6d6d6
10163+cursor-text = #000000
10164+selection-background = #5b5b5b
10165+selection-foreground = #000000
10166diff --git a/ghostty-themes/jubi b/ghostty-themes/jubi
10167new file mode 100644
10168index 0000000000000000000000000000000000000000..922a9d221d68bbc34108a00fe301710bcdd085e6
10169--- /dev/null
10170+++ b/ghostty-themes/jubi
10171@@ -0,0 +1,22 @@
10172+palette = 0=#3b3750
10173+palette = 1=#cf7b98
10174+palette = 2=#90a94b
10175+palette = 3=#6ebfc0
10176+palette = 4=#576ea6
10177+palette = 5=#bc4f68
10178+palette = 6=#75a7d2
10179+palette = 7=#c3d3de
10180+palette = 8=#a874ce
10181+palette = 9=#de90ab
10182+palette = 10=#bcdd61
10183+palette = 11=#87e9ea
10184+palette = 12=#8c9fcd
10185+palette = 13=#e16c87
10186+palette = 14=#b7c9ef
10187+palette = 15=#d5e5f1
10188+background = #262b33
10189+foreground = #c3d3de
10190+cursor-color = #c3d3de
10191+cursor-text = #1e1b2e
10192+selection-background = #5b5184
10193+selection-foreground = #1e1b2e
10194diff --git a/ghostty-themes/kanagawabones b/ghostty-themes/kanagawabones
10195new file mode 100644
10196index 0000000000000000000000000000000000000000..691694bcd67af10447c95d394238606567b5026a
10197--- /dev/null
10198+++ b/ghostty-themes/kanagawabones
10199@@ -0,0 +1,22 @@
10200+palette = 0=#1f1f28
10201+palette = 1=#e46a78
10202+palette = 2=#98bc6d
10203+palette = 3=#e5c283
10204+palette = 4=#7eb3c9
10205+palette = 5=#957fb8
10206+palette = 6=#7eb3c9
10207+palette = 7=#ddd8bb
10208+palette = 8=#3c3c51
10209+palette = 9=#ec818c
10210+palette = 10=#9ec967
10211+palette = 11=#f1c982
10212+palette = 12=#7bc2df
10213+palette = 13=#a98fd2
10214+palette = 14=#7bc2df
10215+palette = 15=#a8a48d
10216+background = #1f1f28
10217+foreground = #ddd8bb
10218+cursor-color = #e6e0c2
10219+cursor-text = #1f1f28
10220+selection-background = #49473e
10221+selection-foreground = #ddd8bb
10222diff --git a/ghostty-themes/kurokula b/ghostty-themes/kurokula
10223new file mode 100644
10224index 0000000000000000000000000000000000000000..be05d73e80c8bf849bd94cbc2791517f107317ae
10225--- /dev/null
10226+++ b/ghostty-themes/kurokula
10227@@ -0,0 +1,22 @@
10228+palette = 0=#333333
10229+palette = 1=#b66056
10230+palette = 2=#85b1a9
10231+palette = 3=#dbbb43
10232+palette = 4=#6890d7
10233+palette = 5=#887aa3
10234+palette = 6=#837369
10235+palette = 7=#ddd0c4
10236+palette = 8=#515151
10237+palette = 9=#ffc663
10238+palette = 10=#c1ffae
10239+palette = 11=#fff700
10240+palette = 12=#a1d9ff
10241+palette = 13=#a994ff
10242+palette = 14=#f9cfb9
10243+palette = 15=#ffffff
10244+background = #141515
10245+foreground = #ddd0c4
10246+cursor-color = #702420
10247+cursor-text = #fefbf3
10248+selection-background = #515151
10249+selection-foreground = #ffc663
10250diff --git a/ghostty-themes/lovelace b/ghostty-themes/lovelace
10251new file mode 100644
10252index 0000000000000000000000000000000000000000..f6cc49348e7711a8b90da88a6163a31b05ab46fa
10253--- /dev/null
10254+++ b/ghostty-themes/lovelace
10255@@ -0,0 +1,22 @@
10256+palette = 0=#282a36
10257+palette = 1=#f37f97
10258+palette = 2=#5adecd
10259+palette = 3=#f2a272
10260+palette = 4=#8897f4
10261+palette = 5=#c574dd
10262+palette = 6=#79e6f3
10263+palette = 7=#fdfdfd
10264+palette = 8=#414458
10265+palette = 9=#ff4971
10266+palette = 10=#18e3c8
10267+palette = 11=#ff8037
10268+palette = 12=#556fff
10269+palette = 13=#b043d1
10270+palette = 14=#3fdcee
10271+palette = 15=#bebec1
10272+background = #1d1f28
10273+foreground = #fdfdfd
10274+cursor-color = #c574dd
10275+cursor-text = #ffffff
10276+selection-background = #c1deff
10277+selection-foreground = #000000
10278diff --git a/ghostty-themes/matrix b/ghostty-themes/matrix
10279new file mode 100644
10280index 0000000000000000000000000000000000000000..983423f2d7b51eb6ed5accee4c3c0d13890ebc43
10281--- /dev/null
10282+++ b/ghostty-themes/matrix
10283@@ -0,0 +1,22 @@
10284+palette = 0=#0f191c
10285+palette = 1=#23755a
10286+palette = 2=#82d967
10287+palette = 3=#ffd700
10288+palette = 4=#3f5242
10289+palette = 5=#409931
10290+palette = 6=#50b45a
10291+palette = 7=#507350
10292+palette = 8=#688060
10293+palette = 9=#2fc079
10294+palette = 10=#90d762
10295+palette = 11=#faff00
10296+palette = 12=#4f7e7e
10297+palette = 13=#11ff25
10298+palette = 14=#c1ff8a
10299+palette = 15=#678c61
10300+background = #0f191c
10301+foreground = #426644
10302+cursor-color = #384545
10303+cursor-text = #00ff00
10304+selection-background = #18282e
10305+selection-foreground = #00ff87
10306diff --git a/ghostty-themes/mellow b/ghostty-themes/mellow
10307new file mode 100644
10308index 0000000000000000000000000000000000000000..ad69b84012fe36425f74ea37110308a2470bffa1
10309--- /dev/null
10310+++ b/ghostty-themes/mellow
10311@@ -0,0 +1,22 @@
10312+palette = 0=#27272a
10313+palette = 1=#f5a191
10314+palette = 2=#90b99f
10315+palette = 3=#e6b99d
10316+palette = 4=#aca1cf
10317+palette = 5=#e29eca
10318+palette = 6=#ea83a5
10319+palette = 7=#c1c0d4
10320+palette = 8=#353539
10321+palette = 9=#ffae9f
10322+palette = 10=#9dc6ac
10323+palette = 11=#f0c5a9
10324+palette = 12=#b9aeda
10325+palette = 13=#ecaad6
10326+palette = 14=#f591b2
10327+palette = 15=#cac9dd
10328+background = #161617
10329+foreground = #c9c7cd
10330+cursor-color = #cac9dd
10331+cursor-text = #161617
10332+selection-background = #2a2a2d
10333+selection-foreground = #c1c0d4
10334diff --git a/ghostty-themes/miasma b/ghostty-themes/miasma
10335new file mode 100644
10336index 0000000000000000000000000000000000000000..20dfe882010de254c68878cc42f304e68b7b3bdf
10337--- /dev/null
10338+++ b/ghostty-themes/miasma
10339@@ -0,0 +1,22 @@
10340+palette = 0=#000000
10341+palette = 1=#685742
10342+palette = 2=#5f875f
10343+palette = 3=#b36d43
10344+palette = 4=#78824b
10345+palette = 5=#bb7744
10346+palette = 6=#c9a554
10347+palette = 7=#d7c483
10348+palette = 8=#666666
10349+palette = 9=#685742
10350+palette = 10=#5f875f
10351+palette = 11=#b36d43
10352+palette = 12=#78824b
10353+palette = 13=#bb7744
10354+palette = 14=#c9a554
10355+palette = 15=#d7c483
10356+background = #222222
10357+foreground = #c2c2b0
10358+cursor-color = #c7c7c7
10359+cursor-text = #eeeeee
10360+selection-background = #e5c47b
10361+selection-foreground = #000000
10362diff --git a/ghostty-themes/midnight-in-mojave b/ghostty-themes/midnight-in-mojave
10363new file mode 100644
10364index 0000000000000000000000000000000000000000..0c19e72a493714482e1239162eada1e4c412ab86
10365--- /dev/null
10366+++ b/ghostty-themes/midnight-in-mojave
10367@@ -0,0 +1,22 @@
10368+palette = 0=#1e1e1e
10369+palette = 1=#ff453a
10370+palette = 2=#32d74b
10371+palette = 3=#ffd60a
10372+palette = 4=#0a84ff
10373+palette = 5=#bf5af2
10374+palette = 6=#5ac8fa
10375+palette = 7=#ffffff
10376+palette = 8=#1e1e1e
10377+palette = 9=#ff453a
10378+palette = 10=#32d74b
10379+palette = 11=#ffd60a
10380+palette = 12=#0a84ff
10381+palette = 13=#bf5af2
10382+palette = 14=#5ac8fa
10383+palette = 15=#ffffff
10384+background = #1e1e1e
10385+foreground = #ffffff
10386+cursor-color = #32d74b
10387+cursor-text = #1c1c1c
10388+selection-background = #4a504d
10389+selection-foreground = #ffffff
10390diff --git a/ghostty-themes/neobones_dark b/ghostty-themes/neobones_dark
10391new file mode 100644
10392index 0000000000000000000000000000000000000000..8b263cc87b8bde61e79dcb263e8709796ba79484
10393--- /dev/null
10394+++ b/ghostty-themes/neobones_dark
10395@@ -0,0 +1,22 @@
10396+palette = 0=#0f191f
10397+palette = 1=#de6e7c
10398+palette = 2=#90ff6b
10399+palette = 3=#b77e64
10400+palette = 4=#8190d4
10401+palette = 5=#b279a7
10402+palette = 6=#66a5ad
10403+palette = 7=#c6d5cf
10404+palette = 8=#263945
10405+palette = 9=#e8838f
10406+palette = 10=#a0ff85
10407+palette = 11=#d68c67
10408+palette = 12=#92a0e2
10409+palette = 13=#cf86c1
10410+palette = 14=#65b8c1
10411+palette = 15=#98a39e
10412+background = #0f191f
10413+foreground = #c6d5cf
10414+cursor-color = #ceddd7
10415+cursor-text = #0f191f
10416+selection-background = #3a3e3d
10417+selection-foreground = #c6d5cf
10418diff --git a/ghostty-themes/neobones_light b/ghostty-themes/neobones_light
10419new file mode 100644
10420index 0000000000000000000000000000000000000000..20ab7b6efb2534091e070e0868463a52f6f535b3
10421--- /dev/null
10422+++ b/ghostty-themes/neobones_light
10423@@ -0,0 +1,22 @@
10424+palette = 0=#e5ede6
10425+palette = 1=#a8334c
10426+palette = 2=#567a30
10427+palette = 3=#944927
10428+palette = 4=#286486
10429+palette = 5=#88507d
10430+palette = 6=#3b8992
10431+palette = 7=#202e18
10432+palette = 8=#b3c6b6
10433+palette = 9=#94253e
10434+palette = 10=#3f5a22
10435+palette = 11=#803d1c
10436+palette = 12=#1d5573
10437+palette = 13=#7b3b70
10438+palette = 14=#2b747c
10439+palette = 15=#415934
10440+background = #e5ede6
10441+foreground = #202e18
10442+cursor-color = #202e18
10443+cursor-text = #e5ede6
10444+selection-background = #ade48c
10445+selection-foreground = #202e18
10446diff --git a/ghostty-themes/nightfox b/ghostty-themes/nightfox
10447new file mode 100644
10448index 0000000000000000000000000000000000000000..32e4f79c28689c22902c4e75443febc1e192a10b
10449--- /dev/null
10450+++ b/ghostty-themes/nightfox
10451@@ -0,0 +1,22 @@
10452+palette = 0=#393b44
10453+palette = 1=#c94f6d
10454+palette = 2=#81b29a
10455+palette = 3=#dbc074
10456+palette = 4=#719cd6
10457+palette = 5=#9d79d6
10458+palette = 6=#63cdcf
10459+palette = 7=#dfdfe0
10460+palette = 8=#575860
10461+palette = 9=#d16983
10462+palette = 10=#8ebaa4
10463+palette = 11=#e0c989
10464+palette = 12=#86abdc
10465+palette = 13=#baa1e2
10466+palette = 14=#7ad5d6
10467+palette = 15=#e4e4e5
10468+background = #192330
10469+foreground = #cdcecf
10470+cursor-color = #cdcecf
10471+cursor-text = #192330
10472+selection-background = #2b3b51
10473+selection-foreground = #cdcecf
10474diff --git a/ghostty-themes/niji b/ghostty-themes/niji
10475new file mode 100644
10476index 0000000000000000000000000000000000000000..72d80eadf87e0da8ce1c3249d71fcd632a4efbea
10477--- /dev/null
10478+++ b/ghostty-themes/niji
10479@@ -0,0 +1,22 @@
10480+palette = 0=#333333
10481+palette = 1=#d23e08
10482+palette = 2=#54ca74
10483+palette = 3=#fff700
10484+palette = 4=#2ab9ff
10485+palette = 5=#ff50da
10486+palette = 6=#1ef9f5
10487+palette = 7=#ddd0c4
10488+palette = 8=#515151
10489+palette = 9=#ffb7b7
10490+palette = 10=#c1ffae
10491+palette = 11=#fcffb8
10492+palette = 12=#8efff3
10493+palette = 13=#ffa2ed
10494+palette = 14=#bcffc7
10495+palette = 15=#ffffff
10496+background = #141515
10497+foreground = #ffffff
10498+cursor-color = #ffc663
10499+cursor-text = #141515
10500+selection-background = #515151
10501+selection-foreground = #ffc663
10502diff --git a/ghostty-themes/nord b/ghostty-themes/nord
10503new file mode 100644
10504index 0000000000000000000000000000000000000000..0f431fa7517f07a1236082f8335f4ddf8a985ec2
10505--- /dev/null
10506+++ b/ghostty-themes/nord
10507@@ -0,0 +1,22 @@
10508+palette = 0=#3b4252
10509+palette = 1=#bf616a
10510+palette = 2=#a3be8c
10511+palette = 3=#ebcb8b
10512+palette = 4=#81a1c1
10513+palette = 5=#b48ead
10514+palette = 6=#88c0d0
10515+palette = 7=#e5e9f0
10516+palette = 8=#4c566a
10517+palette = 9=#bf616a
10518+palette = 10=#a3be8c
10519+palette = 11=#ebcb8b
10520+palette = 12=#81a1c1
10521+palette = 13=#b48ead
10522+palette = 14=#8fbcbb
10523+palette = 15=#eceff4
10524+background = #2e3440
10525+foreground = #d8dee9
10526+cursor-color = #eceff4
10527+cursor-text = #282828
10528+selection-background = #eceff4
10529+selection-foreground = #4c566a
10530diff --git a/ghostty-themes/nord-light b/ghostty-themes/nord-light
10531new file mode 100644
10532index 0000000000000000000000000000000000000000..4a7bf96439e8fad442926fde2d985e6e0ca0e4fa
10533--- /dev/null
10534+++ b/ghostty-themes/nord-light
10535@@ -0,0 +1,22 @@
10536+palette = 0=#3b4252
10537+palette = 1=#bf616a
10538+palette = 2=#a3be8c
10539+palette = 3=#ebcb8b
10540+palette = 4=#81a1c1
10541+palette = 5=#b48ead
10542+palette = 6=#88c0d0
10543+palette = 7=#d8dee9
10544+palette = 8=#4c566a
10545+palette = 9=#bf616a
10546+palette = 10=#a3be8c
10547+palette = 11=#ebcb8b
10548+palette = 12=#81a1c1
10549+palette = 13=#b48ead
10550+palette = 14=#8fbcbb
10551+palette = 15=#eceff4
10552+background = #e5e9f0
10553+foreground = #414858
10554+cursor-color = #88c0d0
10555+cursor-text = #3b4252
10556+selection-background = #d8dee9
10557+selection-foreground = #4c556a
10558diff --git a/ghostty-themes/nord-wave b/ghostty-themes/nord-wave
10559new file mode 100644
10560index 0000000000000000000000000000000000000000..0fafabc90fd2544153778e20c758c84fa6da8426
10561--- /dev/null
10562+++ b/ghostty-themes/nord-wave
10563@@ -0,0 +1,22 @@
10564+palette = 0=#3b4252
10565+palette = 1=#bf616a
10566+palette = 2=#a3be8c
10567+palette = 3=#ebcb8b
10568+palette = 4=#81a1c1
10569+palette = 5=#b48ead
10570+palette = 6=#88c0d0
10571+palette = 7=#e5e9f0
10572+palette = 8=#4c566a
10573+palette = 9=#bf616a
10574+palette = 10=#a3be8c
10575+palette = 11=#ebcb8b
10576+palette = 12=#81a1c1
10577+palette = 13=#b48ead
10578+palette = 14=#8fbcbb
10579+palette = 15=#eceff4
10580+background = #212121
10581+foreground = #d8dee9
10582+cursor-color = #ebcb8b
10583+cursor-text = #ebcb8b
10584+selection-background = #d8dee9
10585+selection-foreground = #212121
10586diff --git a/ghostty-themes/nordfox b/ghostty-themes/nordfox
10587new file mode 100644
10588index 0000000000000000000000000000000000000000..e25bda93e3abcdd44053e2baa4eef38b0a62ebb8
10589--- /dev/null
10590+++ b/ghostty-themes/nordfox
10591@@ -0,0 +1,22 @@
10592+palette = 0=#3b4252
10593+palette = 1=#bf616a
10594+palette = 2=#a3be8c
10595+palette = 3=#ebcb8b
10596+palette = 4=#81a1c1
10597+palette = 5=#b48ead
10598+palette = 6=#88c0d0
10599+palette = 7=#e5e9f0
10600+palette = 8=#465780
10601+palette = 9=#d06f79
10602+palette = 10=#b1d196
10603+palette = 11=#f0d399
10604+palette = 12=#8cafd2
10605+palette = 13=#c895bf
10606+palette = 14=#93ccdc
10607+palette = 15=#e7ecf4
10608+palette = 16=#c9826b
10609+background = #2e3440
10610+foreground = #cdcecf
10611+selection-background = #3e4a5b
10612+selection-foreground = #cdcecf
10613+cursor-color = #cdcecf
10614diff --git a/ghostty-themes/primary b/ghostty-themes/primary
10615new file mode 100644
10616index 0000000000000000000000000000000000000000..af106cbc06dc13e2648f6b88acba3a027108810b
10617--- /dev/null
10618+++ b/ghostty-themes/primary
10619@@ -0,0 +1,22 @@
10620+palette = 0=#000000
10621+palette = 1=#db4437
10622+palette = 2=#0f9d58
10623+palette = 3=#f4b400
10624+palette = 4=#4285f4
10625+palette = 5=#db4437
10626+palette = 6=#4285f4
10627+palette = 7=#ffffff
10628+palette = 8=#000000
10629+palette = 9=#db4437
10630+palette = 10=#0f9d58
10631+palette = 11=#f4b400
10632+palette = 12=#4285f4
10633+palette = 13=#4285f4
10634+palette = 14=#0f9d58
10635+palette = 15=#ffffff
10636+background = #ffffff
10637+foreground = #000000
10638+cursor-color = #000000
10639+cursor-text = #ffffff
10640+selection-background = #656565
10641+selection-foreground = #eeeeee
10642diff --git a/ghostty-themes/purplepeter b/ghostty-themes/purplepeter
10643new file mode 100644
10644index 0000000000000000000000000000000000000000..f905ab249c83de4ae2f418fd99a0c35abfaf4d38
10645--- /dev/null
10646+++ b/ghostty-themes/purplepeter
10647@@ -0,0 +1,22 @@
10648+palette = 0=#0a0520
10649+palette = 1=#ff796d
10650+palette = 2=#99b481
10651+palette = 3=#efdfac
10652+palette = 4=#66d9ef
10653+palette = 5=#e78fcd
10654+palette = 6=#ba8cff
10655+palette = 7=#ffba81
10656+palette = 8=#100b23
10657+palette = 9=#f99f92
10658+palette = 10=#b4be8f
10659+palette = 11=#f2e9bf
10660+palette = 12=#79daed
10661+palette = 13=#ba91d4
10662+palette = 14=#a0a0d6
10663+palette = 15=#b9aed3
10664+background = #2a1a4a
10665+foreground = #ece7fa
10666+cursor-color = #c7c7c7
10667+cursor-text = #ffffff
10668+selection-background = #8689c2
10669+selection-foreground = #271c50
10670diff --git a/ghostty-themes/rebecca b/ghostty-themes/rebecca
10671new file mode 100644
10672index 0000000000000000000000000000000000000000..ec87690d6f0dbdd575c99f754887482561f0c1ed
10673--- /dev/null
10674+++ b/ghostty-themes/rebecca
10675@@ -0,0 +1,22 @@
10676+palette = 0=#12131e
10677+palette = 1=#dd7755
10678+palette = 2=#04dbb5
10679+palette = 3=#f2e7b7
10680+palette = 4=#7aa5ff
10681+palette = 5=#bf9cf9
10682+palette = 6=#56d3c2
10683+palette = 7=#e4e3e9
10684+palette = 8=#666699
10685+palette = 9=#ff92cd
10686+palette = 10=#01eac0
10687+palette = 11=#fffca8
10688+palette = 12=#69c0fa
10689+palette = 13=#c17ff8
10690+palette = 14=#8bfde1
10691+palette = 15=#f4f2f9
10692+background = #292a44
10693+foreground = #e8e6ed
10694+cursor-color = #b89bf9
10695+cursor-text = #292a44
10696+selection-background = #663399
10697+selection-foreground = #f4f2f9
10698diff --git a/ghostty-themes/rose-pine b/ghostty-themes/rose-pine
10699new file mode 100644
10700index 0000000000000000000000000000000000000000..64216a7944de445fa8c213ba098d1ffed6cf34fb
10701--- /dev/null
10702+++ b/ghostty-themes/rose-pine
10703@@ -0,0 +1,22 @@
10704+palette = 0=#26233a
10705+palette = 1=#eb6f92
10706+palette = 2=#31748f
10707+palette = 3=#f6c177
10708+palette = 4=#9ccfd8
10709+palette = 5=#c4a7e7
10710+palette = 6=#ebbcba
10711+palette = 7=#e0def4
10712+palette = 8=#6e6a86
10713+palette = 9=#eb6f92
10714+palette = 10=#31748f
10715+palette = 11=#f6c177
10716+palette = 12=#9ccfd8
10717+palette = 13=#c4a7e7
10718+palette = 14=#ebbcba
10719+palette = 15=#e0def4
10720+background = #191724
10721+foreground = #e0def4
10722+cursor-color = #e0def4
10723+cursor-text = #191724
10724+selection-background = #403d52
10725+selection-foreground = #e0def4
10726diff --git a/ghostty-themes/rose-pine-dawn b/ghostty-themes/rose-pine-dawn
10727new file mode 100644
10728index 0000000000000000000000000000000000000000..844b694faadae5f293b7439f92e63459921a4b57
10729--- /dev/null
10730+++ b/ghostty-themes/rose-pine-dawn
10731@@ -0,0 +1,22 @@
10732+palette = 0=#f2e9e1
10733+palette = 1=#b4637a
10734+palette = 2=#286983
10735+palette = 3=#ea9d34
10736+palette = 4=#56949f
10737+palette = 5=#907aa9
10738+palette = 6=#d7827e
10739+palette = 7=#575279
10740+palette = 8=#9893a5
10741+palette = 9=#b4637a
10742+palette = 10=#286983
10743+palette = 11=#ea9d34
10744+palette = 12=#56949f
10745+palette = 13=#907aa9
10746+palette = 14=#d7827e
10747+palette = 15=#575279
10748+background = #faf4ed
10749+foreground = #575279
10750+cursor-color = #575279
10751+cursor-text = #faf4ed
10752+selection-background = #dfdad9
10753+selection-foreground = #575279
10754diff --git a/ghostty-themes/rose-pine-moon b/ghostty-themes/rose-pine-moon
10755new file mode 100644
10756index 0000000000000000000000000000000000000000..b27429b2eb1287e16b0413eb73d5782aa928b5fc
10757--- /dev/null
10758+++ b/ghostty-themes/rose-pine-moon
10759@@ -0,0 +1,22 @@
10760+palette = 0=#393552
10761+palette = 1=#eb6f92
10762+palette = 2=#3e8fb0
10763+palette = 3=#f6c177
10764+palette = 4=#9ccfd8
10765+palette = 5=#c4a7e7
10766+palette = 6=#ea9a97
10767+palette = 7=#e0def4
10768+palette = 8=#6e6a86
10769+palette = 9=#eb6f92
10770+palette = 10=#3e8fb0
10771+palette = 11=#f6c177
10772+palette = 12=#9ccfd8
10773+palette = 13=#c4a7e7
10774+palette = 14=#ea9a97
10775+palette = 15=#e0def4
10776+background = #232136
10777+foreground = #e0def4
10778+cursor-color = #e0def4
10779+cursor-text = #232136
10780+selection-background = #44415a
10781+selection-foreground = #e0def4
10782diff --git a/ghostty-themes/seoulbones_dark b/ghostty-themes/seoulbones_dark
10783new file mode 100644
10784index 0000000000000000000000000000000000000000..2b864c74a01aefec1b2dd20eca7e86c30e1593de
10785--- /dev/null
10786+++ b/ghostty-themes/seoulbones_dark
10787@@ -0,0 +1,22 @@
10788+palette = 0=#4b4b4b
10789+palette = 1=#e388a3
10790+palette = 2=#98bd99
10791+palette = 3=#ffdf9b
10792+palette = 4=#97bdde
10793+palette = 5=#a5a6c5
10794+palette = 6=#6fbdbe
10795+palette = 7=#dddddd
10796+palette = 8=#6c6465
10797+palette = 9=#eb99b1
10798+palette = 10=#8fcd92
10799+palette = 11=#ffe5b3
10800+palette = 12=#a2c8e9
10801+palette = 13=#b2b3da
10802+palette = 14=#6bcacb
10803+palette = 15=#a8a8a8
10804+background = #4b4b4b
10805+foreground = #dddddd
10806+cursor-color = #e2e2e2
10807+cursor-text = #4b4b4b
10808+selection-background = #777777
10809+selection-foreground = #dddddd
10810diff --git a/ghostty-themes/seoulbones_light b/ghostty-themes/seoulbones_light
10811new file mode 100644
10812index 0000000000000000000000000000000000000000..9b6582b10d8a5517f64c0c291b8dce2ec626886c
10813--- /dev/null
10814+++ b/ghostty-themes/seoulbones_light
10815@@ -0,0 +1,22 @@
10816+palette = 0=#e2e2e2
10817+palette = 1=#dc5284
10818+palette = 2=#628562
10819+palette = 3=#c48562
10820+palette = 4=#0084a3
10821+palette = 5=#896788
10822+palette = 6=#008586
10823+palette = 7=#555555
10824+palette = 8=#bfbabb
10825+palette = 9=#be3c6d
10826+palette = 10=#487249
10827+palette = 11=#a76b48
10828+palette = 12=#006f89
10829+palette = 13=#7f4c7e
10830+palette = 14=#006f70
10831+palette = 15=#777777
10832+background = #e2e2e2
10833+foreground = #555555
10834+cursor-color = #555555
10835+cursor-text = #e2e2e2
10836+selection-background = #cccccc
10837+selection-foreground = #555555
10838diff --git a/ghostty-themes/shades-of-purple b/ghostty-themes/shades-of-purple
10839new file mode 100644
10840index 0000000000000000000000000000000000000000..76ba098502a35d9517b2bc54e6de3b2448480fc0
10841--- /dev/null
10842+++ b/ghostty-themes/shades-of-purple
10843@@ -0,0 +1,22 @@
10844+palette = 0=#000000
10845+palette = 1=#d90429
10846+palette = 2=#3ad900
10847+palette = 3=#ffe700
10848+palette = 4=#6943ff
10849+palette = 5=#ff2c70
10850+palette = 6=#00c5c7
10851+palette = 7=#c7c7c7
10852+palette = 8=#686868
10853+palette = 9=#f92a1c
10854+palette = 10=#43d426
10855+palette = 11=#f1d000
10856+palette = 12=#6871ff
10857+palette = 13=#ff77ff
10858+palette = 14=#79e8fb
10859+palette = 15=#ffffff
10860+background = #1e1d40
10861+foreground = #ffffff
10862+cursor-color = #fad000
10863+cursor-text = #fefff4
10864+selection-background = #b362ff
10865+selection-foreground = #c2c2c2
10866diff --git a/ghostty-themes/srcery b/ghostty-themes/srcery
10867new file mode 100644
10868index 0000000000000000000000000000000000000000..25a61ef6520a7ac531c5601e59d268686e38d6b8
10869--- /dev/null
10870+++ b/ghostty-themes/srcery
10871@@ -0,0 +1,22 @@
10872+palette = 0=#1c1b19
10873+palette = 1=#ef2f27
10874+palette = 2=#519f50
10875+palette = 3=#fbb829
10876+palette = 4=#2c78bf
10877+palette = 5=#e02c6d
10878+palette = 6=#0aaeb3
10879+palette = 7=#baa67f
10880+palette = 8=#918175
10881+palette = 9=#f75341
10882+palette = 10=#98bc37
10883+palette = 11=#fed06e
10884+palette = 12=#68a8e4
10885+palette = 13=#ff5c8f
10886+palette = 14=#2be4d0
10887+palette = 15=#fce8c3
10888+background = #1c1b19
10889+foreground = #fce8c3
10890+cursor-color = #fbb829
10891+cursor-text = #1c1b19
10892+selection-background = #fce8c3
10893+selection-foreground = #1c1b19
10894diff --git a/ghostty-themes/starlight b/ghostty-themes/starlight
10895new file mode 100644
10896index 0000000000000000000000000000000000000000..ecc39b6e836b2522cf1d3a45095b65c0229cb1e8
10897--- /dev/null
10898+++ b/ghostty-themes/starlight
10899@@ -0,0 +1,22 @@
10900+palette = 0=#242424
10901+palette = 1=#e2425d
10902+palette = 2=#66b238
10903+palette = 3=#dec541
10904+palette = 4=#54aad0
10905+palette = 5=#e8b2f8
10906+palette = 6=#5abf9b
10907+palette = 7=#e6e6e6
10908+palette = 8=#616161
10909+palette = 9=#ec5b58
10910+palette = 10=#6bd162
10911+palette = 11=#e9e85c
10912+palette = 12=#78c3f3
10913+palette = 13=#f2afee
10914+palette = 14=#6adcc5
10915+palette = 15=#ffffff
10916+background = #242424
10917+foreground = #ffffff
10918+cursor-color = #ffffff
10919+cursor-text = #242424
10920+selection-background = #ffffff
10921+selection-foreground = #242424
10922diff --git a/ghostty-themes/synthwave b/ghostty-themes/synthwave
10923new file mode 100644
10924index 0000000000000000000000000000000000000000..5581f1213ea58c54498c94ab02b1de7850fa5299
10925--- /dev/null
10926+++ b/ghostty-themes/synthwave
10927@@ -0,0 +1,22 @@
10928+palette = 0=#000000
10929+palette = 1=#f6188f
10930+palette = 2=#1ebb2b
10931+palette = 3=#fdf834
10932+palette = 4=#2186ec
10933+palette = 5=#f85a21
10934+palette = 6=#12c3e2
10935+palette = 7=#ffffff
10936+palette = 8=#000000
10937+palette = 9=#f841a0
10938+palette = 10=#25c141
10939+palette = 11=#fdf454
10940+palette = 12=#2f9ded
10941+palette = 13=#f97137
10942+palette = 14=#19cde6
10943+palette = 15=#ffffff
10944+background = #000000
10945+foreground = #dad9c7
10946+cursor-color = #19cde6
10947+cursor-text = #dad9c7
10948+selection-background = #19cde6
10949+selection-foreground = #000000
10950diff --git a/ghostty-themes/synthwave-everything b/ghostty-themes/synthwave-everything
10951new file mode 100644
10952index 0000000000000000000000000000000000000000..0f6bda78c2e6fa1a247b2140260643170f57aca3
10953--- /dev/null
10954+++ b/ghostty-themes/synthwave-everything
10955@@ -0,0 +1,22 @@
10956+palette = 0=#fefefe
10957+palette = 1=#f97e72
10958+palette = 2=#72f1b8
10959+palette = 3=#fede5d
10960+palette = 4=#6d77b3
10961+palette = 5=#c792ea
10962+palette = 6=#f772e0
10963+palette = 7=#fefefe
10964+palette = 8=#fefefe
10965+palette = 9=#f88414
10966+palette = 10=#72f1b8
10967+palette = 11=#fff951
10968+palette = 12=#36f9f6
10969+palette = 13=#e1acff
10970+palette = 14=#f92aad
10971+palette = 15=#fefefe
10972+background = #2a2139
10973+foreground = #f0eff1
10974+cursor-color = #72f1b8
10975+cursor-text = #1a1a1a
10976+selection-background = #181521
10977+selection-foreground = #f0eff1
10978diff --git a/ghostty-themes/terafox b/ghostty-themes/terafox
10979new file mode 100644
10980index 0000000000000000000000000000000000000000..4f0b2de8c23b114d3825de9b7b93ce1de293d2ef
10981--- /dev/null
10982+++ b/ghostty-themes/terafox
10983@@ -0,0 +1,22 @@
10984+palette = 0=#2f3239
10985+palette = 1=#e85c51
10986+palette = 2=#7aa4a1
10987+palette = 3=#fda47f
10988+palette = 4=#5a93aa
10989+palette = 5=#ad5c7c
10990+palette = 6=#a1cdd8
10991+palette = 7=#ebebeb
10992+palette = 8=#4e5157
10993+palette = 9=#eb746b
10994+palette = 10=#8eb2af
10995+palette = 11=#fdb292
10996+palette = 12=#73a3b7
10997+palette = 13=#b97490
10998+palette = 14=#afd4de
10999+palette = 15=#eeeeee
11000+background = #152528
11001+foreground = #e6eaea
11002+cursor-color = #e6eaea
11003+cursor-text = #152528
11004+selection-background = #293e40
11005+selection-foreground = #e6eaea
11006diff --git a/ghostty-themes/tokyonight b/ghostty-themes/tokyonight
11007new file mode 100644
11008index 0000000000000000000000000000000000000000..9406133f965dda2fa69ac8ce5814dbf788867106
11009--- /dev/null
11010+++ b/ghostty-themes/tokyonight
11011@@ -0,0 +1,22 @@
11012+palette = 0=#15161e
11013+palette = 1=#f7768e
11014+palette = 2=#9ece6a
11015+palette = 3=#e0af68
11016+palette = 4=#7aa2f7
11017+palette = 5=#bb9af7
11018+palette = 6=#7dcfff
11019+palette = 7=#a9b1d6
11020+palette = 8=#414868
11021+palette = 9=#f7768e
11022+palette = 10=#9ece6a
11023+palette = 11=#e0af68
11024+palette = 12=#7aa2f7
11025+palette = 13=#bb9af7
11026+palette = 14=#7dcfff
11027+palette = 15=#c0caf5
11028+background = #1a1b26
11029+foreground = #c0caf5
11030+cursor-color = #c0caf5
11031+cursor-text = #15161e
11032+selection-background = #33467c
11033+selection-foreground = #c0caf5
11034diff --git a/ghostty-themes/tokyonight-day b/ghostty-themes/tokyonight-day
11035new file mode 100644
11036index 0000000000000000000000000000000000000000..1e74033496590f0063eae221cb67d8a4c87e7e7b
11037--- /dev/null
11038+++ b/ghostty-themes/tokyonight-day
11039@@ -0,0 +1,22 @@
11040+palette = 0=#e9e9ed
11041+palette = 1=#f52a65
11042+palette = 2=#587539
11043+palette = 3=#8c6c3e
11044+palette = 4=#2e7de9
11045+palette = 5=#9854f1
11046+palette = 6=#007197
11047+palette = 7=#6172b0
11048+palette = 8=#a1a6c5
11049+palette = 9=#f52a65
11050+palette = 10=#587539
11051+palette = 11=#8c6c3e
11052+palette = 12=#2e7de9
11053+palette = 13=#9854f1
11054+palette = 14=#007197
11055+palette = 15=#3760bf
11056+background = #e1e2e7
11057+foreground = #3760bf
11058+cursor-color = #3760bf
11059+cursor-text = #e1e2e7
11060+selection-background = #99a7df
11061+selection-foreground = #3760bf
11062diff --git a/ghostty-themes/tokyonight-storm b/ghostty-themes/tokyonight-storm
11063new file mode 100644
11064index 0000000000000000000000000000000000000000..93cd465f645de7a7c8074130e8ce8ed77d8b9597
11065--- /dev/null
11066+++ b/ghostty-themes/tokyonight-storm
11067@@ -0,0 +1,22 @@
11068+palette = 0=#1d202f
11069+palette = 1=#f7768e
11070+palette = 2=#9ece6a
11071+palette = 3=#e0af68
11072+palette = 4=#7aa2f7
11073+palette = 5=#bb9af7
11074+palette = 6=#7dcfff
11075+palette = 7=#a9b1d6
11076+palette = 8=#414868
11077+palette = 9=#f7768e
11078+palette = 10=#9ece6a
11079+palette = 11=#e0af68
11080+palette = 12=#7aa2f7
11081+palette = 13=#bb9af7
11082+palette = 14=#7dcfff
11083+palette = 15=#c0caf5
11084+background = #24283b
11085+foreground = #c0caf5
11086+cursor-color = #c0caf5
11087+cursor-text = #1d202f
11088+selection-background = #364a82
11089+selection-foreground = #c0caf5
11090diff --git a/ghostty-themes/tokyonight_moon b/ghostty-themes/tokyonight_moon
11091new file mode 100644
11092index 0000000000000000000000000000000000000000..78a83a8214ce4652a148e0fcbfb4f5951d066cd5
11093--- /dev/null
11094+++ b/ghostty-themes/tokyonight_moon
11095@@ -0,0 +1,22 @@
11096+palette = 0=#1b1d2b
11097+palette = 1=#ff757f
11098+palette = 2=#c3e88d
11099+palette = 3=#ffc777
11100+palette = 4=#82aaff
11101+palette = 5=#c099ff
11102+palette = 6=#86e1fc
11103+palette = 7=#828bb8
11104+palette = 8=#444a73
11105+palette = 9=#ff757f
11106+palette = 10=#c3e88d
11107+palette = 11=#ffc777
11108+palette = 12=#82aaff
11109+palette = 13=#c099ff
11110+palette = 14=#86e1fc
11111+palette = 15=#c8d3f5
11112+background = #222436
11113+foreground = #c8d3f5
11114+cursor-color = #c8d3f5
11115+cursor-text = #222436
11116+selection-background = #2d3f76
11117+selection-foreground = #c8d3f5
11118diff --git a/ghostty-themes/tokyonight_night b/ghostty-themes/tokyonight_night
11119new file mode 100644
11120index 0000000000000000000000000000000000000000..bda8d6a57c02f829a4c3ff981eef2632e4c45047
11121--- /dev/null
11122+++ b/ghostty-themes/tokyonight_night
11123@@ -0,0 +1,22 @@
11124+palette = 0=#15161e
11125+palette = 1=#f7768e
11126+palette = 2=#9ece6a
11127+palette = 3=#e0af68
11128+palette = 4=#7aa2f7
11129+palette = 5=#bb9af7
11130+palette = 6=#7dcfff
11131+palette = 7=#a9b1d6
11132+palette = 8=#414868
11133+palette = 9=#f7768e
11134+palette = 10=#9ece6a
11135+palette = 11=#e0af68
11136+palette = 12=#7aa2f7
11137+palette = 13=#bb9af7
11138+palette = 14=#7dcfff
11139+palette = 15=#c0caf5
11140+background = #1a1b26
11141+foreground = #c0caf5
11142+cursor-color = #c0caf5
11143+cursor-text = #1a1b26
11144+selection-background = #283457
11145+selection-foreground = #c0caf5
11146diff --git a/ghostty-themes/vesper b/ghostty-themes/vesper
11147new file mode 100644
11148index 0000000000000000000000000000000000000000..2417f54b7fa590cbf2d943a8747b6459cfd6ea90
11149--- /dev/null
11150+++ b/ghostty-themes/vesper
11151@@ -0,0 +1,22 @@
11152+palette = 0=#101010
11153+palette = 1=#f5a191
11154+palette = 2=#90b99f
11155+palette = 3=#e6b99d
11156+palette = 4=#aca1cf
11157+palette = 5=#e29eca
11158+palette = 6=#ea83a5
11159+palette = 7=#a0a0a0
11160+palette = 8=#7e7e7e
11161+palette = 9=#ff8080
11162+palette = 10=#99ffe4
11163+palette = 11=#ffc799
11164+palette = 12=#b9aeda
11165+palette = 13=#ecaad6
11166+palette = 14=#f591b2
11167+palette = 15=#ffffff
11168+background = #101010
11169+foreground = #ffffff
11170+cursor-color = #acb1ab
11171+cursor-text = #ffffff
11172+selection-background = #988049
11173+selection-foreground = #acb1ab
11174diff --git a/ghostty-themes/vimbones b/ghostty-themes/vimbones
11175new file mode 100644
11176index 0000000000000000000000000000000000000000..18c8cb25cadeb2d248173244840cea1dd5420b8e
11177--- /dev/null
11178+++ b/ghostty-themes/vimbones
11179@@ -0,0 +1,22 @@
11180+palette = 0=#f0f0ca
11181+palette = 1=#a8334c
11182+palette = 2=#4f6c31
11183+palette = 3=#944927
11184+palette = 4=#286486
11185+palette = 5=#88507d
11186+palette = 6=#3b8992
11187+palette = 7=#353535
11188+palette = 8=#c6c6a3
11189+palette = 9=#94253e
11190+palette = 10=#3f5a22
11191+palette = 11=#803d1c
11192+palette = 12=#1d5573
11193+palette = 13=#7b3b70
11194+palette = 14=#2b747c
11195+palette = 15=#5c5c5c
11196+background = #f0f0ca
11197+foreground = #353535
11198+cursor-color = #353535
11199+cursor-text = #f0f0ca
11200+selection-background = #d7d7d7
11201+selection-foreground = #353535
11202diff --git a/ghostty-themes/wilmersdorf b/ghostty-themes/wilmersdorf
11203new file mode 100644
11204index 0000000000000000000000000000000000000000..3a92bc6bd7dffe15188a24bec9e0ca48dbb0f414
11205--- /dev/null
11206+++ b/ghostty-themes/wilmersdorf
11207@@ -0,0 +1,22 @@
11208+palette = 0=#34373e
11209+palette = 1=#e06383
11210+palette = 2=#7ebebd
11211+palette = 3=#cccccc
11212+palette = 4=#a6c1e0
11213+palette = 5=#e1c1ee
11214+palette = 6=#5b94ab
11215+palette = 7=#ababab
11216+palette = 8=#434750
11217+palette = 9=#fa7193
11218+palette = 10=#8fd7d6
11219+palette = 11=#d1dfff
11220+palette = 12=#b2cff0
11221+palette = 13=#efccfd
11222+palette = 14=#69abc5
11223+palette = 15=#d3d3d3
11224+background = #282b33
11225+foreground = #c6c6c6
11226+cursor-color = #7ebebd
11227+cursor-text = #1f2024
11228+selection-background = #1f2024
11229+selection-foreground = #c6c6c6
11230diff --git a/ghostty-themes/xcodedark b/ghostty-themes/xcodedark
11231new file mode 100644
11232index 0000000000000000000000000000000000000000..3701589c41d099bd4f96a369cb924491bef13a95
11233--- /dev/null
11234+++ b/ghostty-themes/xcodedark
11235@@ -0,0 +1,22 @@
11236+palette = 0=#414453
11237+palette = 1=#ff8170
11238+palette = 2=#78c2b3
11239+palette = 3=#d9c97c
11240+palette = 4=#4eb0cc
11241+palette = 5=#ff7ab2
11242+palette = 6=#b281eb
11243+palette = 7=#dfdfe0
11244+palette = 8=#7f8c98
11245+palette = 9=#ff8170
11246+palette = 10=#acf2e4
11247+palette = 11=#ffa14f
11248+palette = 12=#6bdfff
11249+palette = 13=#ff7ab2
11250+palette = 14=#dabaff
11251+palette = 15=#dfdfe0
11252+background = #292a30
11253+foreground = #dfdfe0
11254+cursor-color = #dfdfe0
11255+cursor-text = #292a30
11256+selection-background = #414453
11257+selection-foreground = #dfdfe0
11258diff --git a/ghostty-themes/xcodedarkhc b/ghostty-themes/xcodedarkhc
11259new file mode 100644
11260index 0000000000000000000000000000000000000000..da674b06596d4f04ef9f8951d320a82cc6fcb98e
11261--- /dev/null
11262+++ b/ghostty-themes/xcodedarkhc
11263@@ -0,0 +1,22 @@
11264+palette = 0=#43454b
11265+palette = 1=#ff8a7a
11266+palette = 2=#83c9bc
11267+palette = 3=#d9c668
11268+palette = 4=#4ec4e6
11269+palette = 5=#ff85b8
11270+palette = 6=#cda1ff
11271+palette = 7=#ffffff
11272+palette = 8=#838991
11273+palette = 9=#ff8a7a
11274+palette = 10=#b1faeb
11275+palette = 11=#ffa14f
11276+palette = 12=#6bdfff
11277+palette = 13=#ff85b8
11278+palette = 14=#e5cfff
11279+palette = 15=#ffffff
11280+background = #1f1f24
11281+foreground = #ffffff
11282+cursor-color = #ffffff
11283+cursor-text = #1f1f24
11284+selection-background = #43454b
11285+selection-foreground = #ffffff
11286diff --git a/ghostty-themes/xcodelight b/ghostty-themes/xcodelight
11287new file mode 100644
11288index 0000000000000000000000000000000000000000..e0ae9a3647e96b91934580c8d6cd7a039bcdcda8
11289--- /dev/null
11290+++ b/ghostty-themes/xcodelight
11291@@ -0,0 +1,22 @@
11292+palette = 0=#b4d8fd
11293+palette = 1=#d12f1b
11294+palette = 2=#3e8087
11295+palette = 3=#78492a
11296+palette = 4=#0f68a0
11297+palette = 5=#ad3da4
11298+palette = 6=#804fb8
11299+palette = 7=#262626
11300+palette = 8=#8a99a6
11301+palette = 9=#d12f1b
11302+palette = 10=#23575c
11303+palette = 11=#78492a
11304+palette = 12=#0b4f79
11305+palette = 13=#ad3da4
11306+palette = 14=#4b21b0
11307+palette = 15=#262626
11308+background = #ffffff
11309+foreground = #262626
11310+cursor-color = #262626
11311+cursor-text = #ffffff
11312+selection-background = #b4d8fd
11313+selection-foreground = #262626
11314diff --git a/ghostty-themes/xcodelighthc b/ghostty-themes/xcodelighthc
11315new file mode 100644
11316index 0000000000000000000000000000000000000000..148dc36814f846af760ad1f43d9a1f3766a0f727
11317--- /dev/null
11318+++ b/ghostty-themes/xcodelighthc
11319@@ -0,0 +1,22 @@
11320+palette = 0=#b4d8fd
11321+palette = 1=#ad1805
11322+palette = 2=#355d61
11323+palette = 3=#78492a
11324+palette = 4=#0058a1
11325+palette = 5=#9c2191
11326+palette = 6=#703daa
11327+palette = 7=#000000
11328+palette = 8=#8a99a6
11329+palette = 9=#ad1805
11330+palette = 10=#174145
11331+palette = 11=#78492a
11332+palette = 12=#003f73
11333+palette = 13=#9c2191
11334+palette = 14=#441ea1
11335+palette = 15=#000000
11336+background = #ffffff
11337+foreground = #000000
11338+cursor-color = #000000
11339+cursor-text = #ffffff
11340+selection-background = #b4d8fd
11341+selection-foreground = #000000
11342diff --git a/ghostty-themes/xcodewwdc b/ghostty-themes/xcodewwdc
11343new file mode 100644
11344index 0000000000000000000000000000000000000000..8853ccff11b83e1b0b309ac33c1abc94bf18b9d0
11345--- /dev/null
11346+++ b/ghostty-themes/xcodewwdc
11347@@ -0,0 +1,22 @@
11348+palette = 0=#494d5c
11349+palette = 1=#bb383a
11350+palette = 2=#94c66e
11351+palette = 3=#d28e5d
11352+palette = 4=#8884c5
11353+palette = 5=#b73999
11354+palette = 6=#00aba4
11355+palette = 7=#e7e8eb
11356+palette = 8=#7f869e
11357+palette = 9=#bb383a
11358+palette = 10=#94c66e
11359+palette = 11=#d28e5d
11360+palette = 12=#8884c5
11361+palette = 13=#b73999
11362+palette = 14=#00aba4
11363+palette = 15=#e7e8eb
11364+background = #292c36
11365+foreground = #e7e8eb
11366+cursor-color = #e7e8eb
11367+cursor-text = #292c36
11368+selection-background = #494d5c
11369+selection-foreground = #e7e8eb
11370diff --git a/ghostty-themes/zenbones b/ghostty-themes/zenbones
11371new file mode 100644
11372index 0000000000000000000000000000000000000000..57789b04fb91645bf119cbb17e1917d4d680e01d
11373--- /dev/null
11374+++ b/ghostty-themes/zenbones
11375@@ -0,0 +1,22 @@
11376+palette = 0=#f0edec
11377+palette = 1=#a8334c
11378+palette = 2=#4f6c31
11379+palette = 3=#944927
11380+palette = 4=#286486
11381+palette = 5=#88507d
11382+palette = 6=#3b8992
11383+palette = 7=#2c363c
11384+palette = 8=#cfc1ba
11385+palette = 9=#94253e
11386+palette = 10=#3f5a22
11387+palette = 11=#803d1c
11388+palette = 12=#1d5573
11389+palette = 13=#7b3b70
11390+palette = 14=#2b747c
11391+palette = 15=#4f5e68
11392+background = #f0edec
11393+foreground = #2c363c
11394+cursor-color = #2c363c
11395+cursor-text = #f0edec
11396+selection-background = #cbd9e3
11397+selection-foreground = #2c363c
11398diff --git a/ghostty-themes/zenbones_dark b/ghostty-themes/zenbones_dark
11399new file mode 100644
11400index 0000000000000000000000000000000000000000..be775e6518f33ecfe2a448d9642e14df82200a2c
11401--- /dev/null
11402+++ b/ghostty-themes/zenbones_dark
11403@@ -0,0 +1,22 @@
11404+palette = 0=#1c1917
11405+palette = 1=#de6e7c
11406+palette = 2=#819b69
11407+palette = 3=#b77e64
11408+palette = 4=#6099c0
11409+palette = 5=#b279a7
11410+palette = 6=#66a5ad
11411+palette = 7=#b4bdc3
11412+palette = 8=#403833
11413+palette = 9=#e8838f
11414+palette = 10=#8bae68
11415+palette = 11=#d68c67
11416+palette = 12=#61abda
11417+palette = 13=#cf86c1
11418+palette = 14=#65b8c1
11419+palette = 15=#888f94
11420+background = #1c1917
11421+foreground = #b4bdc3
11422+cursor-color = #c4cacf
11423+cursor-text = #1c1917
11424+selection-background = #3d4042
11425+selection-foreground = #b4bdc3
11426diff --git a/ghostty-themes/zenbones_light b/ghostty-themes/zenbones_light
11427new file mode 100644
11428index 0000000000000000000000000000000000000000..57789b04fb91645bf119cbb17e1917d4d680e01d
11429--- /dev/null
11430+++ b/ghostty-themes/zenbones_light
11431@@ -0,0 +1,22 @@
11432+palette = 0=#f0edec
11433+palette = 1=#a8334c
11434+palette = 2=#4f6c31
11435+palette = 3=#944927
11436+palette = 4=#286486
11437+palette = 5=#88507d
11438+palette = 6=#3b8992
11439+palette = 7=#2c363c
11440+palette = 8=#cfc1ba
11441+palette = 9=#94253e
11442+palette = 10=#3f5a22
11443+palette = 11=#803d1c
11444+palette = 12=#1d5573
11445+palette = 13=#7b3b70
11446+palette = 14=#2b747c
11447+palette = 15=#4f5e68
11448+background = #f0edec
11449+foreground = #2c363c
11450+cursor-color = #2c363c
11451+cursor-text = #f0edec
11452+selection-background = #cbd9e3
11453+selection-foreground = #2c363c
11454diff --git a/ghostty-themes/zenburned b/ghostty-themes/zenburned
11455new file mode 100644
11456index 0000000000000000000000000000000000000000..5eff9b6e232dc65ea2a09fad26bdf6deafb33512
11457--- /dev/null
11458+++ b/ghostty-themes/zenburned
11459@@ -0,0 +1,22 @@
11460+palette = 0=#404040
11461+palette = 1=#e3716e
11462+palette = 2=#819b69
11463+palette = 3=#b77e64
11464+palette = 4=#6099c0
11465+palette = 5=#b279a7
11466+palette = 6=#66a5ad
11467+palette = 7=#f0e4cf
11468+palette = 8=#625a5b
11469+palette = 9=#ec8685
11470+palette = 10=#8bae68
11471+palette = 11=#d68c67
11472+palette = 12=#61abda
11473+palette = 13=#cf86c1
11474+palette = 14=#65b8c1
11475+palette = 15=#c0ab86
11476+background = #404040
11477+foreground = #f0e4cf
11478+cursor-color = #f3eadb
11479+cursor-text = #404040
11480+selection-background = #746956
11481+selection-foreground = #f0e4cf
11482diff --git a/ghostty-themes/zenwritten_dark b/ghostty-themes/zenwritten_dark
11483new file mode 100644
11484index 0000000000000000000000000000000000000000..4155eabd84909763380b09e5fa23bb7e34617ad4
11485--- /dev/null
11486+++ b/ghostty-themes/zenwritten_dark
11487@@ -0,0 +1,22 @@
11488+palette = 0=#191919
11489+palette = 1=#de6e7c
11490+palette = 2=#819b69
11491+palette = 3=#b77e64
11492+palette = 4=#6099c0
11493+palette = 5=#b279a7
11494+palette = 6=#66a5ad
11495+palette = 7=#bbbbbb
11496+palette = 8=#3d3839
11497+palette = 9=#e8838f
11498+palette = 10=#8bae68
11499+palette = 11=#d68c67
11500+palette = 12=#61abda
11501+palette = 13=#cf86c1
11502+palette = 14=#65b8c1
11503+palette = 15=#8e8e8e
11504+background = #191919
11505+foreground = #bbbbbb
11506+cursor-color = #c9c9c9
11507+cursor-text = #191919
11508+selection-background = #404040
11509+selection-foreground = #bbbbbb
11510diff --git a/ghostty-themes/zenwritten_light b/ghostty-themes/zenwritten_light
11511new file mode 100644
11512index 0000000000000000000000000000000000000000..125dc3158873c8f2040bbde5a64d63b4ff03f0b2
11513--- /dev/null
11514+++ b/ghostty-themes/zenwritten_light
11515@@ -0,0 +1,22 @@
11516+palette = 0=#eeeeee
11517+palette = 1=#a8334c
11518+palette = 2=#4f6c31
11519+palette = 3=#944927
11520+palette = 4=#286486
11521+palette = 5=#88507d
11522+palette = 6=#3b8992
11523+palette = 7=#353535
11524+palette = 8=#c6c3c3
11525+palette = 9=#94253e
11526+palette = 10=#3f5a22
11527+palette = 11=#803d1c
11528+palette = 12=#1d5573
11529+palette = 13=#7b3b70
11530+palette = 14=#2b747c
11531+palette = 15=#5c5c5c
11532+background = #eeeeee
11533+foreground = #353535
11534+cursor-color = #353535
11535+cursor-text = #eeeeee
11536+selection-background = #d7d7d7
11537+selection-foreground = #353535
11538diff --git a/ghostty.nix b/ghostty.nix
11539new file mode 100644
11540index 0000000000000000000000000000000000000000..205b757036a5f7e2fbbcf2bf73ee769d2ff34376
11541--- /dev/null
11542+++ b/ghostty.nix
11543@@ -0,0 +1,20 @@
11544+{
11545+  pkgs,
11546+  inputs,
11547+  ...
11548+}: {
11549+  xdg.configFile."ghostty/config".text = ''
11550+    theme=3024 Day
11551+    window-decoration=false
11552+    confirm-close-surface=false
11553+    shell-integration=fish
11554+    command=fish
11555+    keybind = unconsumed:ctrl+tab=unbind
11556+    font-family = iosevka
11557+  '';
11558+
11559+  xdg.configFile."ghostty/themes" = {
11560+    source = ./ghostty-themes;
11561+    recursive = true;
11562+  };
11563+}
11564diff --git a/home.nix b/home.nix
11565new file mode 100644
11566index 0000000000000000000000000000000000000000..6e37e3ab0bc2d994aa6cf3c23c5003bb86f76162
11567--- /dev/null
11568+++ b/home.nix
11569@@ -0,0 +1,64 @@
11570+{
11571+  pkgs,
11572+  inputs,
11573+  ...
11574+}: let
11575+in {
11576+  nixpkgs.config.allowUnfree = true;
11577+  home.username = "gabrielgio";
11578+  home.homeDirectory = "/home/gabrielgio";
11579+  home.stateVersion = "25.05";
11580+  home.packages = with pkgs;
11581+    [
11582+      alejandra
11583+      awscli2
11584+      comma
11585+      grpcurl
11586+      jujutsu
11587+      k6
11588+      kubectl
11589+      ngrok
11590+      nix-index
11591+      nixd
11592+      protoscope
11593+      python312Packages.cssbeautifier
11594+      ssm-session-manager-plugin
11595+      streamlink
11596+      terraform
11597+      terraform-ls
11598+      vale
11599+      yaml-language-server
11600+    ]
11601+    ++ (
11602+      if hostname != "workstation.lan"
11603+      then [
11604+        inputs.gxctl.packages.${pkgs.system}.gxctl
11605+        inputs.gxctl.packages.${pkgs.system}.gxssh
11606+        inputs.gxctl.packages.${pkgs.system}.gxscp
11607+      ]
11608+      else []
11609+    );
11610+
11611+  programs = {
11612+    direnv = {
11613+      enable = true;
11614+      nix-direnv.enable = true;
11615+    };
11616+    nh = {
11617+      enable = true;
11618+      flake = "/home/gabrielgio/.config/home-manager";
11619+    };
11620+  };
11621+
11622+  imports = [
11623+    (import ./profile.nix)
11624+    (import ./wofi.nix)
11625+    (import ./ghostty.nix)
11626+    (import ./waybar.nix)
11627+    (import ./mako.nix)
11628+    (import ./alacritty.nix)
11629+    (import ./niri.nix)
11630+    (import ./sway.nix)
11631+    (import ./aerc.nix)
11632+  ];
11633+}
11634diff --git a/mako.nix b/mako.nix
11635new file mode 100644
11636index 0000000000000000000000000000000000000000..74a51ff0ef4680540427089c081546abbcaaaf8e
11637--- /dev/null
11638+++ b/mako.nix
11639@@ -0,0 +1,17 @@
11640+{
11641+  pkgs,
11642+  inputs,
11643+  ...
11644+}: {
11645+  xdg.configFile."mako/config".text = ''
11646+    border-size=0
11647+    font=monospace 14
11648+    default-timeout=15000
11649+    on-notify=exec mpv /usr/share/sounds/freedesktop/stereo/message.oga
11650+
11651+    [urgency=high]
11652+    background-color=#bf616a
11653+    border-size=0
11654+    default-timeout=0
11655+  '';
11656+}
11657diff --git a/niri.nix b/niri.nix
11658new file mode 100644
11659index 0000000000000000000000000000000000000000..5c131dab176f6c76e2f3e5cd162dd4a2f2ecdadf
11660--- /dev/null
11661+++ b/niri.nix
11662@@ -0,0 +1,285 @@
11663+{
11664+  pkgs,
11665+  inputs,
11666+  ...
11667+}: {
11668+  xdg.configFile."niri/config.kdl".text = ''
11669+    gestures {
11670+        hot-corners {
11671+            off
11672+        }
11673+    }
11674+
11675+    input {
11676+        keyboard {
11677+            xkb {
11678+                layout "us,de"
11679+            }
11680+        }
11681+
11682+        touchpad {
11683+            tap
11684+            natural-scroll
11685+        }
11686+    }
11687+
11688+    output "eDP-1" {
11689+        mode "3840x2160@60.000"
11690+    }
11691+
11692+    output "LG Electronics LG HDR 4K 0x0001A8D9" {
11693+        mode "3840x2160@60.000"
11694+    }
11695+
11696+    layout {
11697+        gaps 0
11698+        center-focused-column "never"
11699+        preset-column-widths {
11700+            proportion 0.33333
11701+            proportion 0.5
11702+            proportion 0.66667
11703+        }
11704+        default-column-width {
11705+            proportion 0.5
11706+        }
11707+        focus-ring {
11708+            off
11709+        }
11710+        struts {
11711+            right 10
11712+        }
11713+
11714+        border {
11715+            width 3
11716+            active-color "#7fc8ff"
11717+            inactive-color "#DDDDDD"
11718+        }
11719+    }
11720+
11721+    overview {
11722+        backdrop-color "#DDDDDD"
11723+    }
11724+
11725+    spawn-at-startup "dbus-update-activation-environment" "WAYLAND_DISPLAY" "XDG_CURRENT_DESKTOP=sway"
11726+    //spawn-at-startup "/usr/libexec/pipewire-launcher"
11727+    //spawn-at-startup "openrc --user gui"
11728+
11729+    spawn-at-startup "waybar"
11730+    spawn-at-startup "mako"
11731+    spawn-at-startup "nm-applet"
11732+    spawn-at-startup "blueman-applet"
11733+    spawn-at-startup "swaybg" "-c" "DDDDDD"
11734+
11735+    spawn-at-startup "xwayland-satellite" ":12"
11736+    environment {
11737+        DISPLAY ":12"
11738+    }
11739+
11740+    spawn-at-startup "flatpak" "run" "com.slack.Slack"
11741+    spawn-at-startup "telegram-desktop"
11742+
11743+    prefer-no-csd
11744+
11745+    screenshot-path "~/Pictures/Screenshots/Screenshot from %Y-%m-%d %H-%M-%S.png"
11746+
11747+
11748+    binds {
11749+        Mod+Shift+Slash { show-hotkey-overlay; }
11750+
11751+        Mod+T { spawn "ghostty"; }
11752+        Mod+D { spawn "wofi" "--show" "run"; }
11753+        Mod+O repeat=false { toggle-overview; }
11754+        Mod+Shift+D { spawn "wofi" "--show" "drun"; }
11755+        Super+Alt+L { spawn "swaylock"; }
11756+
11757+        Mod+Shift+Q { close-window; }
11758+
11759+        Mod+H     { focus-column-left; }
11760+        Mod+J     { focus-window-or-workspace-down; }
11761+        Mod+K     { focus-window-or-workspace-up; }
11762+        Mod+L     { focus-column-right; }
11763+
11764+        Mod+Ctrl+H     { move-column-left; }
11765+        Mod+Ctrl+J         { move-workspace-down; }
11766+        Mod+Ctrl+K         { move-workspace-up; }
11767+        Mod+Ctrl+L     { move-column-right; }
11768+
11769+        Mod+Home { focus-column-first; }
11770+        Mod+End  { focus-column-last; }
11771+        Mod+Ctrl+Home { move-column-to-first; }
11772+        Mod+Ctrl+End  { move-column-to-last; }
11773+
11774+        Mod+Shift+H     { focus-monitor-left; }
11775+        Mod+Shift+J     { focus-monitor-down; }
11776+        Mod+Shift+K     { focus-monitor-up; }
11777+        Mod+Shift+L     { focus-monitor-right; }
11778+
11779+        Mod+Shift+Ctrl+H     { move-column-to-monitor-left; }
11780+        Mod+Shift+Ctrl+J     { move-column-to-monitor-down; }
11781+        Mod+Shift+Ctrl+K     { move-column-to-monitor-up; }
11782+        Mod+Shift+Ctrl+L     { move-column-to-monitor-right; }
11783+
11784+        // Alternatively, there are commands to move just a single window:
11785+        // Mod+Shift+Ctrl+Left  { move-window-to-monitor-left; }
11786+        // ...
11787+
11788+        // And you can also move a whole workspace to another monitor:
11789+        Mod+Shift+Ctrl+U  { move-workspace-to-monitor-left; }
11790+        Mod+Shift+Ctrl+I  { move-workspace-to-monitor-right; }
11791+        // ...
11792+
11793+        Mod+Page_Down      { focus-workspace-down; }
11794+        Mod+Page_Up        { focus-workspace-up; }
11795+        Mod+Ctrl+Page_Down { move-column-to-workspace-down; }
11796+        Mod+Ctrl+Page_Up   { move-column-to-workspace-up; }
11797+        Mod+Ctrl+U         { move-column-to-workspace-down; }
11798+        Mod+Ctrl+I         { move-column-to-workspace-up; }
11799+
11800+        Mod+Shift+Page_Down { move-workspace-down; }
11801+        Mod+Shift+Page_Up   { move-workspace-up; }
11802+        Mod+Shift+U         { move-workspace-down; }
11803+        Mod+Shift+I         { move-workspace-up; }
11804+
11805+        Mod+WheelScrollDown      cooldown-ms=150 { focus-workspace-down; }
11806+        Mod+WheelScrollUp        cooldown-ms=150 { focus-workspace-up; }
11807+        Mod+Ctrl+WheelScrollDown cooldown-ms=150 { move-column-to-workspace-down; }
11808+        Mod+Ctrl+WheelScrollUp   cooldown-ms=150 { move-column-to-workspace-up; }
11809+
11810+        Mod+WheelScrollRight      { focus-column-right; }
11811+        Mod+WheelScrollLeft       { focus-column-left; }
11812+        Mod+Ctrl+WheelScrollRight { move-column-right; }
11813+        Mod+Ctrl+WheelScrollLeft  { move-column-left; }
11814+
11815+        Mod+Shift+WheelScrollDown      { focus-column-right; }
11816+        Mod+Shift+WheelScrollUp        { focus-column-left; }
11817+        Mod+Ctrl+Shift+WheelScrollDown { move-column-right; }
11818+        Mod+Ctrl+Shift+WheelScrollUp   { move-column-left; }
11819+
11820+        Mod+1 { focus-workspace "α"; }
11821+        Mod+2 { focus-workspace "γ"; }
11822+        Mod+3 { focus-workspace "δ"; }
11823+        Mod+4 { focus-workspace "ε"; }
11824+        Mod+5 { focus-workspace "ζ"; }
11825+        Mod+6 { focus-workspace "6"; }
11826+        Mod+7 { focus-workspace "7"; }
11827+        Mod+8 { focus-workspace "8"; }
11828+        Mod+9 { focus-workspace "9"; }
11829+        Mod+Minus { focus-workspace "-"; }
11830+        Mod+Ctrl+1 { move-column-to-workspace "α"; }
11831+        Mod+Ctrl+2 { move-column-to-workspace "γ"; }
11832+        Mod+Ctrl+3 { move-column-to-workspace "δ"; }
11833+        Mod+Ctrl+4 { move-column-to-workspace "ε"; }
11834+        Mod+Ctrl+5 { move-column-to-workspace "ζ"; }
11835+        Mod+Ctrl+6 { move-column-to-workspace "6"; }
11836+        Mod+Ctrl+7 { move-column-to-workspace "7"; }
11837+        Mod+Ctrl+8 { move-column-to-workspace "8"; }
11838+        Mod+Ctrl+9 { move-column-to-workspace "9"; }
11839+        Mod+Ctrl+Minus { move-column-to-workspace "-"; }
11840+
11841+        Mod+BracketLeft  { consume-or-expel-window-left; }
11842+        Mod+BracketRight { consume-or-expel-window-right; }
11843+
11844+        Mod+Comma  { consume-window-into-column; }
11845+        Mod+Period { expel-window-from-column; }
11846+
11847+        Mod+R { switch-preset-column-width; }
11848+        Mod+Shift+R { switch-preset-window-height; }
11849+        Mod+Ctrl+R { reset-window-height; }
11850+        Mod+F { maximize-column; }
11851+        Mod+Shift+F { fullscreen-window; }
11852+
11853+        Mod+Ctrl+F { expand-column-to-available-width; }
11854+
11855+        Mod+C { center-column; }
11856+
11857+        Mod+U { set-column-width "-10%"; }
11858+        Mod+I { set-column-width "+10%"; }
11859+
11860+        // Finer height adjustments when in column with other windows.
11861+        Mod+Shift+Minus { set-window-height "-10%"; }
11862+        Mod+Shift+Equal { set-window-height "+10%"; }
11863+
11864+        Mod+V       { toggle-window-floating; }
11865+        Mod+Shift+V { switch-focus-between-floating-and-tiling; }
11866+
11867+        Mod+W { toggle-column-tabbed-display; }
11868+
11869+        Mod+p { screenshot; }
11870+
11871+        Mod+Escape allow-inhibiting=false { toggle-keyboard-shortcuts-inhibit; }
11872+
11873+        Mod+Shift+E { quit; }
11874+
11875+        Mod+Shift+P { power-off-monitors; }
11876+    }
11877+
11878+    workspace "α" {
11879+    }
11880+
11881+    workspace "γ" {
11882+    }
11883+
11884+    workspace "δ" {
11885+    }
11886+
11887+    workspace "ε" {
11888+    }
11889+
11890+    workspace "ζ" {
11891+    }
11892+
11893+    workspace "6" {
11894+    }
11895+
11896+    workspace "7" {
11897+    }
11898+
11899+    workspace "8" {
11900+    }
11901+
11902+    workspace "9" {
11903+    }
11904+
11905+    workspace "-" {
11906+    }
11907+
11908+    window-rule {
11909+        match app-id=r#"^com\.slack\.Slack$"#
11910+
11911+        open-on-workspace "chat"
11912+        block-out-from "screencast"
11913+    }
11914+
11915+    window-rule {
11916+        match app-id=r#"^org\.telegram\.desktop$"#
11917+
11918+        open-on-workspace "ζ"
11919+        block-out-from "screencast"
11920+    }
11921+
11922+    window-rule {
11923+        match app-id=r#"^Bitwarden$"#
11924+
11925+        open-on-workspace "res"
11926+        block-out-from "screencast"
11927+    }
11928+
11929+
11930+    window-rule {
11931+        match app-id=r#"^org\.pulseaudio\.pavucontrol$"#
11932+        match app-id=r#"^blueman\-manager$"#
11933+
11934+        open-floating true
11935+    }
11936+
11937+
11938+    layer-rule {
11939+        exclude namespace="^notifications$"
11940+
11941+        block-out-from "screencast"
11942+    }
11943+
11944+    // user private to hide private browser
11945+    // altgr-intl
11946+  '';
11947+}
11948diff --git a/profile.nix b/profile.nix
11949new file mode 100644
11950index 0000000000000000000000000000000000000000..e2a0e00629069504aa7bd67ec6cc84dbc8adfe15
11951--- /dev/null
11952+++ b/profile.nix
11953@@ -0,0 +1,78 @@
11954+{
11955+  pkgs,
11956+  inputs,
11957+  ...
11958+}: {
11959+  home.file.".profile".text = ''
11960+    export LANG=pt_BR.UTF-8
11961+    export LANGUAGE=pt_BR.UTF-8
11962+    export LC_ALL=pt_BR.UTF-8
11963+
11964+    export XDG_CONFIG_HOME="$HOME/.config"
11965+    export XDG_CACHE_HOME="$HOME/.cache"
11966+    export XDG_DATA_HOME="$HOME/.local/share"
11967+    export XDG_STATE_HOME="$HOME/.local/state"
11968+
11969+    export XDG_DATA_DIRS=$XDG_DATA_DIRS:/var/lib/flatpak/exports/share
11970+    export XDG_DATA_DIRS=$XDG_DATA_DIRS:/usr/local/share
11971+    export XDG_DATA_DIRS=$XDG_DATA_DIRS:/usr/share
11972+    export XDG_DATA_DIRS=$XDG_DATA_DIRS:$XDG_DATA_HOME/flatpak/exports/share
11973+
11974+    export EDITOR=nvim
11975+    export BROWSER=/usr/bin/qutebrowser
11976+    export PATH=$PATH:$HOME/.local/bin/
11977+    export QT_QPA_PLATFORM=wayland
11978+
11979+    # GO
11980+    export GOPATH=$XDG_DATA_HOME/go
11981+    export GOPROXY=direct
11982+    export PATH=$GOPATH/bin:$PATH
11983+    export GOTOOLCHAIN=local
11984+
11985+    # Rust
11986+    export CARGO_HOME=$XDG_DATA_HOME/cargo
11987+    export RUSTUP_HOME=$XDG_DATA_HOME/rustup
11988+    export PATH=$PATH:$CARGO_HOME/bin
11989+
11990+    #npm
11991+    export PATH=$PATH:$HOME/.local/share/npm-global
11992+
11993+    # disable less history
11994+    export LESSHISTSIZE=0
11995+    export LESSHISTFILE=/dev/null
11996+
11997+    # wine folder
11998+    export WINEPREFIX=$XDG_DATA_HOME/wine
11999+
12000+    # podman user socket
12001+    # this is used so I don't have to install docker
12002+    #export DOCKER_HOST=unix://run/user/1000/podman/podman.sock
12003+
12004+    export GOPRIVATE=github.com/grid-x/*
12005+
12006+    # wayland requirement
12007+    if test -z "${"$"}{XDG_RUNTIME_DIR}"; then
12008+      export XDG_RUNTIME_DIR=/tmp/$(id -u)-runtime-dir
12009+      if ! test -d "${"$"}{XDG_RUNTIME_DIR}"; then
12010+        mkdir "${"$"}{XDG_RUNTIME_DIR}"
12011+        chmod 0700 "${"$"}{XDG_RUNTIME_DIR}"
12012+      fi
12013+    fi
12014+
12015+    export PATH=$PATH:$HOME/.nix-profile/bin/
12016+
12017+    if [[ "$(tty)" == "/dev/tty1" ]]
12018+    then
12019+
12020+        eval `ssh-agent`
12021+        openrc --user gui
12022+
12023+        if command -v niri 2>&1 >/dev/null
12024+        then
12025+           dbus-run-session -- niri --session
12026+        else
12027+           dbus-run-session -- sway
12028+        fi
12029+    fi
12030+  '';
12031+}
12032diff --git a/result b/result
12033new file mode 120000
12034index 0000000000000000000000000000000000000000..ea9e9e5a55a19a0b4174073d3410f3933d22539e
12035--- /dev/null
12036+++ b/result
12037@@ -0,0 +1 @@
12038+/nix/store/aq1cwsxfms57sz105a47kfpkacxm2ca2-home-manager-generation
12039\ No newline at end of file
12040diff --git a/sway.nix b/sway.nix
12041new file mode 100644
12042index 0000000000000000000000000000000000000000..469d4fabc3a0cc13b7230638a06eb5529f450714
12043--- /dev/null
12044+++ b/sway.nix
12045@@ -0,0 +1,164 @@
12046+{
12047+  pkgs,
12048+  inputs,
12049+  ...
12050+}: {
12051+  xdg.configFile."sway/config".text = ''
12052+    output eDP1 pos 3537 0 res 1920 1200
12053+    output DP-3 scale 1.4
12054+    output DP-3 pos 2440 0 res 3840 2160
12055+
12056+    set $mod Mod4
12057+    set $term ghostty
12058+
12059+    font pango:iosevka 20
12060+
12061+    exec dbus-update-activation-environment WAYLAND_DISPLAY XDG_CURRENT_DESKTOP=sway
12062+    exec /usr/libexec/pipewire-launcher
12063+
12064+    focus_follows_mouse no
12065+
12066+    for_window [class="^.*"] border pixel 3
12067+    default_border pixel 5
12068+    default_floating_border pixel 5
12069+    hide_edge_borders both
12070+
12071+    floating_modifier $mod
12072+
12073+    # custom shortcut
12074+    bindsym $mod+Shift+q kill
12075+    bindsym $mod+t exec $term
12076+    bindsym $mod+d exec wofi --show run
12077+    bindsym $mod+c exec comment
12078+    bindsym $mod+n exec neovide
12079+    bindsym $mod+x exec open_web
12080+    bindsym $mod+Shift+p exec maim --select | wl-copy
12081+    bindsym $mod+p exec grim  -g "$(slurp)" - | wl-copy
12082+    bindsym $mod+Shift+d exec wofi --show drun
12083+    bindsym $mod+Shift+minus move scratchpad
12084+    bindsym $mod+minus scratchpad show
12085+
12086+    bindsym $mod+j focus down
12087+    bindsym $mod+k focus up
12088+    bindsym $mod+l focus right
12089+    bindsym $mod+h focus left
12090+
12091+    # move focused window
12092+    bindsym $mod+Shift+h move left
12093+    bindsym $mod+Shift+j move down
12094+    bindsym $mod+Shift+k move up
12095+    bindsym $mod+Shift+l move right
12096+
12097+    # move focused workspace between monitors
12098+    bindsym $mod+Ctrl+greater move workspace to output right
12099+    bindsym $mod+Ctrl+less move workspace to output left
12100+
12101+
12102+    # split in vertical orientation
12103+    bindsym $mod+v split v
12104+
12105+    # enter fullscreen mode for the focused container
12106+    bindsym $mod+f fullscreen toggle
12107+
12108+    # change container layout (stacked, tabbed, toggle split)
12109+    bindsym $mod+w layout tabbed
12110+    bindsym $mod+s layout toggle split
12111+
12112+
12113+    bindsym $mod+Shift+space floating toggle
12114+    bindsym $mod+a sticky toggle
12115+
12116+    # change focus between tiling / floating windows
12117+    bindsym $mod+space focus mode_toggle
12118+
12119+    # Define names for default workspaces for which we configure key bindings later on.
12120+    # We use variables to avoid repeating the names in multiple places.
12121+    set $ws1 "1.web"
12122+    set $ws2 "2.nvim"
12123+    set $ws3 "3.work"
12124+    set $ws4 "4.buffer"
12125+    set $ws5 "5.chat"
12126+    set $ws6 "6"
12127+    set $ws7 "7"
12128+    set $ws8 "8"
12129+    set $ws9 "9"
12130+    set $ws10 "10"
12131+
12132+    # switch to workspace
12133+    bindsym $mod+1 workspace $ws1
12134+    bindsym $mod+2 workspace $ws2
12135+    bindsym $mod+3 workspace $ws3
12136+    bindsym $mod+4 workspace $ws4
12137+    bindsym $mod+5 workspace $ws5
12138+    bindsym $mod+6 workspace $ws6
12139+    bindsym $mod+7 workspace $ws7
12140+    bindsym $mod+8 workspace $ws8
12141+    bindsym $mod+9 workspace $ws9
12142+    bindsym $mod+0 workspace $ws10
12143+
12144+    # move focused container to workspace
12145+    bindsym $mod+Shift+1 move container to workspace $ws1
12146+    bindsym $mod+Shift+2 move container to workspace $ws2
12147+    bindsym $mod+Shift+3 move container to workspace $ws3
12148+    bindsym $mod+Shift+4 move container to workspace $ws4
12149+    bindsym $mod+Shift+5 move container to workspace $ws5
12150+    bindsym $mod+Shift+6 move container to workspace $ws6
12151+    bindsym $mod+Shift+7 move container to workspace $ws7
12152+    bindsym $mod+Shift+8 move container to workspace $ws8
12153+    bindsym $mod+Shift+9 move container to workspace $ws9
12154+    bindsym $mod+Shift+0 move container to workspace $ws10
12155+
12156+    # reload the configuration file
12157+    bindsym $mod+Shift+c reload
12158+    # restart i3 inplace (preserves your layout/session, can be used to upgrade i3)
12159+    bindsym $mod+Shift+r restart
12160+
12161+    # resize window (you can also use the mouse for that)
12162+    mode "resize" {
12163+            bindsym h resize shrink width 10 px or 10 ppt
12164+            bindsym j resize grow height 10 px or 10 ppt
12165+            bindsym k resize shrink height 10 px or 10 ppt
12166+            bindsym l resize grow width 10 px or 10 ppt
12167+
12168+            # same bindings, but for the arrow keys
12169+            bindsym Left resize shrink width 10 px or 10 ppt
12170+            bindsym Down resize grow height 10 px or 10 ppt
12171+            bindsym Up resize shrink height 10 px or 10 ppt
12172+            bindsym Right resize grow width 10 px or 10 ppt
12173+
12174+            # back to normal: Enter or Escape or $mod+r
12175+            bindsym Return mode "default"
12176+            bindsym Escape mode "default"
12177+            bindsym $mod+r mode "default"
12178+    }
12179+
12180+    bindsym $mod+r mode "resize"
12181+
12182+    # class                 border  bground text    indicator child_border
12183+    client.focused          #83CAFA #51A2DA #FFFFFF #83CAFA   #51A2DA
12184+    client.unfocused        #4C4C4C #222222 #888888 #292D2E   #222222
12185+    client.urgent           #EC69A0 #DB3279 #FFFFFF #DB3279   #DB3279
12186+    client.placeholder      #000000 #0C0C0C #FFFFFF #000000   #0C0C0C
12187+
12188+    client.background       #FFFFFF
12189+
12190+    bar {
12191+        swaybar_command waybar
12192+    }
12193+
12194+    input type:keyboard {
12195+        xkb_layout us,us_intl,de
12196+        xkb_options grp:rctrl_toggle
12197+    }
12198+
12199+    gaps outer 5
12200+    gaps inner 5
12201+    output * bg /usr/share/backgrounds/sway/Sway_Wallpaper_Blue_1920x1080.png fill
12202+    output "LG Electronics LG HDR 4K 0x0001A8D9" scale 1.4
12203+
12204+
12205+    exec nextcloud
12206+    exec mako
12207+    exec blueman-applet
12208+  '';
12209+}
12210diff --git a/waybar.nix b/waybar.nix
12211new file mode 100644
12212index 0000000000000000000000000000000000000000..dfa6d8d91eab4409676b1695b0a6b6ccbfc37d2a
12213--- /dev/null
12214+++ b/waybar.nix
12215@@ -0,0 +1,136 @@
12216+{
12217+  pkgs,
12218+  inputs,
12219+  ...
12220+}: let
12221+  jsonFormat = pkgs.formats.json {};
12222+in {
12223+  xdg.configFile."waybar/config".source = jsonFormat.generate "config" {
12224+    layer = "top";
12225+    position = "left";
12226+    "modules-left" = [
12227+      "niri/workspaces"
12228+      "niri/scratchpad"
12229+    ];
12230+    modules-center = [
12231+      "niri/window"
12232+    ];
12233+    modules-right = [
12234+      "wireplumber"
12235+      "bluetooth"
12236+      "temperature"
12237+      "battery"
12238+      "cpu"
12239+      "memory"
12240+      "clock#time"
12241+      "clock#date"
12242+      "tray"
12243+    ];
12244+    "clock#time" = {
12245+      interval = 10;
12246+      format = "{:%H\n%M}";
12247+      tooltip = false;
12248+    };
12249+    "clock#date" = {
12250+      interval = 20;
12251+      format = "{:%d\n%m}";
12252+      tooltip = false;
12253+    };
12254+    cpu = {
12255+      "format" = "{usage}";
12256+      "tooltip" = false;
12257+    };
12258+    memory = {
12259+      "format" = "{:2}";
12260+    };
12261+    "temperature" = {
12262+      "thermal-zone" = 2;
12263+      "hwmon-path" = "/sys/class/hwmon/hwmon2/temp1_input";
12264+      "critical-threshold" = 80;
12265+      "format-icons" = [
12266+        ""
12267+        ""
12268+        ""
12269+        ""
12270+        ""
12271+      ];
12272+      "format" = "{icon}";
12273+      "on-click" = "ghostty -e btop";
12274+    };
12275+    "battery" = {
12276+      "states" = {
12277+        "warning" = 30;
12278+        "critical" = 15;
12279+      };
12280+      "format" = "{icon}";
12281+      "format-charging" = "󰂄";
12282+      "format-plugged" = "{icon}";
12283+      "format-alt" = "{capacity} {time} {icon}";
12284+      "format-icons" = [
12285+        "󰂎"
12286+        "󰁺"
12287+        "󰁻"
12288+        "󰁼"
12289+        "󰁽"
12290+        "󰁾"
12291+        "󰁿"
12292+        "󰂀"
12293+        "󰂁"
12294+        "󰂂"
12295+        "󰁹"
12296+      ];
12297+    };
12298+    "wireplumber" = {
12299+      "format" = "{icon}";
12300+      "return-type" = "json";
12301+      "signal" = 8;
12302+      "interval" = "once";
12303+      "format-icons" = {
12304+        "mute" = "";
12305+        "default" = [
12306+          ""
12307+          "󰖀"
12308+          "󰕾"
12309+        ];
12310+      };
12311+      "exec" = "pw-volume status";
12312+      "on-click" = "pavucontrol";
12313+    };
12314+    "bluetooth" = {
12315+      "format-on" = "󰂯";
12316+      "format-off" = "󰂲";
12317+      "format-disabled" = "";
12318+      "format-connected" = "󰂱";
12319+      "tooltip-format-connected" = "{device_enumerate}";
12320+      "tooltip-format-enumerate-connected" = "{device_alias}\t{device_address}";
12321+    };
12322+    "niri/window" = {
12323+      "format" = "{title}";
12324+      "icon" = false;
12325+      "max-length" = 300;
12326+      "rotate" = 90;
12327+    };
12328+  };
12329+
12330+  xdg.configFile."waybar/style.css".text = ''
12331+    * {
12332+        border: none;
12333+        border-radius: 0;
12334+        min-height: 0;
12335+        margin: 0;
12336+        padding: 0;
12337+        box-shadow: none;
12338+        text-shadow: none;
12339+    }
12340+
12341+    #waybar {
12342+        font-family: iosevka;
12343+    }
12344+
12345+    #clock.time,
12346+    #workspaces button.focused {
12347+        color: white;
12348+        background: black;
12349+    }
12350+  '';
12351+}
12352diff --git a/wofi.nix b/wofi.nix
12353new file mode 100644
12354index 0000000000000000000000000000000000000000..cd81d1a344806acd720faea9f8a035d04a6c423b
12355--- /dev/null
12356+++ b/wofi.nix
12357@@ -0,0 +1,59 @@
12358+{
12359+  pkgs,
12360+  inputs,
12361+  ...
12362+}: {
12363+  xdg.configFile."wofi/style.css".text = ''
12364+    window {
12365+    margin: 0px;
12366+    background-color: #282a36;
12367+    font-size: 25px;
12368+    }
12369+
12370+    #input {
12371+    margin: 5px;
12372+    border: none;
12373+    color: #f8f8f2;
12374+    background-color: #44475a;
12375+    }
12376+
12377+    #inner-box {
12378+    margin: 5px;
12379+    border: none;
12380+    background-color: #282a36;
12381+    }
12382+
12383+    #outer-box {
12384+    margin: 5px;
12385+    border: none;
12386+    background-color: #282a36;
12387+    }
12388+
12389+    #scroll {
12390+    margin: 0px;
12391+    border: none;
12392+    }
12393+
12394+    #text {
12395+    margin: 5px;
12396+    border: none;
12397+    color: #f8f8f2;
12398+    }
12399+
12400+    #entry.activatable #text {
12401+    color: #282a36;
12402+    }
12403+
12404+    #entry > * {
12405+    color: #f8f8f2;
12406+    }
12407+
12408+    #entry:selected {
12409+    background-color: #44475a;
12410+    }
12411+
12412+    #entry:selected #text {
12413+    font-weight: bold;
12414+    }
12415+  '';
12416+}