Remove custom color references in themes compatible with 3.4
[phpmyadmin-themes.git] / xp_basic / layout.inc.php
blob4c3be03de60bcbc65060903ddac84ebf8e711944
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
5 * @version $Id$
6 * @package phpMyAdmin-theme
7 * @subpackage WinXP_basic
8 */
10 /**
13 $cfg['LeftWidth'] = 260; // left frame width
14 /* colors */
15 $cfg['LeftBgColor'] = '#6375D6'; // background color for the left frame
16 $cfg['RightBgColor'] = '#ffffff'; // background color for the right frame
17 $cfg['RightBgImage'] = ''; // path to a background image for the right frame
18 // (leave blank for no background image)
19 $cfg['LeftPointerColor'] = '#CCFFCC'; // color of the pointer in left frame
20 $cfg['Border'] = 0; // border width on tables
21 $cfg['ThBgcolor'] = '#EAE6D0'; // table header row colour
22 $cfg['BgcolorOne'] = '#EAE6D0'; // table data row colour
23 $cfg['BgcolorTwo'] = '#F8F8F1'; // table data row colour, alternate
24 $cfg['BrowsePointerColor'] = ''; // color of the pointer in browse mode
25 $cfg['BrowseMarkerColor'] = 'yellow'; // color of the marker (visually marks row
26 // by clicking on it) in browse mode
27 /**
28 * SQL Parser Settings
30 $cfg['SQP']['fmtColor'] = array( // Syntax colouring data
31 'comment' => '#808000',
32 'comment_mysql' => '',
33 'comment_ansi' => '',
34 'comment_c' => '',
35 'digit' => '',
36 'digit_hex' => 'teal',
37 'digit_integer' => 'teal',
38 'digit_float' => 'aqua',
39 'punct' => 'fuchsia',
40 'alpha' => '',
41 'alpha_columnType' => '#FF9900',
42 'alpha_columnAttrib' => '#0000FF',
43 'alpha_reservedWord' => '#990099',
44 'alpha_functionName' => '#FF0000',
45 'alpha_identifier' => 'black',
46 'alpha_charset' => '#6495ed',
47 'alpha_variable' => '#800000',
48 'quote' => '#008000',
49 'quote_double' => '',
50 'quote_single' => '',
51 'quote_backtick' => ''