Skip to main content

How can I highlight a battle in the Timing Tower and Battle Component?

Add the following style rules to your Settings / Overlay / Style Overrides:

.driver-wrapper.close>.driver {
    background: orange;
}

.driver-wrapper.very-close>.driver {
    background: darkorange;
}

In this example drivers that are within 1 second of each other will be highlighted Orange and drivers that are within 0.5 seconds of each other will be highlighted Dark Orange.

If you only want one of those situations to apply, then only copy the rule you want to use. Any web color, Hex color or RGB color can be used as the background value.