120 lines
		
	
	
	
		
			3 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
		
		
			
		
	
	
			120 lines
		
	
	
	
		
			3 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
|  | # -----------------------------------------------------------------------------
 | ||
|  | # K9s Nightfox Theme
 | ||
|  | # Based on the Nightfox.nvim color scheme:
 | ||
|  | # https://github.com/EdenEast/nightfox.nvim
 | ||
|  | # -----------------------------------------------------------------------------
 | ||
|  | 
 | ||
|  | # Styles...
 | ||
|  | foreground: &foreground "#cdcecf"  # Light Gray
 | ||
|  | #foreground: &foreground "#ad7fa8"
 | ||
|  | 
 | ||
|  | #background: &background "#192330"
 | ||
|  | background: &background "default"
 | ||
|  | current_line: ¤t_line "#2b3b51"  # Dark Blue/Gray
 | ||
|  | #current_line: ¤t_line "#ad7fa8"
 | ||
|  | selection: &selection "#2b3b51"
 | ||
|  | #selection: &selection "#ad7fa8"
 | ||
|  | 
 | ||
|  | comment: &comment "#738091"  # Medium Gray
 | ||
|  | cyan: &cyan "#008b8b"  #"#63cdcf"
 | ||
|  | green: &green "#81b29a"
 | ||
|  | orange: &orange "#f4a261"
 | ||
|  | magenta: &magenta "#9d79d6"
 | ||
|  | purple: &purple "#ad7fa8"
 | ||
|  | blue: &blue "#719cd6"
 | ||
|  | red: &red "#c94f6d"
 | ||
|  | 
 | ||
|  | # Skin...
 | ||
|  | k9s:
 | ||
|  |   body:
 | ||
|  |     fgColor: *foreground
 | ||
|  |     bgColor: *background
 | ||
|  |     logoColor: *blue
 | ||
|  |   prompt:
 | ||
|  |     fgColor: *foreground
 | ||
|  |     bgColor: *background
 | ||
|  |     suggestColor: *orange
 | ||
|  |   info:
 | ||
|  |     fgColor: *purple
 | ||
|  |     sectionColor: *foreground
 | ||
|  |   dialog:
 | ||
|  |     fgColor: *foreground
 | ||
|  |     bgColor: *background
 | ||
|  |     buttonFgColor: *foreground
 | ||
|  |     buttonBgColor: *purple
 | ||
|  | #    buttonFocusFgColor: white
 | ||
|  |     buttonFocusFgColor: *current_line
 | ||
|  |     #buttonFocusBgColor: *cyan
 | ||
|  |     buttonFocusBgColor: *purple
 | ||
|  |     labelFgColor: *orange
 | ||
|  |     fieldFgColor: *foreground
 | ||
|  |   frame:
 | ||
|  |     border:
 | ||
|  |       fgColor: *selection
 | ||
|  |       focusColor: *current_line
 | ||
|  |     menu:
 | ||
|  |       fgColor: *foreground
 | ||
|  |       keyColor: *magenta
 | ||
|  |       numKeyColor: *magenta
 | ||
|  |     crumbs:
 | ||
|  |       fgColor: *foreground
 | ||
|  |       bgColor: *current_line
 | ||
|  |       activeColor: *current_line
 | ||
|  |     status:
 | ||
|  | # newColor is used for every pod by default
 | ||
|  | #      newColor: *cyan
 | ||
|  |       newColor: *purple
 | ||
|  |       modifyColor: *blue
 | ||
|  |       #modifyColor: "#ad7fa8"
 | ||
|  |       addColor: *green
 | ||
|  |       errorColor: *red
 | ||
|  |       highlightColor: *orange
 | ||
|  |       #highlightColor: "#ad7fa8"
 | ||
|  |       killColor: *comment
 | ||
|  |       completedColor: *comment
 | ||
|  |     title:
 | ||
|  |       fgColor: *foreground
 | ||
|  | #      bgColor: *current_line
 | ||
|  |       bgColor: *background
 | ||
|  | #      highlightColor: *orange
 | ||
|  |       highlightColor: *cyan
 | ||
|  |       counterColor: *blue
 | ||
|  |       filterColor: *magenta
 | ||
|  |   views:
 | ||
|  |     charts:
 | ||
|  |       bgColor: default
 | ||
|  |       defaultDialColors:
 | ||
|  |         - *blue
 | ||
|  |         - *red
 | ||
|  |       defaultChartColors:
 | ||
|  |         - *blue
 | ||
|  |         - *red
 | ||
|  |     table:
 | ||
|  |       fgColor: *foreground
 | ||
|  |       bgColor: *background
 | ||
|  |       cursorFgColor: *selection
 | ||
|  |       cursorBgColor: *current_line
 | ||
|  | #      cursorBgColor: "#ad7fa8"
 | ||
|  |       header:
 | ||
|  |         fgColor: *foreground
 | ||
|  |         bgColor: *background
 | ||
|  |         sorterColor: *cyan
 | ||
|  |     xray:
 | ||
|  |       fgColor: *foreground
 | ||
|  |       bgColor: *background
 | ||
|  |       cursorColor: *current_line
 | ||
|  |       graphicColor: *blue
 | ||
|  |       showIcons: false
 | ||
|  |     yaml:
 | ||
|  |       keyColor: *magenta
 | ||
|  |       colonColor: *blue
 | ||
|  |       valueColor: *foreground
 | ||
|  |     logs:
 | ||
|  |       fgColor: *foreground
 | ||
|  |       bgColor: *background
 | ||
|  |       indicator:
 | ||
|  |         fgColor: *foreground
 | ||
|  |         bgColor: *selection
 | ||
|  |         toggleOnColor: *magenta
 | ||
|  |         toggleOffColor: *blue
 |