Not used image (if logo_left.png exists)
[phpmyadmin-themes.git] / layout.inc.php
blob10dfdd88215283702510b9c2cc3012a1d08254d1
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 */
11 /**
12 * navi frame
14 // navi frame width
15 $GLOBALS['cfg']['NaviWidth'] = 200;
17 // foreground (text) color for the navi frame
18 $GLOBALS['cfg']['NaviColor'] = '#000';
20 // background for the navi frame
21 $GLOBALS['cfg']['NaviBackground'] = '#ccc';
23 // foreground (text) color of the pointer in navi frame
24 $GLOBALS['cfg']['NaviPointerColor'] = '#000';
25 // background of the pointer in navi frame
26 $GLOBALS['cfg']['NaviPointerBackground'] = '#eee';
28 /**
29 * main frame
31 // foreground (text) color for the main frame
32 $GLOBALS['cfg']['MainColor'] = '#000';
34 // background for the main frame
35 $GLOBALS['cfg']['MainBackground'] = '#fff';
36 //$GLOBALS['cfg']['MainBackground'] = '#F5F5F5 url(' . $_SESSION['PMA_Theme']->getImgPath() . 'vertical_line.png) repeat-y';
38 // foreground (text) color of the pointer in browse mode
39 $GLOBALS['cfg']['BrowsePointerColor'] = '#000';
41 // background of the pointer in browse mode
42 $GLOBALS['cfg']['BrowsePointerBackground'] = '#eef';
44 // foreground (text) color of the marker (visually marks row by clicking on it) in browse mode
45 $GLOBALS['cfg']['BrowseMarkerColor'] = '#000';
47 // background of the marker (visually marks row by clicking on it) in browse mode
48 $GLOBALS['cfg']['BrowseMarkerBackground'] = '#FC9';
50 /**
51 * fonts
53 /**
54 * the font family as a valid css font family value,
55 * if not set the browser default will be used
56 * (depending on browser, DTD and system settings)
58 $GLOBALS['cfg']['FontFamily'] = 'sans-serif';
59 /**
60 * fixed width font family, used in textarea
62 $GLOBALS['cfg']['FontFamilyFixed'] = 'monospace';
64 /**
65 * tables
67 // border
68 $GLOBALS['cfg']['Border'] = 0;
69 // table header and footer color
70 $GLOBALS['cfg']['ThBackground'] = '#555';
71 // table header and footer background
72 $GLOBALS['cfg']['ThColor'] = '#fff';
73 // table data row background
74 $GLOBALS['cfg']['BgOne'] = '#E5E5E5';
75 // table data row background, alternate
76 $GLOBALS['cfg']['BgTwo'] = '#D5D5D5';
78 /**
79 * query window
81 // Width of Query window
82 $GLOBALS['cfg']['QueryWindowWidth'] = 600;
83 // Height of Query window
84 $GLOBALS['cfg']['QueryWindowHeight'] = 400;
86 /**
87 * SQL Parser Settings
88 * Syntax colouring data
90 $GLOBALS['cfg']['SQP']['fmtColor'] = array(
91 'comment' => '#808000',
92 'comment_mysql' => '',
93 'comment_ansi' => '',
94 'comment_c' => '',
95 'digit' => '',
96 'digit_hex' => 'teal',
97 'digit_integer' => 'teal',
98 'digit_float' => 'aqua',
99 'punct' => 'fuchsia',
100 'alpha' => '',
101 'alpha_columnType' => '#FF9900',
102 'alpha_columnAttrib' => '#0000FF',
103 'alpha_reservedWord' => '#990099',
104 'alpha_functionName' => '#FF0000',
105 'alpha_identifier' => 'black',
106 'alpha_charset' => '#6495ed',
107 'alpha_variable' => '#800000',
108 'quote' => '#008000',
109 'quote_double' => '',
110 'quote_single' => '',
111 'quote_backtick' => ''