Change text color in tooltips

In a bar chart, is there a way to explicitly set text color in a tooltip that appears on mouse hover? It’s not very clear in the documentation. Many thanks.

This is not possible at the moment.

You are not the one to have ask for this feature. Please to https://github.com/plotly/plotly.js/issues/102 for the latest development information.

Currently, it is not configurable.

Here how I worked it out:
.LESS

.hoverlayer{
    path{
        fill: #fff !important;
        stroke: #ccc !important;
    }
    text{
        fill: #000 !important;
        font-family: 'proxima_novalight' !important;
    }
}