
// TWITTERウェブサイトカスタマイズ

new TWTR.Widget({
  version: 2,
  type: 'profile',
  rpp: 10,
  interval: 6000,
  width: 340,
  height: 100,
  theme: {
    shell: {
      background: '#5C2008',
      color: '#E5DDCF'
    },
    tweets: {
      background: '#FFF7EE',
      color: '#5B5959',
      links: '#482E18'
    }
  },
  features: {
    scrollbar: true,
    loop: false,
    live: false,
    hashtags: true,
    timestamp: true,
    avatars: false,
    behavior: 'all'
  }
}).render().setUser('kameyamaonsen').start();

