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