You are here

color.inc in Zircon Profile 8

File

core/modules/color/tests/modules/color_test/themes/color_test_theme/color/color.inc
View source
<?php

/**
 * @file
 * Lists available colors and color schemes for the Color test theme.
 */
$info = array(
  'fields' => array(
    'bg' => t('Main background'),
    'text' => t('Text color'),
  ),
  'schemes' => array(
    'default' => array(
      'title' => t('Default'),
      'colors' => array(
        'bg' => '#ff0000',
        'text' => '#0000ff',
      ),
    ),
    'custom' => array(
      'title' => t('Custom'),
      'colors' => array(
        'bg' => '#ff0000',
        'text' => '#3b3b3b',
      ),
    ),
  ),
  'css' => array(
    'css/colors.css',
  ),
  'preview_html' => 'color/preview.html',
);