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' => '#2B4170', |
---|
28 | 'color' => '#fff', |
---|
29 | 'boxShadow' => '0 0 2px white', |
---|
30 | ), |
---|
31 | |
---|
32 | 'buttons' => array( |
---|
33 | 'backgroundColor' => '#2B4170', |
---|
34 | 'gradient' => array('#3B5998','#2B4170'), |
---|
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' => '#2B4170', |
---|
46 | 'gradient' => array('#3B5998','#2B4170'), |
---|
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' => '#2B4170', |
---|
59 | 'gradient' => array('#2B4170','#3B5998'), |
---|
60 | 'color' => '#ddd', |
---|
61 | 'link' => array( 'color' => '#fff' ), |
---|
62 | //'linkHover' => array( 'color' => '#fff' ), |
---|
63 | 'textShadowColor' => 'rgba(0,0,0,0.8)', |
---|
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 | ?> |
---|