44 lines
1.5 KiB
PHP
44 lines
1.5 KiB
PHP
<?php
|
|
|
|
// Sets the default font style for this skin.
|
|
// The users will be able to change this value in Skin Look & Feel settings.
|
|
//
|
|
// Available values: solid, traditional, outlined. material, cartoon
|
|
// Original value: 'traditional'
|
|
$config['xskin_icons'] = 'traditional';
|
|
|
|
// Sets the default value for showing icons in lists.
|
|
// The users will be able to change this value in Skin Look & Feel settings.
|
|
//
|
|
// Available values: true, false
|
|
// Original value: false
|
|
$config['xskin_list_icons'] = false;
|
|
|
|
// Sets the default font family for this skin.
|
|
// The users will be able to change this value in Skin Look & Feel settings.
|
|
//
|
|
// Available values: arial, courier, merienda, montserrat, noto-sans, quattrocento, roboto, sarala, times, ubuntu
|
|
// Original value: 'noto-sans'
|
|
$config['xskin_font_family'] = 'noto-sans';
|
|
|
|
// Sets the default font size for this skin.
|
|
// The users will be able to change this value in Skin Look & Feel settings.
|
|
//
|
|
// Available options: xs, s, n, l, xl
|
|
// Original value: 's'
|
|
$config['xskin_font_size'] = 'n';
|
|
|
|
// Sets the default value for increased font thickness.
|
|
// The users will be able to change this value in Skin Look & Feel settings.
|
|
//
|
|
// Available options: true, false
|
|
// Original value: false
|
|
$config['xskin_thick_font'] = false;
|
|
|
|
// Sets the default color for this skin.
|
|
// The users will be able to change this value in Skin Look & Feel settings.
|
|
//
|
|
// Available values: 6da1d3, 6dcfd3, 6dd374, b76dd3, d3bc6d, ce7070
|
|
// Original value: '6da1d3'
|
|
$config['xskin_color'] = '6da1d3';
|