go.mondoo.com/cnquery@v0.0.0-20231005093811-59568235f6ea/cli/theme/colors/color_default.go (about) 1 // Copyright (c) Mondoo, Inc. 2 // SPDX-License-Identifier: BUSL-1.1 3 4 //go:build !windows 5 // +build !windows 6 7 package colors 8 9 import ( 10 "github.com/muesli/termenv" 11 ) 12 13 var Profile termenv.Profile = termenv.EnvColorProfile() 14 15 var DefaultColorTheme = Theme{ 16 // messages 17 Primary: Profile.Color("75"), 18 Secondary: Profile.Color("140"), 19 Disabled: Profile.Color("248"), 20 Error: Profile.Color("210"), 21 Success: Profile.Color("78"), 22 23 // severity 24 Critical: Profile.Color("204"), 25 High: Profile.Color("212"), 26 Medium: Profile.Color("75"), 27 Low: Profile.Color("117"), 28 Good: Profile.Color("78"), 29 Unknown: Profile.Color("231"), 30 }