New Entity AI

Draft 1.0:
Index


dugout-> highlight_keyword.dugout



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


           
#!/bin/sh
###############################################################################
## COPYRIGHT (C) 2022-2024 NEW ENTITY OPERATIONS INC. ALL RIGHTS RESERVED
## CREATED: 2022/02/13
## INSTANCE: ALL_static_zone_colors.dugout
## MODIFIED: 2024/01/14
## 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
## HISTORY: VERSION 1.4
## -> 2022/02/13 (VERSION 1.0) Development
## -> 2023/11/18 (VERSION 1.1)
## -> 2023/12/17 (VERSION 1.2)
## -> 2023/12/20 (VERSION 1.3)
## -> 2024/01/14 (VERSION 1.4) Production
###############################################################################
## Terminal output modifiers
###############################################################################
## Default colors
export DEFAULT_COLOR='\033[0m'
export DEFAULT_COLOR_LINE='\033[0;31m'
export DEFAULT_COLOR_LINE_ROOT='\033[0;34m'

## Stard/End
export tmodStart='\033'
export tmodEnd='\033'
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='\033[0;31m'
## tmodFile
export tmodFile='\033[1;60m'
## tmodDisplay*
export tmodDisplay="${tmodStartBold}${tmodSuccess}"
export tmodDisplayAttribute="${tmodStartBold}${tmodCyanF}"
## tmodLabel*
export tmodLabelHeading='\033[37m\033[41m\033[1m'
export tmodLabelGeneric='\033[34m\033[4m\033[47m'
export tmodLabelCustomSED='\033[35m'
export tmodLabelCustomNavigation='\033[1m'

## Named styles
export FailureRed='\033[0;31m'
export KillColor='\033[0m'

## 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}"