add ssh config
This commit is contained in:
parent
c28c719196
commit
2309854898
5 changed files with 429 additions and 0 deletions
159
k9smocha
Normal file
159
k9smocha
Normal file
|
|
@ -0,0 +1,159 @@
|
|||
# https://github.com/catppuccin/k9s
|
||||
base: &base "#1e1e2e"
|
||||
blue: &blue "#89b4fa"
|
||||
crust: &crust "#11111b"
|
||||
flamingo: &flamingo "#f2cdcd"
|
||||
green: &green "#a6e3a1"
|
||||
lavender: &lavender "#b4befe"
|
||||
mantle: &mantle "#181825"
|
||||
maroon: &maroon "#eba0ac"
|
||||
mauve: &mauve "#cba6f7"
|
||||
overlay0: &overlay0 "#6c7086"
|
||||
overlay1: &overlay1 "#7f849c"
|
||||
overlay2: &overlay2 "#9399b2"
|
||||
peach: &peach "#fab387"
|
||||
pink: &pink "#f5c2e7"
|
||||
red: &red "#f38ba8"
|
||||
rosewater: &rosewater "#f5e0dc"
|
||||
sapphire: &sapphire "#74c7ec"
|
||||
sky: &sky "#89dceb"
|
||||
subtext0: &subtext0 "#a6adc8"
|
||||
subtext1: &subtext1 "#bac2de"
|
||||
surface0: &surface0 "#313244"
|
||||
surface1: &surface1 "#45475a"
|
||||
surface2: &surface2 "#585b70"
|
||||
teal: &teal "#94e2d5"
|
||||
text: &text "#cdd6f4"
|
||||
yellow: &yellow "#f9e2af"
|
||||
|
||||
# Skin...
|
||||
k9s:
|
||||
# General K9s styles
|
||||
body:
|
||||
fgColor: *text
|
||||
bgColor: *base
|
||||
logoColor: *mauve
|
||||
|
||||
# Command prompt styles
|
||||
prompt:
|
||||
fgColor: *text
|
||||
bgColor: *mantle
|
||||
suggestColor: *blue
|
||||
|
||||
# ClusterInfoView styles.
|
||||
info:
|
||||
fgColor: *peach
|
||||
sectionColor: *text
|
||||
|
||||
# Dialog styles.
|
||||
dialog:
|
||||
fgColor: *yellow
|
||||
bgColor: *overlay2
|
||||
buttonFgColor: *base
|
||||
buttonBgColor: *overlay1
|
||||
buttonFocusFgColor: *base
|
||||
buttonFocusBgColor: *pink
|
||||
labelFgColor: *rosewater
|
||||
fieldFgColor: *text
|
||||
|
||||
frame:
|
||||
# Borders styles.
|
||||
border:
|
||||
fgColor: *mauve
|
||||
focusColor: *lavender
|
||||
|
||||
# MenuView attributes and styles
|
||||
menu:
|
||||
fgColor: *text
|
||||
keyColor: *blue
|
||||
# Used for favorite namespaces
|
||||
numKeyColor: *maroon
|
||||
|
||||
# CrumbView attributes for history navigation.
|
||||
crumbs:
|
||||
fgColor: *base
|
||||
bgColor: *maroon
|
||||
activeColor: *flamingo
|
||||
|
||||
# Resource status and update styles
|
||||
status:
|
||||
newColor: *blue
|
||||
modifyColor: *lavender
|
||||
addColor: *green
|
||||
pendingColor: *peach
|
||||
errorColor: *red
|
||||
highlightColor: *sky
|
||||
killColor: *mauve
|
||||
completedColor: *overlay0
|
||||
|
||||
# Border title styles.
|
||||
title:
|
||||
fgColor: *teal
|
||||
bgColor: *base
|
||||
highlightColor: *pink
|
||||
counterColor: *yellow
|
||||
filterColor: *green
|
||||
|
||||
views:
|
||||
# Charts skins...
|
||||
charts:
|
||||
bgColor: *base
|
||||
chartBgColor: *base
|
||||
dialBgColor: *base
|
||||
defaultDialColors:
|
||||
- *green
|
||||
- *red
|
||||
defaultChartColors:
|
||||
- *green
|
||||
- *red
|
||||
resourceColors:
|
||||
cpu:
|
||||
- *mauve
|
||||
- *blue
|
||||
mem:
|
||||
- *yellow
|
||||
- *peach
|
||||
|
||||
# TableView attributes.
|
||||
table:
|
||||
fgColor: *text #Doesn't Work
|
||||
bgColor: *base
|
||||
cursorFgColor: *surface0 # Doesn't Work
|
||||
cursorBgColor: *surface1 # should be rosewater
|
||||
markColor: *rosewater # Doesn't Work
|
||||
# Header row styles.
|
||||
header:
|
||||
fgColor: *yellow
|
||||
bgColor: *base
|
||||
sorterColor: *sky
|
||||
|
||||
# Xray view attributes.
|
||||
xray:
|
||||
fgColor: *text #Doesn't Work
|
||||
bgColor: *base
|
||||
# Need to set this to a dark color since color text can't be changed
|
||||
# Ideally this would be rosewater
|
||||
cursorColor: *surface1
|
||||
cursorTextColor: *base #Doesn't Work
|
||||
graphicColor: *pink
|
||||
|
||||
# YAML info styles.
|
||||
yaml:
|
||||
keyColor: *blue
|
||||
colonColor: *subtext0
|
||||
valueColor: *text
|
||||
|
||||
# Logs styles.
|
||||
logs:
|
||||
fgColor: *text
|
||||
bgColor: *base
|
||||
indicator:
|
||||
fgColor: *lavender
|
||||
bgColor: *base
|
||||
|
||||
help:
|
||||
fgColor: *text
|
||||
bgColor: *base
|
||||
sectionColor: *green
|
||||
keyColor: *blue
|
||||
numKeyColor: *maroon
|
||||
Loading…
Add table
Add a link
Reference in a new issue