source: extensions/modus/skins/dark_radish.inc.php @ 26010

Last change on this file since 26010 was 25794, checked in by rvelices, 10 years ago
File size: 1.9 KB
Line 
1<?php
2/*gradients facebook '#3B5998','#2B4170' ; Google '#E64522','#C33219' ; Pinterest '#CB2027','#A0171C'; Turquoise: '#009CDA','#0073B2'*/
3$skin = array(
4        'BODY' => array(
5                        // REQUIRED
6                        'backgroundColor'       => '#141414',
7                        // REQUIRED
8                        'color'                                                 => '#bbb',
9                ),
10
11        'A' => array(
12                        // REQUIRED
13                        'color'                                                 => '#ddd',
14                ),
15
16        'A:hover' => array(
17                        'color'                                                 => '#fff',
18                ),
19
20        'controls' => array(
21                        'backgroundColor'       => 'transparent',
22                        'color'                                                 => 'inherit',
23                        'border'                                                => '1px solid gray',
24        ),
25
26        'controls:focus' => array(
27                        'backgroundColor'       => '#3F3F3F',
28                        'color'                                                 => '#fff',
29                        'boxShadow'           => '0 0 2px white',
30        ),
31
32        'buttons' => array(
33                        'backgroundColor'       => '#A0171C',
34                        'gradient'                                      => array('#CB2027','#A0171C'),
35                        'color'                                                 => '#ddd',
36                        'border'                                                => '1px solid gray',
37        ),
38
39        'buttonsHover' => array(
40                        'color'                                                 => '#fff',
41                        'boxShadow'           => '0 0 2px white',
42        ),
43
44        'menubar' => array(
45                        'backgroundColor'       => '#A0171C',
46                        'gradient'                                      => array('#CB2027','#A0171C'),
47                        'color'                                                 => '#ddd',
48                        'link'                                                  => array( 'color' => '#fff' ),
49                        //'linkHover'                                   => array( 'color' => '#fff' ),
50                ),
51
52        'dropdowns' => array(
53                        // REQUIRED - cannot be transparent
54                        'backgroundColor'       => '#3F3F3F',
55                ),
56
57        'pageTitle' => array(
58                        'backgroundColor'       => '#CB2027',
59                        'gradient'                                      => array('#A0171C','#CB2027'),
60                        'color'                                                 => '#ddd',
61                        'link'                                                  => array( 'color' => '#fff' ),
62                        //'linkHover'                                   => array( 'color' => '#fff' ),
63                        'textShadowColor'   => '#000',
64                ),
65
66        /*'pictureBar' => array(
67                        'backgroundColor'       => '#3F3F3F',
68                ),*/
69
70        'widePictureBar' => array(
71                        'backgroundColor'       => '#3F3F3F',
72                ),
73
74        'pictureWideInfoTable' => array(
75                        'backgroundColor'       => '#3F3F3F',
76                ),
77
78        'comment' => array(
79                        'backgroundColor'       => '#3F3F3F',
80                ),
81
82        // should be white or around white
83        /*'albumLegend' => array(
84                        'color'         => '#fff',
85                ),*/
86
87);
88?>
Note: See TracBrowser for help on using the repository browser.