Kendo UI - Change Tooltip color?

Lor*_*ssi 1 css kendo-ui

i need to change the default Kendo UI Tooltip color. I've insert this code in my .css file:

.k-tooltip {
background: black !important;
border-color: black !important;    
}
Run Code Online (Sandbox Code Playgroud)

But it doesn't change tip color that remains green.

在此处输入图片说明

Is possible to change that with css?

uyg*_*ran 5

将此添加到您的 css 文件中:

.k-callout-s {
     border-top-color: black;
}
Run Code Online (Sandbox Code Playgroud)