Pendorian Elite UI

Changes a large portion of the text and UI to 'Elite' blue and makes small changes to the UI.

As of 2018-11-22. See the latest version.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name Pendorian Elite UI
// @namespace http://pendoria.net/
// @version 1.2.3
// @author Puls3
// @include http*://*pendoria.net* 
// @grant none
// @description Changes a large portion of the text and UI to 'Elite' blue and makes small changes to the UI.
// ==/UserScript==

//Version 1.1 - Removed dungeon text.
//Version 1.2
// - Added Favicon.
// - Fixed match & switched to include.
// - Turned inventory '!' to blue.
// - Fixed namespace.
//Version 1.2.1 - Fixed inventory exclamation point not changing.
//Version 1.2.2 - Added background image.
//Version 1.2.3 - Turned scraptown bar and notification to blue.

//Made by Puls3 from Pendoria!
//It's very easy to edit!
//If cloned please give credit!

var head = document.getElementsByTagName('head')[0];
head.insertAdjacentHTML("afterend", `
<link rel="icon" href="https://xer0-puls3.github.io/assets/images/favicon.ico" type="image/x-icon"/>
<style>

/* CHAT CSS BELOW */

.chat-username {
  color: rgb(0, 153, 255) !important;
}

/* UI CSS Below */

body {
  background-image: url(https://zerthox.github.io/ClearVision/images/sapphire.jpg) !important;
}

.green {
  background-color: rgb(0, 153, 255) !important;
}
#expwidth {
  background-color: rgb(0, 153, 255) !important;
}
#profile, #menu, #stats-hourly {
  top: -50px;
  background-color: rgba(0,0,0,0) !important;
  background-image: linear-gradient(to bottom, rgba(0,0,0,0.6) , rgba(0,0,0,0.3)) !important;
}
#logo {
  display: none;
}
#quest_done {
  color: rgb(0, 153, 255);
}
#quest_prog {
  color: rgb(0, 153, 255);
}
#event {
  color: rgb(0, 153, 255) !important;
}
quest_abandon {
  background-color: rgb(0, 153, 255) !important;
}
button {
  background: rgba(0, 153, 255,0.5) !important;
}
#invinfo {
  color: rgb(0, 153, 255) !important;
}
#building-progress {
  background-color: rgb(0, 153, 255) !important;
}
scraptowninfo {
  color: rgb(0, 153, 255) !important;
}

/* TS CSS BELOW */

#gainedres {
  color: rgb(0, 153, 255) !important;
}

#gainedtype {
  color: rgb(0, 153, 255) !important;
}

#guild_currency {
  color: rgb(0, 153, 255) !important;
}

#guild_amount {
  color: rgb(0, 153, 255) !important;
}

#quint span {
  color: rgb(0, 153, 255) !important;
}

.actionexperience, .actionexperience span {
  color: rgb(0, 153, 255) !important;
}

#double_tradeskill span {
  color: rgb(0, 153, 255) !important;
}

/* DUNGEON CSS BELOW */

#dungeon-dialogue {
  display: none;
}

/* COMBAT CSS BELOW */

.timeshit, .timescrit, .timesdodged, .hitstaken, #gainedgold, .actiongold, #guild_gold {
  color: rgb(0, 153, 255) !important;
}
#double_battle span {
  color: rgb(0, 153, 255) !important;
}

</style>
`);