Change tooltips background color

How can I change my background color ? except dark color
I try to change

webix.protoUI({
  name:"mytooltip",
  $cssName: "mytooltipz",
}, webix.ui.tooltip);

but how to use it in datatable

view: datatable,
template:photo,  tooltip:"<span class='name_column_tip'>....

Hello @finzaiko ,
You can define column tooltips and add custom CSS:

{ view:"datatable", autoConfig:true, data:grid_data 
  tooltip:{template:"Title", css:"myClass"}}
<style>
.myClass {
  font-style: italic;
  background: #fff;
  border: .4em solid;
  border-color: rgb(200,200,200);
}
</style>

Here’s an example of how you could do this:
https://snippet.webix.com/sa5h1a1e
Please see details in docs:
https://docs.webix.com/desktop__tooltip.html

Hi @annazankevich
Thanks