Since galaxy s8 home/back/recent buttons are now soft keys, so i need to change the back color of the buttons within my application only.
You problem is solved in Lollipop and above,
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
Window window = getWindow();
window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
window.setNavigationBarColor(Color.YOUR_COLOR);
}