2 /* vim: set expandtab sw=4 ts=4 sts=4: */
4 * configures general layout
5 * for detailed layout configuration please refer to the css files
8 * @package phpMyAdmin-theme
9 * @subpackage Dark_Lime
16 $GLOBALS['cfg']['NaviWidth'] = 200;
18 // foreground (text) color for the navi frame
19 $GLOBALS['cfg']['NaviColor'] = '#99cc00';
21 // background for the navi frame
22 $GLOBALS['cfg']['NaviBackground'] = '#000000';
24 // foreground (text) color of the pointer in navi frame
25 $GLOBALS['cfg']['NaviPointerColor'] = '#ffffff';
26 // background of the pointer in navi frame
27 $GLOBALS['cfg']['NaviPointerBackground'] = '#99CC00';
32 // foreground (text) color for the main frame
33 $GLOBALS['cfg']['MainColor'] = '#99cc00';
35 // background for the main frame
36 $GLOBALS['cfg']['MainBackground'] = '#000000';
37 // for a solid vertical line, uncomment this:
38 //$GLOBALS['cfg']['MainBackground'] = '#F5F5F5 url(../' . $_SESSION['PMA_Theme']->getImgPath() . 'vertical_line.png) repeat-y';
40 // foreground (text) color of the pointer in browse mode
41 $GLOBALS['cfg']['BrowsePointerColor'] = '#ffffff';
43 // background of the pointer in browse mode
44 $GLOBALS['cfg']['BrowsePointerBackground'] = '#99cc00';
46 // foreground (text) color of the marker (visually marks row by clicking on it) in browse mode
47 $GLOBALS['cfg']['BrowseMarkerColor'] = '#000000';
49 // background of the marker (visually marks row by clicking on it) in browse mode
50 $GLOBALS['cfg']['BrowseMarkerBackground'] = '#FFCC00';
56 * the font family as a valid css font family value,
57 * if not set the browser default will be used
58 * (depending on browser, DTD and system settings)
60 $GLOBALS['cfg']['FontFamily'] = '';
62 * fixed width font family, used in textarea
64 $GLOBALS['cfg']['FontFamilyFixed'] = 'monospace';
70 $GLOBALS['cfg']['Border'] = 0;
71 // table header and footer color
72 $GLOBALS['cfg']['ThBackground'] = '#99cc00';
73 // table header and footer background
74 $GLOBALS['cfg']['ThColor'] = '#ffffff';
75 // table data row background
76 $GLOBALS['cfg']['BgOne'] = '#595959';
77 // table data row background, alternate
78 $GLOBALS['cfg']['BgTwo'] = '#797979';
83 // Width of Query window
84 $GLOBALS['cfg']['QueryWindowWidth'] = 640;
85 // Height of Query window
86 $GLOBALS['cfg']['QueryWindowHeight'] = 480;
90 * Syntax colouring data
92 $GLOBALS['cfg']['SQP']['fmtColor'] = array(
93 'comment' => '#808000',
94 'comment_mysql' => '',
98 'digit_hex' => 'teal',
99 'digit_integer' => 'teal',
100 'digit_float' => 'aqua',
101 'punct' => 'fuchsia',
103 'alpha_columnType' => '#FF9900',
104 'alpha_columnAttrib' => '#0000FF',
105 'alpha_reservedWord' => '#990099',
106 'alpha_functionName' => '#FF0000',
107 'alpha_identifier' => 'black',
108 'alpha_charset' => '#6495ed',
109 'alpha_variable' => '#800000',
110 'quote' => '#008000',
111 'quote_double' => '',
112 'quote_single' => '',
113 'quote_backtick' => ''