Optimize screenshot
[phpmyadmin-themes.git] / emphasis / layout.inc.php
blob642025b7d9aeb9a16cc0eaf399c722d91909e9d0
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
5 * @version $Id$
6 * @package phpMyAdmin-theme
7 * @subpackage Emphasis
8 */
10 /**
11 * navi frame
13 // navi frame width
14 $GLOBALS['cfg']['NaviWidth'] = 200;
16 // foreground (text) color for the navi frame
17 $GLOBALS['cfg']['NaviColor'] = '#FFFFFF';
19 // background for the navi frame
20 $GLOBALS['cfg']['NaviBackground'] = '#082E58';
22 // foreground (text) color of the pointer in navi frame
23 $GLOBALS['cfg']['NaviPointerColor'] = '#FFFFFF';
24 // background of the pointer in navi frame
25 $GLOBALS['cfg']['NaviPointerBackground'] = 'transparent';
26 // text color of the selected database name (when showing the table list)
27 $GLOBALS['cfg']['NaviDatabaseNameColor'] = '#909090';
29 /**
30 * main frame
32 // foreground (text) color for the main frame
33 $GLOBALS['cfg']['MainColor'] = '#FFFFFF';
35 // background for the main frame
36 $GLOBALS['cfg']['MainBackground'] = '#082E58';
38 // foreground (text) color of the pointer in browse mode
39 $GLOBALS['cfg']['BrowsePointerColor'] = '#082E58';
41 // background of the pointer in browse mode
42 $GLOBALS['cfg']['BrowsePointerBackground'] = '#CCFFCC';
44 // foreground (text) color of the marker (visually marks row by clicking on it) in browse mode
45 $GLOBALS['cfg']['BrowseMarkerColor'] = '#082E58';
47 // background of the marker (visually marks row by clicking on it) in browse mode
48 $GLOBALS['cfg']['BrowseMarkerBackground'] = '#FFCC99';
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'] = '#909090';
71 // table header and footer background
72 $GLOBALS['cfg']['ThColor'] = '#082E58';
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' => ''