Config

In the config you can change all the color, server name, logo visibility and keybind

Color Settings

var Config = {
    FontColors : {
        '--loading-bg' : '#272727',
        '--loading-active' : '#B7F100',
        /* key binds colors */
        '--key-bind-box-bg': '#272727',
        '--key-bind-box-key-color': '#575757',
        '--key-bind-box-key-color-hover': '#B7F100',
        '--key-bind-box-description': '#575757',


        /* background color */       
        '--bg-circle' : '#B7F100',
        '--bg-circle-gradient': '#B7F100',
        '--bg-circle-bg': '#ffffff',
        '--bg-glow': '#B7F100',

        '--server-name-1': '#d6d6d6',
        '--server-name-2': '#B7F100',
        '--server-name-3': '#d6d6d6',
    },
}

Title Settings

    name_top : 'Eex',
    name_bottom : 'Drive',

KeyBind Settings

    KeyBinds :  [
        {
            label : 'Main Menu',
            key : 'ESC',
        },
        {
            label : 'Character Menu',
            key : 'F1',
        },
        {
            label : 'Garage',
            key : 'F2',
        },
        {
            label : 'inventory',
            key : 'I'
        },
        {
            label : 'Map',
            key : 'M'
        },
        {
            label : 'Lorem Ipsium',
            key : 'J'
        },
        {
            label : 'Lorem Ipsium',
            key : 'N'
        }
    ]

Logo settings

Before you add your logo, go to the assets folder and add your logo, it must be 1018x431px

   logo: '/assets/logo.png',

If you don't want to use the logo, use this:

   logo: false,

Full config

var Config = {
    FontColors : {
        '--loading-bg' : '#272727',
        '--loading-active' : '#B7F100',
        /* key binds colors */
        '--key-bind-box-bg': '#272727',
        '--key-bind-box-key-color': '#575757',
        '--key-bind-box-key-color-hover': '#B7F100',
        '--key-bind-box-description': '#575757',


        /* background color */       
        '--bg-circle' : '#B7F100',
        '--bg-circle-gradient': '#B7F100',
        '--bg-circle-bg': '#ffffff',
        '--bg-glow': '#B7F100',

        '--server-name-1': '#d6d6d6',
        '--server-name-2': '#B7F100',
        '--server-name-3': '#d6d6d6',
    },
    name_top : 'Eex',
    name_bottom : 'Drive',
    KeyBinds :  [
        {
            label : 'Main Menu',
            key : 'ESC',
        },
        {
            label : 'Character Menu',
            key : 'F1',
        },
        {
            label : 'Garage',
            key : 'F2',
        },
        {
            label : 'inventory',
            key : 'I'
        },
        {
            label : 'Map',
            key : 'M'
        },
        {
            label : 'Lorem Ipsium',
            key : 'J'
        },
        {
            label : 'Lorem Ipsium',
            key : 'N'
        }
    ],
    logo: false,
}

Last updated