Translation update done using Pootle.
[phpmyadmin-themes.git] / themes / darkblue_orange / layout.inc.php
blob617ee9606f23b351974173747333b9e6adc244ba
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 Darkblue_orange
9 */
11 // protect against path disclosure
12 if (empty($_SESSION['PMA_Theme'])) {
13 exit;
16 /**
17 * navi frame
19 // navi frame width
20 $GLOBALS['cfg']['NaviWidth'] = 180;
22 // foreground (text) color for the navi frame
23 $GLOBALS['cfg']['NaviColor'] = '#ffffff';
25 // background for the navi frame
26 $GLOBALS['cfg']['NaviBackground'] = '#666699';
28 // foreground (text) color of the pointer in navi frame
29 $GLOBALS['cfg']['NaviPointerColor'] = '#000000';
31 // background of the pointer in navi frame
32 $GLOBALS['cfg']['NaviPointerBackground'] = '#9999cc';
34 // text color of the selected database name (when showing the table list)
35 $GLOBALS['cfg']['NaviDatabaseNameColor'] = '#ff9900';
37 /**
38 * main frame
40 // foreground (text) color for the main frame
41 $GLOBALS['cfg']['MainColor'] = '#000000';
43 // background for the main frame
44 $GLOBALS['cfg']['MainBackground'] = '#ffffff';
45 //$GLOBALS['cfg']['MainBackground'] = '#ffffff url(' . $_SESSION['PMA_Theme']->getImgPath() . 'vertical_line.png) repeat-y';
47 // foreground (text) color of the pointer in browse mode
48 $GLOBALS['cfg']['BrowsePointerColor'] = '#000000';
50 // background of the pointer in browse mode
51 $GLOBALS['cfg']['BrowsePointerBackground'] = '#ccffcc';
53 // foreground (text) color of the marker (visually marks row by clicking on it) in browse mode
54 $GLOBALS['cfg']['BrowseMarkerColor'] = '#000000';
56 // background of the marker (visually marks row by clicking on it) in browse mode
57 $GLOBALS['cfg']['BrowseMarkerBackground'] = '#ffcc99';
59 /**
60 * fonts
62 /**
63 * the font family as a valid css font family value,
64 * if not set the browser default will be used
65 * (depending on browser, DTD and system settings)
67 $GLOBALS['cfg']['FontFamily'] = 'Verdana, Arial, Helvetica, sans-serif';
68 /**
69 * fixed width font family, used in textarea
71 $GLOBALS['cfg']['FontFamilyFixed'] = 'monospace';
73 /**
74 * tables
76 // border
77 $GLOBALS['cfg']['Border'] = 0;
78 // table header and footer color
79 $GLOBALS['cfg']['ThBackground'] = '#ff9900 url("' . $_SESSION['PMA_Theme']->getImgPath() . 'tbl_th.png") repeat-x top';
80 // table header and footer background
81 $GLOBALS['cfg']['ThColor'] = '#000000';
82 // table data row background
83 $GLOBALS['cfg']['BgOne'] = '#E5E5E5';
84 // table data row background, alternate
85 $GLOBALS['cfg']['BgTwo'] = '#D5D5D5';
87 /**
88 * query window
90 // Width of Query window
91 $GLOBALS['cfg']['QueryWindowWidth'] = 600;
92 // Height of Query window
93 $GLOBALS['cfg']['QueryWindowHeight'] = 400;
95 /**
96 * SQL Parser Settings
97 * Syntax colouring data
99 $GLOBALS['cfg']['SQP']['fmtColor'] = array(
100 'comment' => '#808000',
101 'comment_mysql' => '',
102 'comment_ansi' => '',
103 'comment_c' => '',
104 'digit' => '',
105 'digit_hex' => 'teal',
106 'digit_integer' => 'teal',
107 'digit_float' => 'aqua',
108 'punct' => 'fuchsia',
109 'alpha' => '',
110 'alpha_columnType' => '#FF9900',
111 'alpha_columnAttrib' => '#0000FF',
112 'alpha_reservedWord' => '#990099',
113 'alpha_functionName' => '#FF0000',
114 'alpha_identifier' => 'black',
115 'alpha_charset' => '#6495ed',
116 'alpha_variable' => '#800000',
117 'quote' => '#008000',
118 'quote_double' => '',
119 'quote_single' => '',
120 'quote_backtick' => ''