R&R Development

Customisation

The ui config file can be found under: rr-hud/src/config.json

{
  "colors": {
    "background": "rgba(0, 0, 0, 0.3)", // background color for the rings. (Red, Green, Blue, Alpha)
    "primary": "#ffffff", // Primary color (text)
    "mic": "rgb(103, 14, 199)", // Color for the microphone indicator
    "health": "rgb(40, 181, 78)", // Color for the health indicator
    "armor": "rgb(9, 60, 153)", // Color for the armor indicator
    "hunger": "yellow", // Color for the hunger indicator
    "thirst": "cyan", // Color for the thirst indicator
    "oxygen": "blue", // Color for the oxygen indicator (only displayed underwater)
    "stamina": "yellow", // Color for the stamina indicator
    "stress": "orange", // Color for the stress indicator
    "drunk": "rgb(255, 0, 255)", // Color for the drunkness indicator
    
    "low": "rgb(255, 0, 0)" // Color for when the indicator has reached 10%
  },
  "parameters": {
    "maxSpeed": 250, // Adjust maximum speed displayed on the spedometer
    "maxAltitute": 1000 // Adjust maximum speed displayed on the altimeter
  }
}

After changing any of those, you have to build the script again. Refer to Installation to do so.