The tooltip image can be changed in the top of the Field tooltip tab in the DFFS backend.
To change the tabs you can add this code to your Custom CSS:
/* Base color */
li.tabBase a{
background-color:#008272!important;
color:#ffffff!important;
}
/* Hover color */
li.tabBase a:hover{
background-color:#00B294!important;
color:#000000!important;
}
/* Selected tab color */
li.tabSelected a{
background-color:#004b50!important;
color:#ffffff!important;
}
Alexander