Complete the code to define the color for an alarm state in ISA-101.
alarm_color = "[1]" # Color for active alarm
In ISA-101, the color red is used to indicate an active alarm state.
Complete the code to set the color for a normal operating state in ISA-101.
normal_state_color = "[1]" # Color for normal operation
The color green is used in ISA-101 to indicate normal operating conditions.
Fix the error in the code to correctly assign the warning color according to ISA-101.
warning_color = "[1]" # Color for warning state
ISA-101 uses yellow to indicate a warning state, signaling caution.
Fill both blanks to define colors for 'inactive alarm' and 'acknowledged alarm' states in ISA-101.
inactive_alarm_color = "[1]" # Color for inactive alarm acknowledged_alarm_color = "[2]" # Color for acknowledged alarm
ISA-101 uses gray for inactive alarms and blue for acknowledged alarms.
Fill all three blanks to create a dictionary mapping ISA-101 states to their standard colors.
isa101_colors = {
"active_alarm": "[1]",
"warning": "[2]",
"normal": "[3]"
}The standard ISA-101 colors are red for active alarms, yellow for warnings, and green for normal operation.