Projet

Général

Profil

Paste
Télécharger (2,52 ko) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / themes / responsive / color / color.inc @ cc7b6b59

1
<?php
2

    
3
$info = array(
4
  'fields' => array(
5
    'main_bkgrd'          => t('Main background'),
6
    'head_bkgrd'          => t('Header Background'),
7
    'sidebar_title'       => t('Sidebar Title Background'),
8
    'bottom_bkgrd'        => t('Bottom Background'),
9
    'copy_bkgrd'          => t('Copyright Background'),
10
    'link'                => t('Links'),
11
    'link_hover'          => t('Links Hover'),
12
    'button_bk'           => t('Button Background'),
13
    'button_bk_hover'     => t('Button Background Hover'),
14
    'submenu_bk'          => t('Sub Menu Background'),
15
    'submenu_bk_hover'    => t('Sub Menu Background Hover'),
16
  ),
17
  'schemes' => array(
18
    'default' => array(
19
      'title' => t('Default'),
20
      'colors' => array(
21
        'main_bkgrd'      => '#dedcd9',
22
        'head_bkgrd'      => '#214467',
23
        'sidebar_title'   => '#214468',
24
        'bottom_bkgrd'    => '#4e4554',
25
        'copy_bkgrd'      => '#3e3742',
26
        'link'            => '#1c6ea0',
27
        'link_hover'      => '#42a9be',
28
        'button_bk'       => '#5aa2ef',
29
        'button_bk_hover' => '#454444',
30
        'submenu_bk'      => '#152d43',
31
        'submenu_bk_hover'=> '#01152a',
32
      ),
33
    ),
34
    'purple' => array(
35
      'title' => t('Purple'),
36
      'colors' => array(
37
        'main_bkgrd'      => '#d6bbca',
38
        'head_bkgrd'      => '#6c3551',
39
        'sidebar_title'   => '#6c3552',
40
        'bottom_bkgrd'    => '#3f1c4c',
41
        'copy_bkgrd'      => '#1e041f',
42
        'link'            => '#1c6ea0',
43
        'link_hover'      => '#42a9be',
44
        'button_bk'       => '#5aa2ef',
45
        'button_bk_hover' => '#454444',
46
        'submenu_bk'      => '#381042',
47
        'submenu_bk_hover'=> '#1e041c',
48
      ),
49
    ),
50
    'green' => array(
51
      'title' => t('Green'),
52
      'colors' => array(
53
        'main_bkgrd'      => '#b8cdbe',
54
        'head_bkgrd'      => '#3f6a4d',
55
        'sidebar_title'   => '#3f6a4e',
56
        'bottom_bkgrd'    => '#243d18',
57
        'copy_bkgrd'      => '#0b1b07',
58
        'link'            => '#1c6ea0',
59
        'link_hover'      => '#42a9be',
60
        'button_bk'       => '#5aa2ef',
61
        'button_bk_hover' => '#454444',
62
        'submenu_bk'      => '#223B16',
63
        'submenu_bk_hover'=> '#0b1b08',
64
      ),
65
    ),
66
  ),
67
  'css' => array(
68
    'color/colors.css',
69
  ),
70
  'copy' => array(
71
    'logo.png',
72
  ),
73
  'gradients' => array(),
74
  'fill' => array(),
75
  'slices' => array(),
76
  'blend_target' => '#ffffff',
77
  'preview_image' => 'color/color-preview.png',
78
  'preview_css' => 'color/preview.css',
79
  'base_image' => 'color/base.png',
80
);