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

Last change on this file since 25794 was 25794, checked in by rvelices, 10 years ago
File size: 1.6 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'       => '#d3d3d3',
22                        'color'                                                 => '#000',
23                        'border'                                                => '1px solid gray',
24        ),
25
26        'controls:focus' => array(
27                        'backgroundColor'       => '#f3f3f3',
28                        //'color'                                               => '#000',
29                        //'boxShadow'         => '0 0 2px white',
30        ),
31
32        'menubar' => array(
33                        'backgroundColor'       => '#3F3F3F',
34                        //'gradient'                                    => array('#3B5998','#2B4170'),
35                        //'color'                                               => '#bbb',
36                        //'link'                                                        => array( 'color' => '#ddd' ),
37                        //'linkHover'                                   => array( 'color' => '#fff' ),
38                ),
39
40        'dropdowns' => array(
41                        // REQUIRED - cannot be transparent
42                        'backgroundColor'       => '#3F3F3F',
43                ),
44
45        'pageTitle' => array(
46                        //'backgroundColor'     => '#3F3F3F',
47                        //'gradient'                                    => array('#3B5998','#2B4170'),
48                        //'color'                                               => '#bbb',
49                        //'link'                                                        => array( 'color' => '#ddd' ),
50                        //'linkHover'                                   => array( 'color' => '#fff' ),
51                ),
52
53        'pictureBar' => array(
54                        //'backgroundColor'     => '#3F3F3F',
55                ),
56
57        'widePictureBar' => array(
58                        //'backgroundColor'     => '#3F3F3F',
59                ),
60
61        'pictureWideInfoTable' => array(
62                        'backgroundColor'       => '#3F3F3F',
63                ),
64
65        'comment' => array(
66                        'backgroundColor'       => '#3F3F3F',
67                ),
68
69        // should be white or around white
70        /*'albumLegend' => array(
71                        'color'         => '#fff',
72                ),*/
73
74);
75?>
Note: See TracBrowser for help on using the repository browser.