forked from phpmyadmin/themes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlayout.inc.php
53 lines (52 loc) · 2 KB
/
layout.inc.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
*
* @version $Id$
* @package phpMyAdmin-theme
* @subpackage WinXP_silver
*/
/**
*
*/
$cfg['LeftWidth'] = 180; // left frame width
/* colors */
$cfg['LeftBgColor'] = '#c2c6d3'; // background color for the left frame
$cfg['RightBgColor'] = '#ffffff'; // background color for the right frame
$cfg['RightBgImage'] = ''; // path to a background image for the right frame
// (leave blank for no background image)
$cfg['LeftPointerColor'] = '#CCFFCC'; // color of the pointer in left frame
$cfg['Border'] = 0; // border width on tables
$cfg['ThBgcolor'] = '#c2c6d3'; // table header row colour
$cfg['BgcolorOne'] = '#f1f1f1'; // table data row colour
$cfg['BgcolorTwo'] = '#e1e1e1'; // table data row colour, alternate
$cfg['BrowsePointerColor'] = '#FFFFCC'; // color of the pointer in browse mode
$cfg['BrowseMarkerColor'] = '#FFFFCC'; // color of the marker (visually marks row
// by clicking on it) in browse mode
/**
* SQL Parser Settings
*/
$cfg['SQP']['fmtColor'] = array( // Syntax colouring data
'comment' => '#808000',
'comment_mysql' => '',
'comment_ansi' => '',
'comment_c' => '',
'digit' => '',
'digit_hex' => 'teal',
'digit_integer' => 'teal',
'digit_float' => 'aqua',
'punct' => 'fuchsia',
'alpha' => '',
'alpha_columnType' => '#FF9900',
'alpha_columnAttrib' => '#0000FF',
'alpha_reservedWord' => '#990099',
'alpha_functionName' => '#FF0000',
'alpha_identifier' => 'black',
'alpha_charset' => '#6495ed',
'alpha_variable' => '#800000',
'quote' => '#008000',
'quote_double' => '',
'quote_single' => '',
'quote_backtick' => ''
);
?>