source: extensions/modus/skins/debug.inc.php @ 25794

Last change on this file since 25794 was 25794, checked in by rvelices, 10 years ago
File size: 1.3 KB
Line 
1<?php
2/*gradients facebook '#3B5998','#2B4170' ; Google '#E64522','#C33219' ; Pinterest '#CB2027','#A0171C'*/
3$skin = array(
4        'BODY' => array(
5                        // REQUIRED
6                        'backgroundColor'       => '#fff',
7                        // REQUIRED
8                        'color'                                                 => '#000',
9                ),
10               
11        'A' => array(
12                        // REQUIRED
13                        'color'                                                 => '#00f',
14                ),
15
16        'A:hover' => array(
17                        'color'                                                 => '#000',
18                ),
19
20        'menubar' => array(
21                        'backgroundColor'       => '#C33219', 
22                        'gradient'                                      => array('#E64522','#C33219'),
23                        'color'                                                 => '#bbb',
24                        'link'                                                  => array( 'color' => '#ddd' ),
25                        'linkHover'                                     => array( 'color' => '#fff' ),
26                ),
27
28        'dropdowns' => array(
29                        // REQUIRED - cannot be transparent
30                        'backgroundColor'       => '#0f0',
31                ),
32
33        'pageTitle' => array(
34                        'backgroundColor'       => '#2B4170', 
35                        'gradient'                                      => array('#3B5998','#2B4170'),
36                        'color'                                                 => '#bbb',
37                        'link'                                                  => array( 'color' => '#ddd' ),
38                        'linkHover'                                     => array( 'color' => '#fff' ),
39                ),
40
41        'pictureBar' => array(
42                        'backgroundColor'       => '#ccc',
43                ),
44
45        'widePictureBar' => array(
46                        'backgroundColor'       => '#dca',
47                ),
48
49        'pictureWideInfoTable' => array(
50                        'backgroundColor'       => '#ccc',
51                ),
52
53        'comment' => array(
54                        'backgroundColor'       => '#ccc',
55                ),
56
57        // should be white or around white
58        'albumLegend' => array(
59                        'color'         => '#fff',
60                ),
61
62);
63?>
Note: See TracBrowser for help on using the repository browser.