diff options
Diffstat (limited to '.config/k9s')
| -rw-r--r-- | .config/k9s/everforest.yaml | 114 | ||||
| -rw-r--r-- | .config/k9s/skins/nord.yaml | 120 |
2 files changed, 120 insertions, 114 deletions
diff --git a/.config/k9s/everforest.yaml b/.config/k9s/everforest.yaml deleted file mode 100644 index afb3044..0000000 --- a/.config/k9s/everforest.yaml +++ /dev/null @@ -1,114 +0,0 @@ -# ----------------------------------------------------------------------------- -# Everforest Dark -# https://github.com/sainnhe/everforest/blob/master/palette.md#dark -# ----------------------------------------------------------------------------- -# -text: &text "#d3c6aa" -base: &base default -overlay: &overlay "#2e383c" -muted: &muted "#495156" -red: &red "#e67e80" -blue: &blue "#7fbbb3" -yellow: &yellow "#dbbc7f" -green: &green "#83c092" -pink: &pink "#d699b6" -orange: &orange "#e69875" - -# Skin... -k9s: - # General K9s styles - body: - fgColor: *text - bgColor: *base - logoColor: *green - # Command prompt styles - prompt: - fgColor: *text - bgColor: *base - suggestColor: *green - border: - command: *orange - default: *blue - # ClusterInfoView styles. - info: - fgColor: *green - sectionColor: *text - # Dialog styles. - dialog: - fgColor: *text - bgColor: *base - buttonFgColor: *text - buttonBgColor: *green - buttonFocusFgColor: *yellow - buttonFocusBgColor: *green - labelFgColor: *yellow - fieldFgColor: *text - frame: - # Borders styles. - border: - fgColor: *overlay - focusColor: *overlay - menu: - fgColor: *text - keyColor: *green - # Used for favorite namespaces - numKeyColor: *green - # CrumbView attributes for history navigation. - crumbs: - fgColor: *text - bgColor: *overlay - activeColor: *overlay - # Resource status and update styles - status: - newColor: *green - modifyColor: *red - addColor: *blue - errorColor: *pink - highlightcolor: *yellow - killColor: *muted - completedColor: *muted - # Border title styles. - title: - fgColor: *text - bgColor: *overlay - highlightColor: *yellow - counterColor: *green - filterColor: *green - views: - # Charts skins... - charts: - bgColor: default - defaultDialColors: - - *green - - *pink - defaultChartColors: - - *green - - *pink - # TableView attributes. - table: - fgColor: *text - bgColor: *base - # Header row styles. - header: - fgColor: *text - bgColor: *base - sorterColor: *red - # Xray view attributes. - xray: - fgColor: *text - bgColor: *base - cursorColor: *overlay - graphicColor: *green - showIcons: false - # YAML info styles. - yaml: - keyColor: *green - colonColor: *green - valueColor: *text - # Logs styles. - logs: - fgColor: *text - bgColor: *base - indicator: - fgColor: *text - bgColor: *base diff --git a/.config/k9s/skins/nord.yaml b/.config/k9s/skins/nord.yaml new file mode 100644 index 0000000..eb498b5 --- /dev/null +++ b/.config/k9s/skins/nord.yaml @@ -0,0 +1,120 @@ +# ----------------------------------------------------------------------------- +# Nord skin +# ----------------------------------------------------------------------------- + +# Styles... +foreground: &foreground "#DADEE8" +background: &background "#30343F" +current_line: ¤t_line "#383D4A" +selection: &selection "#D9DEE8" +comment: &comment "#8891A7" +cyan: &cyan "#88C0D0" +green: &green "#A3BE8C" +orange: &orange "#D08770" +blue: &blue "#81A1C1" +magenta: &magenta "#B48EAD" +red: &red "#BF616A" +yellow: &yellow "#EBCB8B" + +# Skin... +k9s: + # General K9s styles + body: + fgColor: *foreground + bgColor: default + logoColor: *magenta + # Command prompt styles + prompt: + fgColor: *foreground + bgColor: *background + suggestColor: *orange + # ClusterInfoView styles. + info: + fgColor: *blue + sectionColor: *foreground + # Dialog styles. + dialog: + fgColor: *foreground + bgColor: default + buttonFgColor: *foreground + buttonBgColor: *magenta + buttonFocusFgColor: *yellow + buttonFocusBgColor: *blue + labelFgColor: *orange + fieldFgColor: *foreground + frame: + # Borders styles. + border: + fgColor: *selection + focusColor: *current_line + menu: + fgColor: *foreground + keyColor: *blue + # Used for favorite namespaces + numKeyColor: *blue + # CrumbView attributes for history navigation. + crumbs: + fgColor: *foreground + bgColor: *current_line + activeColor: *current_line + # Resource status and update styles + status: + newColor: *cyan + modifyColor: *magenta + addColor: *green + errorColor: *red + highlightColor: *orange + killColor: *comment + completedColor: *comment + # Border title styles. + title: + fgColor: *foreground + bgColor: *current_line + highlightColor: *orange + counterColor: *magenta + filterColor: *blue + views: + # Charts skins... + charts: + bgColor: default + defaultDialColors: + - *magenta + - *red + defaultChartColors: + - *magenta + - *red + # TableView attributes. + table: + fgColor: *foreground + bgColor: default + # Header row styles. + header: + fgColor: *foreground + bgColor: default + sorterColor: *cyan + # Xray view attributes. + xray: + fgColor: *foreground + bgColor: default + cursorColor: *current_line + graphicColor: *magenta + showIcons: false + # YAML info styles. + yaml: + keyColor: *blue + colonColor: *magenta + valueColor: *foreground + # Logs styles. + logs: + fgColor: *foreground + bgColor: default + indicator: + fgColor: *foreground + bgColor: *magenta + toggleOnColor: *magenta + toggleOffColor: *blue + help: + fgColor: *foreground + bgColor: *background + indicator: + fgColor: *red |