New Entity AI



dugout-> highlight_keyword.dugout



Provide highlighted default words, constructs, methods, and routines to your environment


            
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
#!/bin/sh
###############################################################################
## COPYRIGHT (C) 2020-2026 NEW ENTITY OPERATIONS INC. ALL RIGHTS RESERVED
## INSTANCE: ALL_static_zone_colors.dugout
## MODIFIED: 2026/04/20
## OVERVIEW: Provide highlighted default words, constructs, methods, and
## routines to your environment.
##
## These can be passed to output to get a standard visual color scheme for
## for various states occuring in up/down/operation hooks
##
## highlight_keyword allows you to link in linters, or highlighting sub-systems
## to perform on the fly operations on text-strings that are active within the
## instance
###############################################################################
## Terminal output modifiers
###############################################################################
## Default colors
export DEFAULT_COLOR=''
export DEFAULT_COLOR_LINE=''
export DEFAULT_COLOR_LINE_ROOT=''

## Stard/End
export tmodStart=''
export tmodEnd=''
export tmodReset="${DEFAULT_COLOR}"
export tmodSequenceEnd='m'

## Styles
export styleNormal='[0m'
export styleBold='[1m'
export styleDim='[2m'
export styleItalic='[3m'
export styleUnderline='[4m'
export styleBlinking='[5m'
export styleReverse='[7m'
export styleInvisible='[8m'

## Add exported tmodStart* take a start position and a end position (tmodReset)
export tmodStartNormal="${tmodStart}${styleNormal}"
export tmodStartBold="${tmodStart}${styleBold}"
export tmodStartDim="${tmodStart}${styleDim}"
export tmodStartItalic="${tmodStart}${styleItalic}"
export tmodStartUnderline="${tmodStart}${styleUnderline}"
export tmodStartBlinking="${tmodStart}${styleBlinking}"
export tmodStartReverse="${tmodStart}${styleReverse}"
export tmodStartInvisible="${tmodStart}${styleInvisible}"

###############################################################################
## Highlight Interface Words as they appear with the following colors
###############################################################################
## Create a color pool
export tmodBlackF="${tmodStart}${CONFIGURATION_poolColorBlackForeground}"
export tmodRedF="${tmodStart}${CONFIGURATION_poolColorRedForeground}"
export tmodGreenF="${tmodStart}${CONFIGURATION_poolColorGreenForeground}"
export tmodYellowF="${tmodStart}${CONFIGURATION_poolColorYellowForeground}"
export tmodBlueF="${tmodStart}${CONFIGURATION_poolColorBlueForeground}"
export tmodMagentaF="${tmodStart}${CONFIGURATION_poolColorMagentaForeground}"
export tmodCyanF="${tmodStart}${CONFIGURATION_poolColorCyanForeground}"
export tmodWhiteF="${tmodStart}${CONFIGURATION_poolColorWhiteForeground}"
export tmodBlackF="${tmodStart}${CONFIGURATION_poolColorBrightBlackForeground}"
export tmodBrightRedF="${tmodStart}${CONFIGURATION_poolColorBrightRedForeground}"
export tmodBrightGreenF="${tmodStart}${CONFIGURATION_poolColorBrightGreenForeground}"
export tmodBrightYellowF="${tmodStart}${CONFIGURATION_poolColorBrightYellowForeground}"
export tmodBrightBlueF="${tmodStart}${CONFIGURATION_poolColorBrightBlueForeground}"
export tmodBrightMagentaF="${tmodStart}${CONFIGURATION_poolColorBrightMagentaForeground}"
export tmodBrightCyanF="${tmodStart}${CONFIGURATION_poolColorBrightCyanForeground}"
export tmodBrightWhite="${tmodStart}${CONFIGURATION_poolColorBrightWhiteForeground}"
export tmodBlackB="${tmodStart}${CONFIGURATION_poolColorBlackBackground}"
export tmodRedB="${tmodStart}${CONFIGURATION_poolColorRedBackground}"
export tmodGreenB="${tmodStart}${CONFIGURATION_poolColorGreenBackground}"
export tmodYellowB="${tmodStart}${CONFIGURATION_poolColorYellowBackground}"
export tmodBlue="${tmodStart}${CONFIGURATION_poolColorBlueBackground}"
export tmodMagentaB="${tmodStart}${CONFIGURATION_poolColorMagentaBackground}"
export tmodCyanB="${tmodStart}${CONFIGURATION_poolColorCyanBackground}"
export tmodWhiteB="${tmodStart}${CONFIGURATION_poolColorWhiteBackground}"
export tmodBrightBlackB="${tmodStart}${CONFIGURATION_poolColorBrightBlackBackground}"
export tmodBrightRedB="${tmodStart}${CONFIGURATION_poolColorBrightRedBackground}"
export tmodBrightGreenB="${tmodStart}${CONFIGURATION_poolColorBrightGreenBackground}"
export tmodBrightYellowB="${tmodStart}${CONFIGURATION_poolColorBrightYellowBackground}"
export tmodBrightBlueB="${tmodStart}${CONFIGURATION_poolColorBrightBlueBackground}"
export tmodBrightMagentaB="${tmodStart}${CONFIGURATION_poolColorBrightMagentaBackground}"
export tmodBrightCyanB="${tmodStart}${CONFIGURATION_poolColorBrightCyanBackground}"
export tmodBrightWhiteB="${tmodStart}${CONFIGURATION_poolColorBrightWhiteBackground}"

###############################################################################
## Highlight an entire echo with | Warning to turn it red
###############################################################################
## You can define alert colors for:
## error, failure, success, warning, warningtext, unknown here
export tmodError="${tmodStart}${CONFIGURATION_color_error}"
export tmodFailure="${tmodStart}${CONFIGURATION_color_failure}"
export tmodOperator="${tmodStart}${CONFIGURATION_color_operator}"
export tmodSuccess="${tmodStart}${CONFIGURATION_color_success}"
export tmodWarning="${tmodStart}${CONFIGURATION_color_warning}"
export tmodWarningText="${tmodStart}${CONFIGURATION_color_warning_text}"
export tmodUnknown="${tmodStart}${CONFIGURATION_color_unknown}"

## Script Customizations
## tmodDirectory
export tmodDirectory=''
## tmodFile
export tmodFile=''
## tmodDisplay*
export tmodDisplay="${tmodStartBold}${tmodSuccess}"
export tmodDisplayAttribute="${tmodStartBold}${tmodCyanF}"
## tmodLabel*
export tmodLabelHeading=''
export tmodLabelGeneric=''
export tmodLabelCustomSED=''
export tmodLabelCustomNavigation=''

## Named styles
export FailureRed=''
export KillColor=''

## optional pango output styles for dashboards
export pango_output_color_okay="'#0BDA51'"
export pango_output_color_error="'#FFF000'"

## Decorative elements
export tmodCuredColor="${tmodStart}${styleNormal}"
export tmodDashColor="${tmodStart}${styleNormal}"
export tmodLineColor="${tmodStart}${styleNormal}"
export tmodStarColor="${tmodStart}${styleNormal}"