1The values in these RROs are for modifying the car-resource-common values and should be applied to all 2applications using car-resource-common 3 4```bash 5# Enable systemui and android RRO for the user 0 6adb shell cmd overlay enable --user 0 com.android.systemui.googlecarui.theme.pink.rro \ 7&& adb shell cmd overlay enable --user 0 android.googlecarui.theme.pink.rro \ 8 9# Enable launcher and settings RRO for the user current 10adb shell cmd overlay enable --user 10 com.android.car.carlauncher.googlecarui.theme.orange.rro \ 11&& adb shell cmd overlay enable --user 10 com.android.car.settings.googlecarui.theme.orange.rro 12 13# Kill systemUi to refresh the systemUi views. 14adb shell am crash com.android.systemui 15```