ghostty: colors
This commit is contained in:
@@ -1,11 +1,42 @@
|
|||||||
{ pkgs, ... }:
|
{ ... }:
|
||||||
{
|
{
|
||||||
# https://mynixos.com/home-manager/option/programs.ghostty
|
# https://mynixos.com/home-manager/option/programs.ghostty
|
||||||
programs.ghostty = {
|
programs.ghostty = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableFishIntegration = true;
|
enableFishIntegration = true;
|
||||||
|
|
||||||
|
# custom palette ported verbatim from the previous alacritty config
|
||||||
|
# (poimandres-ish). lives in ~/.config/ghostty/themes/poimandres and is
|
||||||
|
# selected by `theme = "poimandres"` below.
|
||||||
|
themes.poimandres = {
|
||||||
|
palette = [
|
||||||
|
"0=#1b1e28"
|
||||||
|
"1=#d0679d"
|
||||||
|
"2=#5de4c7"
|
||||||
|
"3=#fffac2"
|
||||||
|
"4=#435c89"
|
||||||
|
"5=#fcc5e9"
|
||||||
|
"6=#add7ff"
|
||||||
|
"7=#ffffff"
|
||||||
|
"8=#a6accd"
|
||||||
|
"9=#d0679d"
|
||||||
|
"10=#5de4c7"
|
||||||
|
"11=#fffac2"
|
||||||
|
"12=#add7ff"
|
||||||
|
"13=#fae4fc"
|
||||||
|
"14=#89ddff"
|
||||||
|
"15=#ffffff"
|
||||||
|
];
|
||||||
|
background = "131621";
|
||||||
|
foreground = "a6accd";
|
||||||
|
cursor-color = "a6accd";
|
||||||
|
cursor-text = "131621";
|
||||||
|
selection-background = "303340";
|
||||||
|
selection-foreground = "a6accd";
|
||||||
|
};
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
theme = "Adventure";
|
theme = "poimandres";
|
||||||
|
|
||||||
# font
|
# font
|
||||||
font-family = "JetBrainsMono Nerd Font";
|
font-family = "JetBrainsMono Nerd Font";
|
||||||
@@ -18,7 +49,7 @@
|
|||||||
window-width = 80;
|
window-width = 80;
|
||||||
window-height = 40;
|
window-height = 40;
|
||||||
|
|
||||||
# semi-transparent
|
# semi-transparent background
|
||||||
background-opacity = 0.90;
|
background-opacity = 0.90;
|
||||||
|
|
||||||
# cursor
|
# cursor
|
||||||
|
|||||||
Reference in New Issue
Block a user