﻿function connectToTwitter(shellBackgroundColor, tweetBackgroundColor) {
    new TWTR.Widget({
        profile: true,
        id: 'twtr-profile-widget',
        loop: true,
        width: 200,
        height: 150,
        theme: {
            shell: {
                background: shellBackgroundColor,
                color: '#000000'
            },
            tweets: {
                background: tweetBackgroundColor,
                color: '#000000',
                links: '#0043F3'
            }
        }
    }).render().setProfile('worldofppc').start();
}