Use withHashtag in k9s module 🎨

This commit is contained in:
Daniel Thwaites 2023-01-28 18:06:16 +00:00
parent af4cde884b
commit 8c22082ab1
No known key found for this signature in database
GPG key ID: D8AFC4BF05670F9D

View file

@ -1,6 +1,6 @@
{ pkgs, config, lib, ... }: { pkgs, config, lib, ... }:
with config.lib.stylix.colors; with config.lib.stylix.colors.withHashtag;
{ {
options.stylix.targets.k9s.enable = options.stylix.targets.k9s.enable =
@ -12,114 +12,114 @@ with config.lib.stylix.colors;
programs.k9s.skin = { programs.k9s.skin = {
k9s = { k9s = {
body = { body = {
fgColor = "#${base05-hex}"; fgColor = base05-hex;
bgColor = "default"; bgColor = "default";
logoColor = "#${base0C-hex}"; logoColor = base0C-hex;
}; };
prompt = { prompt = {
fgColor = "#${base05-hex}"; fgColor = base05-hex;
bgColor = "#${base00-hex}"; bgColor = base00-hex;
suggestColor = "#${base0A-hex}"; suggestColor = base0A-hex;
}; };
info = { info = {
fgColor = "#${base0B-hex}"; fgColor = base0B-hex;
sectionColor = "#${base05-hex}"; sectionColor = base05-hex;
}; };
dialog = { dialog = {
fgColor = "#${base05-hex}"; fgColor = base05-hex;
bgColor = "default"; bgColor = "default";
buttonFgColor = "#${base05-hex}"; buttonFgColor = base05-hex;
buttonBgColor = "#${base0C-hex}"; buttonBgColor = base0C-hex;
buttonFocusFgColor = "#${base0E-hex}"; buttonFocusFgColor = base0E-hex;
buttonFocusBgColor = "#${base0B-hex}"; buttonFocusBgColor = base0B-hex;
labelFgColor = "#${base0A-hex}"; labelFgColor = base0A-hex;
fieldFgColor = "#${base05-hex}"; fieldFgColor = base05-hex;
}; };
frame = { frame = {
border = { border = {
fgColor = "#${base02-hex}"; fgColor = base02-hex;
focusColor = "#${base01-hex}"; focusColor = base01-hex;
}; };
menu = { menu = {
fgColor = "#${base05-hex}"; fgColor = base05-hex;
keyColor = "#${base0B-hex}"; keyColor = base0B-hex;
numKeyColor = "#${base0B-hex}"; numKeyColor = base0B-hex;
}; };
crumbs = { crumbs = {
fgColor = "#${base05-hex}"; fgColor = base05-hex;
bgColor = "#${base01-hex}"; bgColor = base01-hex;
activeColor = "#${base01-hex}"; activeColor = base01-hex;
}; };
status = { status = {
newColor = "#${base08-hex}"; newColor = base08-hex;
modifyColor = "#${base0C-hex}"; modifyColor = base0C-hex;
addColor = "#${base09-hex}"; addColor = base09-hex;
errorColor = "#${base0D-hex}"; errorColor = base0D-hex;
highlightcolor = "#${base0A-hex}"; highlightcolor = base0A-hex;
killColor = "#${base03-hex}"; killColor = base03-hex;
completedColor = "#${base03-hex}"; completedColor = base03-hex;
}; };
title = { title = {
fgColor = "#${base05-hex}"; fgColor = base05-hex;
bgColor = "#${base01-hex}"; bgColor = base01-hex;
highlightColor = "#${base0A-hex}"; highlightColor = base0A-hex;
counterColor = "#${base0C-hex}"; counterColor = base0C-hex;
filterColor = "#${base0B-hex}"; filterColor = base0B-hex;
}; };
}; };
views = { views = {
charts = { charts = {
bgColor = "default"; bgColor = "default";
defaultDialColors = [ "#${base0C-hex}" "#${base0D-hex}" ]; defaultDialColors = [ base0C-hex base0D-hex ];
defaultChartColors = [ "#${base0C-hex}" "#${base0D-hex}" ]; defaultChartColors = [ base0C-hex base0D-hex ];
}; };
table = { table = {
fgColor = "#${base05-hex}"; fgColor = base05-hex;
bgColor = "default"; bgColor = "default";
header = { header = {
fgColor = "#${base05-hex}"; fgColor = base05-hex;
bgColor = "default"; bgColor = "default";
sorterColor = "#${base08-hex}"; sorterColor = base08-hex;
}; };
}; };
xray = { xray = {
fgColor = "#${base05-hex}"; fgColor = base05-hex;
bgColor = "default"; bgColor = "default";
cursorColor = "#${base01-hex}"; cursorColor = base01-hex;
graphicColor = "#${base0C-hex}"; graphicColor = base0C-hex;
showIcons = false; showIcons = false;
}; };
yaml = { yaml = {
keyColor = "#${base0B-hex}"; keyColor = base0B-hex;
colonColor = "#${base0C-hex}"; colonColor = base0C-hex;
valueColor = "#${base05-hex}"; valueColor = base05-hex;
}; };
logs = { logs = {
fgColor = "#${base05-hex}"; fgColor = base05-hex;
bgColor = "default"; bgColor = "default";
indicator = { indicator = {
fgColor = "#${base05-hex}"; fgColor = base05-hex;
bgColor = "#${base0C-hex}"; bgColor = base0C-hex;
}; };
}; };
help = { help = {
fgColor = "#${base05-hex}"; fgColor = base05-hex;
bgColor = "#${base00-hex}"; bgColor = base00-hex;
indicator.fgColor = "#${base0D-hex}"; indicator.fgColor = base0D-hex;
}; };
}; };
}; };