b_save icon for 3.4 compatible themes
[phpmyadmin-themes.git] / toba / layout.inc.php
blob78f53ccd8e83b652b334bc9ef064868ea902875f
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * configures general layout
5 * for detailed layout configuration please refer to the css files
7 * @package phpMyAdmin-theme
8 * @subpackage Original
9 */
12 /**
13 * Basic color
14 * Define color here
15 */
17 $color['one'] = '#D0E7F4';
18 $color['two'] = '#4284B5';
19 $color['three'] = '#F8FAFC';
20 $color['four'] = '#0000FF';
21 $color['five'] = '#000000';
22 $color['six'] = '#FFFFFF';
23 $color['seven'] = '#999999';
24 $color['eight'] = '#386bcd';
25 $color['nine'] = '#FEFEFE';
26 $color['ten'] = '#333333';
27 $color['eleven'] = '#F5FAFC';
28 $color['twelve'] = '#7fcfe9';
30 /**
31 * navi frame
33 // navi frame width
34 $GLOBALS['cfg']['NaviWidth'] = 225;
36 // foreground (text) color for the navi frame
37 $GLOBALS['cfg']['NaviColor'] = $color['five'];
39 // background for the navi frame
40 $GLOBALS['cfg']['NaviBackground'] = $color['one'];
42 // foreground (text) color of the pointer in navi frame
43 $GLOBALS['cfg']['NaviPointerColor'] = $color['nine'];
44 // background of the pointer in navi frame
45 $GLOBALS['cfg']['NaviPointerBackground'] = $color['two'];
46 // text color of the selected database name (when showing the table list)
47 $GLOBALS['cfg']['NaviDatabaseNameColor'] = $color['four'];
49 /**
50 * main frame
52 // foreground (text) color for the main frame
53 $GLOBALS['cfg']['MainColor'] = $color['five'];
55 // background for the main frame
56 $GLOBALS['cfg']['MainBackground'] = $color['three'];
58 // foreground (text) color of the pointer in browse mode
59 $GLOBALS['cfg']['BrowsePointerColor'] = $color['five'];
61 // background of the pointer in browse mode
62 $GLOBALS['cfg']['BrowsePointerBackground'] = '#CCFFCC';
64 // foreground (text) color of the marker (visually marks row by clicking on it) in browse mode
65 $GLOBALS['cfg']['BrowseMarkerColor'] = $color['five'];
67 // background of the marker (visually marks row by clicking on it) in browse mode
68 $GLOBALS['cfg']['BrowseMarkerBackground'] = '#FFCC99';
70 /**
71 * fonts
73 /**
74 * the font family as a valid css font family value,
75 * if not set the browser default will be used
76 * (depending on browser, DTD and system settings)
78 $GLOBALS['cfg']['FontFamily'] = 'Arial,sans-serif';
79 /**
80 * fixed width font family, used in textarea
82 $GLOBALS['cfg']['FontFamilyFixed'] = 'monospace';
84 /**
85 * tables
87 // border
88 $GLOBALS['cfg']['Border'] = 0;
89 // table header and footer color
90 $GLOBALS['cfg']['ThBackground'] = $color['two'];
91 // table content color
92 $GLOBALS['cfg']['TblContentBackground'] = $color['six'];
93 // table header and footer background
94 $GLOBALS['cfg']['ThColor'] = $color['nine'];
95 // table data row background
96 $GLOBALS['cfg']['BgOne'] = $color['one'];
97 // table data row background, alternate
98 $GLOBALS['cfg']['BgTwo'] = $color['eleven'];
102 * misc
104 // div header
105 $GLOBALS['cfg']['HeaderBackground'] = $color['two'];
106 $GLOBALS['cfg']['HeaderColor'] = $color['nine'];
108 // link color
109 $GLOBALS['cfg']['linkColor'] = '#21759B';
111 // label color
112 $GLOBALS['cfg']['LabelColor'] = $color['ten'];
114 // tableheader link color
115 $GLOBALS['cfg']['TopMenuColor'] = $color['eleven'];
116 $GLOBALS['cfg']['TableHeaderlinkColor'] = $color['one'];
118 $GLOBALS['cfg']['TableLinkColor'] = $color['eight'];
120 $GLOBALS['cfg']['TopMenuBgColor'] = $color['one'];
122 // LightTabs
123 //$GLOBALS['cfg']['LightTabs'] = '#333';
126 * query window
128 // Width of Query window
129 $GLOBALS['cfg']['QueryWindowWidth'] = 600;
130 // Height of Query window
131 $GLOBALS['cfg']['QueryWindowHeight'] = 400;
134 * SQL Parser Settings
135 * Syntax colouring data
137 $GLOBALS['cfg']['SQP']['fmtColor'] = array(
138 'comment' => '#808000',
139 'comment_mysql' => '',
140 'comment_ansi' => '',
141 'comment_c' => '',
142 'digit' => '',
143 'digit_hex' => 'teal',
144 'digit_integer' => 'teal',
145 'digit_float' => 'aqua',
146 'punct' => 'fuchsia',
147 'alpha' => '',
148 'alpha_columnType' => '#FF9900',
149 'alpha_columnAttrib' => '#0000FF',
150 'alpha_reservedWord' => '#990099',
151 'alpha_functionName' => '#FF0000',
152 'alpha_identifier' => 'black',
153 'alpha_charset' => '#6495ed',
154 'alpha_variable' => '#800000',
155 'quote' => '#008000',
156 'quote_double' => '',
157 'quote_single' => '',
158 'quote_backtick' => ''
162 * Chart colors
165 $GLOBALS['cfg']['chartColor'] = array(
166 'gradientIntensity' => 0,
167 // The style of the chart title.
168 'titleColor' => '#000000',
169 'titleBgColor' => $GLOBALS['cfg']['ThBackground'],
170 // Chart border (0 for no border)
171 'border' => '#CCCCCC',
172 // Chart background color.
173 'bgColor' => $GLOBALS['cfg']['BgTwo'],
174 // when graph area gradient is used, this is the color of the graph
175 // area border
176 'graphAreaColor' => '#D5D9DD',
177 // the background color of the inner graph area
178 'graphAreaGradientColor' => $GLOBALS['cfg']['BgOne'],
179 // the color of the grid lines in the graph area
180 'gridColor' => '#E6E6E6',
181 // the color of the scale and the labels
182 'scaleColor' => '#D5D9DD',