You are here

function yandex_metrics_chart_color_schemes in Yandex.Metrics 7

Same name and namespace in other branches
  1. 6 yandex_metrics.module \yandex_metrics_chart_color_schemes()

Implementation of hook_chart_color_schemes of chart module.

Return value

void

File

./yandex_metrics.module, line 1249
The main code of Yandex.Metrics module.

Code

function yandex_metrics_chart_color_schemes() {
  return array(
    'yandex_metrics' => array(
      'ff3030',
      'ff8800',
      '00b6f7',
      '95d900',
      'ffea00',
      'bb7bf1',
      '0080ff',
      'ff8888',
      '87888e',
      '457f51',
      'b5b6be',
    ),
  );
}