You are here

function charts_default_colors in Charts 8

Same name and namespace in other branches
  1. 7.2 charts.module \charts_default_colors()

Default colors used in all libraries.

1 call to charts_default_colors()
charts_default_settings in includes/charts.pages.inc
Provides default options used by charts_settings_form().

File

includes/charts.pages.inc, line 142
Menu callbacks for Charts module.

Code

function charts_default_colors() {
  return array(
    '#2f7ed8',
    '#0d233a',
    '#8bbc21',
    '#910000',
    '#1aadce',
    '#492970',
    '#f28f43',
    '#77a1e5',
    '#c42525',
    '#a6c96a',
  );
}