View file themes/frontend/musiccloud/options.php

File size: 2.52Kb
<?php
return array(
    'title' => 'MusicCloud',
    'description' => 'Customize default theme here',
    'settings' => array(
        'homepage-member-list' => array(
            'type' => 'boolean',
            'title' => 'Show Homepage Members',
            'description' => 'Enable if you want to show members on homepage',
            'value' => 1
        ),

        'music-verify-badge-color' => array(
            'type' => 'color',
            'title' => 'Verify Badge Color',
            'description' => 'Set verify badge color. Default is <strong>#FF5500</strong>',
            'value' => '#FF5500'
        ),

        'music-header-bg-color' => array(
            'type' => 'color',
            'title' => 'Header Background Color',
            'description' => 'Set header background color. Default is <strong>#000000</strong>',
            'value' => '#000000'
        ),

        'music-header-search-bar-bg-color' => array(
            'type' => 'color',
            'title' => 'Header Search Bar Background Color',
            'description' => 'Set header search bar background color. Default is <strong>#000000</strong>',
            'value' => '#000000'
        ),

        'music-box-title-background-color' => array(
            'type' => 'color',
            'title' => 'Box Title Background Color',
            'description' => 'Set box title  background color. Default is <strong>#EEEEEE</strong>',
            'value' => '#EEEEEE'
        ),

        'music-box-title-text-color' => array(
            'type' => 'color',
            'title' => 'Box Title Text Color',
            'description' => 'Set box title  text color. Default is <strong>#222222</strong>',
            'value' => '#222222'
        ),

        'music-link-color' => array(
            'type' => 'color',
            'title' => 'Link Color',
            'description' => 'Set Link color. Default is <strong>#FF5500</strong>',
            'value' => '#FF5500'
        ),

        'music-main-body-bg-color' => array(
            'type' => 'color',
            'title' => 'Main Body Background Color',
            'description' => 'Set main body background color. Default is <strong>#EEEEEE</strong>',
            'value' => '#EEEEEE'
        ),

        'music-button-bg-color' => array(
            'type' => 'color',
            'title' => 'Button Background Color',
            'description' => 'Set Button background color. Default is <strong>#FF5500</strong>',
            'value' => '#FF5500'
        ),
    )
);