You are here

function yandex_metrics_reports_chart_color_schemes in Yandex.Metrics 8.2

Same name and namespace in other branches
  1. 6.2 yandex_metrics_reports/yandex_metrics_reports.module \yandex_metrics_reports_chart_color_schemes()
  2. 7.2 yandex_metrics_reports/yandex_metrics_reports.module \yandex_metrics_reports_chart_color_schemes()

Implements hook_chart_color_schemes(). Define color schemes for Chart module.

File

yandex_metrics_reports/yandex_metrics_reports.module, line 350
The main code of Yandex.Metrics Reports module.

Code

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