Translation update done using Pootle.
[phpmyadmin.git] / themes / original / layout.inc.php
blobd2caeb5f88e5f03b3caccadf5016653f0cc55b2f
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'] = '#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';
28 /**
29 * main frame
31 // foreground (text) color for the main frame
32 $GLOBALS['cfg']['MainColor'] = '#000000';
34 // background for the main frame
35 $GLOBALS['cfg']['MainBackground'] = '#F5F5F5';
37 // foreground (text) color of the pointer in browse mode
38 $GLOBALS['cfg']['BrowsePointerColor'] = '#000000';
40 // background of the pointer in browse mode
41 $GLOBALS['cfg']['BrowsePointerBackground'] = '#CCFFCC';
43 // foreground (text) color of the marker (visually marks row by clicking on it) in browse mode
44 $GLOBALS['cfg']['BrowseMarkerColor'] = '#000000';
46 // background of the marker (visually marks row by clicking on it) in browse mode
47 $GLOBALS['cfg']['BrowseMarkerBackground'] = '#FFCC99';
49 /**
50 * fonts
52 /**
53 * the font family as a valid css font family value,
54 * if not set the browser default will be used
55 * (depending on browser, DTD and system settings)
57 $GLOBALS['cfg']['FontFamily'] = 'sans-serif';
58 /**
59 * fixed width font family, used in textarea
61 $GLOBALS['cfg']['FontFamilyFixed'] = 'monospace';
63 /**
64 * tables
66 // border
67 $GLOBALS['cfg']['Border'] = 0;
68 // table header and footer color
69 $GLOBALS['cfg']['ThBackground'] = '#D3DCE3';
70 // table header and footer background
71 $GLOBALS['cfg']['ThColor'] = '#000000';
72 // table data row background
73 $GLOBALS['cfg']['BgOne'] = '#E5E5E5';
74 // table data row background, alternate
75 $GLOBALS['cfg']['BgTwo'] = '#D5D5D5';
77 /**
78 * query window
80 // Width of Query window
81 $GLOBALS['cfg']['QueryWindowWidth'] = 600;
82 // Height of Query window
83 $GLOBALS['cfg']['QueryWindowHeight'] = 400;
85 /**
86 * SQL Parser Settings
87 * Syntax colouring data
89 $GLOBALS['cfg']['SQP']['fmtColor'] = array(
90 'comment' => '#808000',
91 'comment_mysql' => '',
92 'comment_ansi' => '',
93 'comment_c' => '',
94 'digit' => '',
95 'digit_hex' => 'teal',
96 'digit_integer' => 'teal',
97 'digit_float' => 'aqua',
98 'punct' => 'fuchsia',
99 'alpha' => '',
100 'alpha_columnType' => '#FF9900',
101 'alpha_columnAttrib' => '#0000FF',
102 'alpha_reservedWord' => '#990099',
103 'alpha_functionName' => '#FF0000',
104 'alpha_identifier' => 'black',
105 'alpha_charset' => '#6495ed',
106 'alpha_variable' => '#800000',
107 'quote' => '#008000',
108 'quote_double' => '',
109 'quote_single' => '',
110 'quote_backtick' => ''
114 * Chart colors
117 $GLOBALS['cfg']['chartColor'] = array(
118 'gradientIntensity' => 0,
119 // The style of the chart title.
120 'titleColor' => '#000000',
121 'titleBgColor' => $GLOBALS['cfg']['ThBackground'],
122 // Chart border (0 for no border)
123 'border' => '#CCCCCC',
124 // Chart background color.
125 'bgColor' => $GLOBALS['cfg']['BgTwo'],
126 // when graph area gradient is used, this is the color of the graph
127 // area border
128 'graphAreaColor' => '#D5D9DD',
129 // the background color of the inner graph area
130 'graphAreaGradientColor' => $GLOBALS['cfg']['BgOne'],
131 // the color of the grid lines in the graph area
132 'gridColor' => '#E6E6E6',
133 // the color of the scale and the labels
134 'scaleColor' => '#D5D9DD',