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' => '#eee', |
---|
7 | // REQUIRED |
---|
8 | 'color' => '#444', |
---|
9 | ), |
---|
10 | |
---|
11 | 'A' => array( |
---|
12 | // REQUIRED |
---|
13 | 'color' => '#222', |
---|
14 | ), |
---|
15 | |
---|
16 | 'A:hover' => array( |
---|
17 | 'color' => '#000', |
---|
18 | ), |
---|
19 | |
---|
20 | 'menubar' => array( |
---|
21 | 'backgroundColor' => '#ccc', |
---|
22 | //'gradient' => array('#3B5998','#2B4170'), |
---|
23 | 'color' => '#444', |
---|
24 | 'link' => array( 'color' => '#222' ), |
---|
25 | 'linkHover' => array( 'color' => '#000' ), |
---|
26 | ), |
---|
27 | |
---|
28 | 'dropdowns' => array( |
---|
29 | // REQUIRED - cannot be transparent |
---|
30 | 'backgroundColor' => '#ccc', |
---|
31 | ), |
---|
32 | |
---|
33 | 'pageTitle' => array( |
---|
34 | 'backgroundColor' => '#ccc', |
---|
35 | //'gradient' => array('#A0171C','#CB2027'), |
---|
36 | 'color' => '#444', |
---|
37 | 'link' => array( 'color' => '#222' ), |
---|
38 | 'linkHover' => array( 'color' => '#000' ), |
---|
39 | ), |
---|
40 | |
---|
41 | 'pictureBar' => array( |
---|
42 | 'backgroundColor' => '#ccc', |
---|
43 | ), |
---|
44 | |
---|
45 | /*'widePictureBar' => array( |
---|
46 | 'backgroundColor' => '#ccc', |
---|
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 | ?> |
---|