Replaced all blue font with a custom colour

This commit is contained in:
AnonymousHybi
2019-01-18 15:14:32 +00:00
parent e85c41f86f
commit bff9f560f7
137 changed files with 491 additions and 491 deletions
+1 -1
View File
@@ -75,7 +75,7 @@
CC.update_icon()
overlays = list()
string_attached = null
user << "<font color='blue'>You detach the string from the coin.</font>"
user << "<font color='#6F6FE2'>You detach the string from the coin.</font>"
else ..()
/obj/item/weapon/coin/attack_self(mob/user as mob)
+1 -1
View File
@@ -82,7 +82,7 @@
if(PROCESS_SMELT)
dat += "<font color='orange'>smelting</font>"
if(PROCESS_COMPRESS)
dat += "<font color='blue'>compressing</font>"
dat += "<font color='#6F6FE2'>compressing</font>"
if(PROCESS_ALLOY)
dat += "<font color='gray'>alloying</font>"
else
+1 -1
View File
@@ -120,7 +120,7 @@
usr.set_machine(src)
src.add_fingerprint(usr)
if(processing==1)
usr << "<font color='blue'>The machine is processing.</font>"
usr << "<font color='#6F6FE2'>The machine is processing.</font>"
return
if(href_list["choose"])
chosen = href_list["choose"]
+2 -2
View File
@@ -50,14 +50,14 @@
..()
if (istype(W, /obj/item/weapon/coin))
var/obj/item/weapon/coin/C = W
user << "<font color='blue'>You add the [C.name] into the bag.</font>"
user << "<font color='#6F6FE2'>You add the [C.name] into the bag.</font>"
usr.drop_item()
contents += C
if (istype(W, /obj/item/weapon/moneybag))
var/obj/item/weapon/moneybag/C = W
for (var/obj/O in C.contents)
contents += O;
user << "<font color='blue'>You empty the [C.name] into the bag.</font>"
user << "<font color='#6F6FE2'>You empty the [C.name] into the bag.</font>"
return
/obj/item/weapon/moneybag/Topic(href, href_list)
+1 -1
View File
@@ -90,7 +90,7 @@
for (var/obj/item/weapon/ore/O in contents)
contents -= O
O.loc = src.loc
usr << "<font color='blue'>You empty the ore box.</font>"
usr << "<font color='#6F6FE2'>You empty the ore box.</font>"
return