Merge branch 'master' of ssh://phpmyadmin.git.sourceforge.net/gitroot/phpmyadmin...
[phpmyadmin-themes.git] / smooth_yellow / layout.inc.php
blob7f86bb345f732739447f77a93c22ce12f9670b6d
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
5 * @version $Id$
6 * @package phpMyAdmin-theme
7 * @subpackage Arctic_Ocean
8 */
10 /**
11 * for older versions
13 $cfg['LeftPointerEnable'] = false;
14 $cfg['LeftWidth'] = 170; // left frame width
15 $cfg['LeftBgColor'] = '#fedea6'; // background color for the left frame
16 $cfg['RightBgColor'] = '#ffffff'; // background color for the right frame
17 $cfg['RightBgImage'] = ''; // path to a background image for the right frame
18 // (leave blank for no background image)
19 $cfg['LeftPointerColor'] = '#b4cae9'; // color of the pointer in left frame
20 $cfg['Border'] = 0; // border width on tables
21 $cfg['ThBgcolor'] = '#fedea6'; // table header row colour
22 $cfg['BgcolorOne'] = '#f5f5f5'; // table data row colour
23 $cfg['BgcolorTwo'] = '#f0f0f0'; // table data row colour, alternate
24 $cfg['BrowsePointerColor'] = '#ffeab8'; // color of the pointer in browse mode
25 $cfg['BrowseMarkerColor'] = '#ffcc99'; // color of the marker (visually marks row
26 // by clicking on it) in browse mode
27 $cfg['QueryWindowWidth'] = 550; // Width of Query window
28 $cfg['QueryWindowHeight'] = 310; // Height of Query window
29 $cfg['SQP']['fmtColor'] = array( // Syntax colouring data
30 'comment' => '#999999',
31 'comment_mysql' => '',
32 'comment_ansi' => '',
33 'comment_c' => '',
34 'digit' => '',
35 'digit_hex' => 'teal',
36 'digit_integer' => 'teal',
37 'digit_float' => 'aqua',
38 'punct' => '#cc0000',
39 'alpha' => '',
40 'alpha_columnType' => '#ff9900',
41 'alpha_columnAttrib' => '#0000ff',
42 'alpha_reservedWord' => '#cc0000',
43 'alpha_functionName' => '#000099',
44 'alpha_identifier' => '#333333',
45 'alpha_charset' => '#6495ed',
46 'alpha_variable' => '#800000',
47 'quote' => '#008000',
48 'quote_double' => '#000000',
49 'quote_single' => '#000000',
50 'quote_backtick' => ''
53 /**
54 * for current version
56 // NAVI FRAME
57 $GLOBALS['cfg']['LeftPointerEnable'] = false;
58 $GLOBALS['cfg']['NaviWidth'] = 170; // width
59 $GLOBALS['cfg']['NaviColor'] = '#4a2e00'; // foreground (text) color
60 $GLOBALS['cfg']['NaviBackground'] = '#fedea6'; // background
61 $GLOBALS['cfg']['NaviPointerColor'] = '#fedea6'; // foreground (text) color of the pointer
62 $GLOBALS['cfg']['NaviPointerBackground'] = '#4a2e00'; // background of the pointer
63 $GLOBALS['cfg']['NaviMarkerColor'] = '#fedea6'; // foreground (text) color of the marker (visually marks row by clicking on it) in browse mode
64 $GLOBALS['cfg']['NaviMarkerBackground'] = '#4a2e00'; // background of the marker (visually marks row by clicking on it) in browse mode
66 // MAIN FRAME
67 $GLOBALS['cfg']['MainColor'] = '#333333'; // foreground (text) color for the main frame
68 $GLOBALS['cfg']['MainBackground'] = '#ffffff'; // background for the main frame
69 // for a solid vertical line, uncomment this:
70 //$GLOBALS['cfg']['MainBackground'] = '#ffffff url(../' . $_SESSION['PMA_Theme']->getImgPath() . 'vertical_line.png) repeat-y';
71 $GLOBALS['cfg']['BrowsePointerColor'] = '#000000'; // foreground (text) color of the pointer in browse mode
72 $GLOBALS['cfg']['BrowsePointerBackground'] = '#ffeab8'; // background of the pointer in browse mode
73 $GLOBALS['cfg']['BrowseMarkerColor'] = '#000000'; // foreground (text) color of the marker (visually marks row by clicking on it) in browse mode
74 $GLOBALS['cfg']['BrowseMarkerBackground'] = '#ffcc99'; // background of the marker (visually marks row by clicking on it) in browse mode
76 // FONTS
77 // the font family as a valid css font family value,
78 // if not set the browser default will be used
79 // (depending on browser, DTD and system settings)
80 $GLOBALS['cfg']['FontFamily'] = 'Tahoma, Arial, Helvetica, sans-serif';
81 $GLOBALS['cfg']['FontFamilyFixed'] = '\'Courier New\', Courier, monospace'; // fixed width font family, used in textarea
82 $GLOBALS['cfg']['FontSize'] = '11'; // default width of the font
83 $GLOBALS['cfg']['FontSizePrefix'] = 'px'; // pt (Points) | px (Pixel), default is 'pt'
85 // TABLES
86 $GLOBALS['cfg']['Border'] = 0; // border
87 $GLOBALS['cfg']['ThBackground'] = '#fedea6'; // table header and footer color
88 $GLOBALS['cfg']['ThColor'] = '#000000'; // table header and footer background
89 $GLOBALS['cfg']['BgOne'] = '#f9f9f9'; // table data row background
90 $GLOBALS['cfg']['BgTwo'] = '#f0f0f0'; // table data row background, alternate
92 // QUERY WINDOW
93 $GLOBALS['cfg']['QueryWindowWidth'] = 550; // width of Query window
94 $GLOBALS['cfg']['QueryWindowHeight'] = 310; // height of Query window
96 // SQL PARSER SETTINGS
97 // Syntax colouring data
98 $GLOBALS['cfg']['SQP']['fmtColor'] = array(
99 'comment' => '#808000',
100 'comment_mysql' => '#999999',
101 'comment_ansi' => '#999999',
102 'comment_c' => '#999999',
103 'digit' => '#999999',
104 'digit_hex' => 'teal',
105 'digit_integer' => 'teal',
106 'digit_float' => 'aqua',
107 'punct' => 'fuchsia',
108 'alpha' => '#cc0000',
109 'alpha_columnType' => '#ff9900',
110 'alpha_columnAttrib' => '#0000ff',
111 'alpha_reservedWord' => '#990099',
112 'alpha_functionName' => '#ff0000',
113 'alpha_identifier' => '#000000',
114 'alpha_charset' => '#6495ed',
115 'alpha_variable' => '#800000',
116 'quote' => '#008000',
117 'quote_double' => '',
118 'quote_single' => '',
119 'quote_backtick' => ''