| 1 |
<?php
|
| 2 |
// $Id: flowplayer3_color_schemes.inc,v 1.4 2009/03/16 23:47:03 stuartgreenfield Exp $
|
| 3 |
|
| 4 |
$info = array(
|
| 5 |
|
| 6 |
/**
|
| 7 |
* Use color schemes in sequence
|
| 8 |
* backgroundColor #000000
|
| 9 |
* Canvas color.
|
| 10 |
* controlbarbackgroundColor #000000
|
| 11 |
* Background color for the control bar
|
| 12 |
* timeColor #01daff
|
| 13 |
* Font color in the time field. This is the running time.
|
| 14 |
* durationColor #ffffff
|
| 15 |
* Value for the font color in the time field that specifies the total duration of the clip or "total time".
|
| 16 |
* progressColor #015b7a
|
| 17 |
* Color of the progress bar. This is the bar in the timeline from zero time to the point where playback is at a given time.
|
| 18 |
* bufferColor #6c9cbc
|
| 19 |
* Color of the buffer. The buffer is the bar that indicates how much video data has been read into the player's memory.
|
| 20 |
* sliderColor #000000
|
| 21 |
* Background color for the timeline before the buffer bar fills it. The same background color is also used in the volume slider.
|
| 22 |
* buttonColor #889aa4
|
| 23 |
* Color of the player buttons: stop, play, pause and fullscreen.
|
| 24 |
* buttonOverColor #92b2bd
|
| 25 |
* Button color when the mouse is positioned over them
|
| 26 |
*/
|
| 27 |
|
| 28 |
// Pre-defined color schemes.
|
| 29 |
'schemes' => array(
|
| 30 |
|
| 31 |
'#000000,#000000,#01daff,#ffffff,#015b7a,#6c9cbc,#000000,#889aa4,#92b2bd' => t('FlowPlayer3 (Default)'),
|
| 32 |
'#0072b9,#0072b9,#5ab5ee,#5ab5ee,#5ab5ee,#027ac6,#494949,#2385c2,#5ab5ee' => t('Blue Lagoon'),
|
| 33 |
'#464849,#464849,#5d6779,#5d6779,#5d6779,#2f416f,#494949,#2a2b2d,#5d6779' => t('Ash'),
|
| 34 |
'#55c0e2,#55c0e2,#007e94,#007e94,#007e94,#000000,#696969,#085360,#007e94' => t('Aquamarine'),
|
| 35 |
'#d5b048,#d5b048,#d5b048,#d5b048,#971702,#6c420e,#494949,#331900,#971702' => t('Belgian Chocolate'),
|
| 36 |
'#3f3f3f,#3f3f3f,#6598cb,#6598cb,#6598cb,#336699,#000000,#336699,#6598cb' => t('Blue Marine'),
|
| 37 |
'#d0cb9a,#d0cb9a,#e6fb2d,#e6fb2d,#e6fb2d,#917803,#494949,#efde01,#e6fb2d' => t('Citrus Blast'),
|
| 38 |
'#0f005c,#0f005c,#1a1575,#1a1575,#1a1575,#434f8c,#000000,#4d91ff,#1a1575' => t('Cold Day'),
|
| 39 |
'#c9c497,#c9c497,#7be000,#7be000,#7be000,#0c7a00,#494949,#03961e,#7be000' => t('Greenbeam'),
|
| 40 |
'#ffe23d,#ffe23d,#a30f42,#a30f42,#a30f42,#a9290a,#494949,#fc6d1d,#a30f42' => t('Mediterrano'),
|
| 41 |
'#788597,#788597,#d4d4d4,#d4d4d4,#d4d4d4,#3f728d,#707070,#a9adbc,#d4d4d4' => t('Mercury'),
|
| 42 |
'#5b5fa9,#5b5fa9,#9fa8d5,#9fa8d5,#9fa8d5,#5b5faa,#494949,#0a2352,#9fa8d5' => t('Nocturnal'),
|
| 43 |
'#7db323,#7db323,#7db323,#7db323,#7db323,#6a9915,#191a19,#b5d52a,#7db323' => t('Olivia'),
|
| 44 |
'#12020b,#12020b,#f41063,#f41063,#f41063,#1b1a13,#898080,#f391c6,#f41063' => t('Pink Plastic'),
|
| 45 |
'#b7a0ba,#b7a0ba,#f21107,#f21107,#f21107,#c70000,#515d52,#a1443a,#f21107' => t('Shiny Tomato'),
|
| 46 |
'#18583d,#18583d,#52bf90,#52bf90,#52bf90,#1b5f42,#2d2d2d,#34775a,#52bf90' => t('Teal Top'),
|
| 47 |
),
|
| 48 |
|
| 49 |
);
|