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
7 * @package phpMyAdmin-theme
15 $GLOBALS['cfg']['NaviWidth'] = 200;
17 // foreground (text) color for the navi frame
18 $GLOBALS['cfg']['NaviColor'] = '#000000';
20 // background for the navi frame
21 $GLOBALS['cfg']['NaviBackground'] = '#D0DCE0';
23 // foreground (text) color of the pointer in navi frame
24 $GLOBALS['cfg']['NaviPointerColor'] = '#000000';
25 // background of the pointer in navi frame
26 $GLOBALS['cfg']['NaviPointerBackground'] = '#9999CC';
27 // text color of the selected database name (when showing the table list)
28 $GLOBALS['cfg']['NaviDatabaseNameColor'] = '#0000FF';
33 // foreground (text) color for the main frame
34 $GLOBALS['cfg']['MainColor'] = '#000000';
36 // background for the main frame
37 $GLOBALS['cfg']['MainBackground'] = '#F5F5F5';
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'] = '#000000';
43 // background of the pointer in browse mode
44 $GLOBALS['cfg']['BrowsePointerBackground'] = '#CCFFCC';
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'] = '#FFCC99';
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'] = 'sans-serif';
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'] = '#D3DCE3';
73 // table header and footer background
74 $GLOBALS['cfg']['ThColor'] = '#000000';
75 // table data row background
76 $GLOBALS['cfg']['BgOne'] = '#E5E5E5';
77 // table data row background, alternate
78 $GLOBALS['cfg']['BgTwo'] = '#D5D5D5';
83 // Width of Query window
84 $GLOBALS['cfg']['QueryWindowWidth'] = 600;
85 // Height of Query window
86 $GLOBALS['cfg']['QueryWindowHeight'] = 400;
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' => ''
120 $GLOBALS['cfg']['chartColor'] = array(
121 'gradientIntensity' => 50,
122 // The style of the chart title.
123 'titleColor' => '#000000',
124 'titleBgColor' => '#E5E5E5',
125 // Chart border (0 for no border)
126 'border' => '#CCCCCC',
127 // Chart background color.
128 'bgColor' => '#FBFBFB',
129 // when graph area gradient is used, this is the color of the graph
131 'graphAreaColor' => '#D5D9DD',
132 // the background color of the graph area
133 'graphAreaGradientColor' => $GLOBALS['cfg']['BgTwo'],
134 // the color of the grid lines in the graph area
135 'gridColor' => '#E6E6E6',
136 // the color of the scale and the labels
137 'scaleColor' => '#D5D9DD',