package completion

import (
	
	

	
	
)

// DefaultStyleConfig sets some default styles for completion.
func () {
	// If carapace config file is found, just return.
	if ,  := xdg.UserConfigDir();  == nil {
		,  := os.Stat(fmt.Sprintf("%v/carapace/styles.json", ))
		if  == nil {
			return
		}
	}

	// Overwrite all default styles for color
	for  := 1;  < 13; ++ {
		 := fmt.Sprintf("carapace.Highlight%d", )
		style.Set(, "bright-white")
	}

	// Overwrite all default styles for flags
	style.Set("carapace.FlagArg", "bright-white")
	style.Set("carapace.FlagMultiArg", "bright-white")
	style.Set("carapace.FlagNoArg", "bright-white")
	style.Set("carapace.FlagOptArg", "bright-white")
}