This repository was archived by the owner on Mar 23, 2020. It is now read-only.
forked from foxdog05000/materialized
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathlayout.inc.php
More file actions
49 lines (42 loc) · 1.27 KB
/
layout.inc.php
File metadata and controls
49 lines (42 loc) · 1.27 KB
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
<?php
/**
* Layout
*
* @package Material
* @author Alex Torres
* @link
*/
/*
* General
*/
$GLOBALS['cfg']['NaviWidth'] = '250';
$GLOBALS['cfg']['FontFamily'] = '"Roboto", sans-serif';
$GLOBALS['cfg']['FontFamilyLight'] = '"Roboto", sans-serif; font-weight: 300';
$GLOBALS['cfg']['FontFamilyFixed'] = 'Consolas, Monospace, "Lucida Grande"';
/*
* Color Scheme
* No color scheme for this version
* Primary and Accent Colors
*/
$GLOBALS['cfg']['PrimaryColor'] = '#673AB7';
$GLOBALS['cfg']['AccentColor'] = '#FF6D00';
/*
* Warning and Success Colors
*/
$GLOBALS['cfg']['WarningColor'] = '#ea4335';
$GLOBALS['cfg']['SuccessColor'] = '#01a31c';
/*
* Icon Color
*/
$GLOBALS['cfg']['IconColor'] = '#444';
$GLOBALS['cfg']['HeaderTable'] = '#546E7A';
$GLOBALS['cfg']['BorderColor'] = '#E7E7E7';
$GLOBALS['cfg']['BackgroundColor'] = '#ECEFF1';
$GLOBALS['cfg']['BackgroundCard'] = '#FAFAFA';
$GLOBALS['cfg']['WhiteColor'] = '#fff';
$GLOBALS['cfg']['GreyDarkColor'] = '#333';
$GLOBALS['cfg']['BlackColor'] = '#000';
/*
* Shadow
*/
$GLOBALS['cfg']['Shadow'] = '0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)';