mirror of
https://github.com/CHOMPstation/CHOMPstation.git
synced 2026-08-24 04:26:38 +01:00
Dark theme initial commit
This commit is contained in:
@@ -102,7 +102,7 @@ var/global/list/round_voters = list() // Keeps track of the individuals voting f
|
||||
else
|
||||
factor = 1.4
|
||||
choices["Initiate Crew Transfer"] = round(choices["Initiate Crew Transfer"] * factor)
|
||||
world << "<font color='purple'>Crew Transfer Factor: [factor]</font>"
|
||||
world << "<font color='AD5AAD'>Crew Transfer Factor: [factor]</font>"
|
||||
greatest_votes = max(choices["Initiate Crew Transfer"], choices["Continue The Round"])
|
||||
|
||||
. = list() // Get all options with that many votes and return them in a list
|
||||
@@ -135,7 +135,7 @@ var/global/list/round_voters = list() // Keeps track of the individuals voting f
|
||||
if(mode == VOTE_ADD_ANTAGONIST)
|
||||
antag_add_failed = 1
|
||||
log_vote(text)
|
||||
world << "<font color='purple'>[text]</font>"
|
||||
world << "<font color='AD5AAD'>[text]</font>"
|
||||
|
||||
/datum/controller/vote/proc/result()
|
||||
. = announce_result()
|
||||
@@ -249,7 +249,7 @@ var/global/list/round_voters = list() // Keeps track of the individuals voting f
|
||||
|
||||
log_vote(text)
|
||||
|
||||
world << "<font color='purple'><b>[text]</b>\nType <b>vote</b> or click <a href='?src=\ref[src]'>here</a> to place your votes.\nYou have [config.vote_period / 10] seconds to vote.</font>"
|
||||
world << "<font color='AD5AAD'><b>[text]</b>\nType <b>vote</b> or click <a href='?src=\ref[src]'>here</a> to place your votes.\nYou have [config.vote_period / 10] seconds to vote.</font>"
|
||||
if(vote_type == VOTE_CREW_TRANSFER || vote_type == VOTE_GAMEMODE || vote_type == VOTE_CUSTOM)
|
||||
world << sound('sound/ambience/alarm4.ogg', repeat = 0, wait = 0, volume = 50, channel = 3)
|
||||
|
||||
|
||||
@@ -142,7 +142,7 @@ var/global/datum/controller/gameticker/ticker
|
||||
//Deleting Startpoints but we need the ai point to AI-ize people later
|
||||
if (S.name != "AI")
|
||||
qdel(S)
|
||||
to_chat(world, "<FONT color='blue'><B>Enjoy the game!</B></FONT>")
|
||||
to_chat(world, "<FONT color='0544ff'><B>Enjoy the game!</B></FONT>")
|
||||
world << sound('sound/AI/welcome.ogg') // Skie
|
||||
//Holiday Round-start stuff ~Carn
|
||||
Holiday_Game_Start()
|
||||
|
||||
@@ -133,7 +133,7 @@ var/list/all_technomancer_assistance = typesof(/datum/technomancer/assistance) -
|
||||
dat += "<b>[spell.name]</b><br>"
|
||||
dat += "<i>[spell.desc]</i><br>"
|
||||
if(spell.spell_power_desc)
|
||||
dat += "<font color='purple'>Spell Power: [spell.spell_power_desc]</font><br>"
|
||||
dat += "<font color='AD5AAD'>Spell Power: [spell.spell_power_desc]</font><br>"
|
||||
if(spell.enhancement_desc)
|
||||
dat += "<font color='blue'>Scepter Effect: [spell.enhancement_desc]</font><br>"
|
||||
if(spell.cost <= budget)
|
||||
@@ -255,7 +255,7 @@ var/list/all_technomancer_assistance = typesof(/datum/technomancer/assistance) -
|
||||
If a function is able to be boosted with it, it will be shown underneath the description of the function as \
|
||||
<font color='blue'><i>'Scepter Effect:'</i></font>. Note that you must hold the scepter for it to work, so try to avoid losing it.<br>"
|
||||
dat += "Functions can also be boosted with the core itself. A function that is able to benefit \
|
||||
from this will have <font color='purple'><i>'Spell Power:'</i></font> underneath. Different Cores have different \
|
||||
from this will have <font color='AD5AAD'><i>'Spell Power:'</i></font> underneath. Different Cores have different \
|
||||
amounts of spell power.<br>"
|
||||
dat += "When a function refers to 'allies', it means you, your apprentices, currently controlled entities (with the \
|
||||
Control function), and friendly simple-minded entities that you've summoned with the Scepter of Enhancement.<br>"
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
return
|
||||
|
||||
var/image/cross = image('icons/obj/storage.dmi',"bible")
|
||||
msg = "<font color='blue'>\icon[cross] <b><font color=purple>PRAY: </font>[key_name(src, 1)] (<A HREF='?_src_=holder;adminmoreinfo=\ref[src]'>?</A>) (<A HREF='?_src_=holder;adminplayeropts=\ref[src]'>PP</A>) (<A HREF='?_src_=vars;Vars=\ref[src]'>VV</A>) (<A HREF='?_src_=holder;subtlemessage=\ref[src]'>SM</A>) ([admin_jump_link(src, src)]) (<A HREF='?_src_=holder;secretsadmin=check_antagonist'>CA</A>) (<A HREF='?_src_=holder;adminspawncookie=\ref[src]'>SC</a>) (<A HREF='?_src_=holder;adminsmite=\ref[src]'>SMITE</a>):</b> [msg]</font>"
|
||||
msg = "<font color='blue'>\icon[cross] <b><font color=AD5AAD>PRAY: </font>[key_name(src, 1)] (<A HREF='?_src_=holder;adminmoreinfo=\ref[src]'>?</A>) (<A HREF='?_src_=holder;adminplayeropts=\ref[src]'>PP</A>) (<A HREF='?_src_=vars;Vars=\ref[src]'>VV</A>) (<A HREF='?_src_=holder;subtlemessage=\ref[src]'>SM</A>) ([admin_jump_link(src, src)]) (<A HREF='?_src_=holder;secretsadmin=check_antagonist'>CA</A>) (<A HREF='?_src_=holder;adminspawncookie=\ref[src]'>SC</a>) (<A HREF='?_src_=holder;adminsmite=\ref[src]'>SMITE</a>):</b> [msg]</font>"
|
||||
|
||||
for(var/client/C in admins)
|
||||
if(R_ADMIN & C.holder.rights)
|
||||
|
||||
@@ -622,7 +622,7 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp
|
||||
is_manifest = TRUE
|
||||
verbs |= /mob/observer/dead/proc/toggle_visibility
|
||||
verbs |= /mob/observer/dead/proc/ghost_whisper
|
||||
to_chat(src,"<font color='purple'>As you are now in the realm of the living, you can whisper to the living with the <b>Spectral Whisper</b> verb, inside the IC tab.</font>")
|
||||
to_chat(src,"<font color='AD5AAD'>As you are now in the realm of the living, you can whisper to the living with the <b>Spectral Whisper</b> verb, inside the IC tab.</font>")
|
||||
if(plane != PLANE_WORLD)
|
||||
user.visible_message( \
|
||||
"<span class='warning'>\The [user] drags ghost, [src], to our plane of reality!</span>", \
|
||||
@@ -754,7 +754,7 @@ mob/observer/dead/MayRespawn(var/feedback = 0)
|
||||
var/msg = sanitize(input(src, "Message:", "Spectral Whisper") as text|null)
|
||||
if(msg)
|
||||
log_say("(SPECWHISP to [key_name(M)]): [msg]", src)
|
||||
M << "<span class='warning'> You hear a strange, unidentifiable voice in your head... <font color='purple'>[msg]</font></span>"
|
||||
M << "<span class='warning'> You hear a strange, unidentifiable voice in your head... <font color='AD5AAD'>[msg]</font></span>"
|
||||
src << "<span class='warning'> You said: '[msg]' to [M].</span>"
|
||||
else
|
||||
return
|
||||
|
||||
+58
-58
@@ -1,15 +1,15 @@
|
||||
client/script = {"<style>
|
||||
body {font-family: Verdana, sans-serif;}
|
||||
body {font-family: Verdana, sans-serif; color: #e2ebf1;}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {color: #0000ff;font-family: Georgia, Verdana, sans-serif;}
|
||||
h1, h2, h3, h4, h5, h6 {color: #1919FF;font-family: Georgia, Verdana, sans-serif;}
|
||||
|
||||
em {font-style: normal;font-weight: bold;}
|
||||
|
||||
.motd {color: #638500;font-family: Verdana, sans-serif;}
|
||||
.motd {color: #829D32;font-family: Verdana, sans-serif;}
|
||||
.motd h1, .motd h2, .motd h3, .motd h4, .motd h5, .motd h6
|
||||
{color: #638500;text-decoration: underline;}
|
||||
{color: #829D32;text-decoration: underline;}
|
||||
.motd a, .motd a:link, .motd a:visited, .motd a:active, .motd a:hover
|
||||
{color: #638500;}
|
||||
{color: #829D32;}
|
||||
|
||||
.prefix {font-weight: bold;}
|
||||
.log_message {color: #386AFF; font-weight: bold;}
|
||||
@@ -18,95 +18,95 @@ em {font-style: normal;font-weight: bold;}
|
||||
.ooc {font-weight: bold;}
|
||||
.ooc img.text_tag {width: 32px; height: 10px;}
|
||||
|
||||
.ooc .everyone {color: #002eb8;}
|
||||
.ooc .looc {color: #3A9696;}
|
||||
.ooc .everyone {color: #0544ff;}
|
||||
.ooc .looc {color: #4DA0A0;}
|
||||
.ooc .elevated {color: #2e78d9;}
|
||||
.ooc .moderator {color: #184880;}
|
||||
.ooc .developer {color: #1b521f;}
|
||||
.ooc .moderator {color: #587AA3;}
|
||||
.ooc .developer {color: #48744B;}
|
||||
.ooc .admin {color: #b82e00;}
|
||||
.ooc .event_manager {color: #660033;}
|
||||
.ooc .aooc {color: #960018;}
|
||||
.ooc .event_manager {color: #84325B;}
|
||||
.ooc .aooc {color: #AB3246;}
|
||||
|
||||
/* Admin: Private Messages */
|
||||
.pm .howto {color: #ff0000; font-weight: bold; font-size: 200%;}
|
||||
.pm .in {color: #ff0000;}
|
||||
.pm .out {color: #ff0000;}
|
||||
.pm .other {color: #0000ff;}
|
||||
.pm .howto {color: #FF3232; font-weight: bold; font-size: 200%;}
|
||||
.pm .in {color: #FF3232;}
|
||||
.pm .out {color: #FF3232;}
|
||||
.pm .other {color: #4646FF;}
|
||||
|
||||
/* Admin: Channels */
|
||||
.mod_channel {color: #735638; font-weight: bold;}
|
||||
.mod_channel {color: #8F775F; font-weight: bold;}
|
||||
.mod_channel .admin {color: #b82e00; font-weight: bold;}
|
||||
.admin_channel {color: #9611D4; font-weight: bold;}
|
||||
.event_channel {color: #cc3399; font-weight: bold;}
|
||||
.admin_channel {color: #AB40DC; font-weight: bold;}
|
||||
.event_channel {color: #D65BAD; font-weight: bold;}
|
||||
|
||||
/* Radio: Misc */
|
||||
.deadsay {color: #530FAD;}
|
||||
.radio {color: #008000;}
|
||||
.deadsay {color: #753EBD;}
|
||||
.radio {color: #6FB76F;}
|
||||
.deptradio {color: #ff00ff;} /* when all other department colors fail */
|
||||
.newscaster {color: #750000;}
|
||||
.newscaster {color: #903232;}
|
||||
|
||||
/* Radio Channels */
|
||||
.comradio {color: #193A7A;}
|
||||
.syndradio {color: #6D3F40;}
|
||||
.comradio {color: #466194;}
|
||||
.syndradio {color: #8A6566;}
|
||||
.centradio {color: #5C5C8A;}
|
||||
.airadio {color: #FF00FF;}
|
||||
.entradio {color: #339966;}
|
||||
.entradio {color: #5BAD84;}
|
||||
|
||||
.secradio {color: #A30000;}
|
||||
.engradio {color: #A66300;}
|
||||
.medradio {color: #008160;}
|
||||
.sciradio {color: #993399;}
|
||||
.supradio {color: #5F4519;}
|
||||
.srvradio {color: #6eaa2c;}
|
||||
.expradio {color: #555555;}
|
||||
.medradio {color: #329A7F;}
|
||||
.sciradio {color: #AD5BAD;}
|
||||
.supradio {color: #7E6A46;}
|
||||
.srvradio {color: #8BBB56;}
|
||||
.expradio {color: #767676;}
|
||||
|
||||
/* Miscellaneous */
|
||||
.name {font-weight: bold;}
|
||||
.say {}
|
||||
.alert {color: #ff0000;}
|
||||
h1.alert, h2.alert {color: #000000;}
|
||||
.alert {color: #FF3232;}
|
||||
h1.alert, h2.alert {color: #e2ebf1;}
|
||||
|
||||
.emote {font-style: italic;}
|
||||
|
||||
/* Game Messages */
|
||||
|
||||
.attack {color: #ff0000;}
|
||||
.attack {color: #FF3232;}
|
||||
.moderate {color: #CC0000;}
|
||||
.disarm {color: #990000;}
|
||||
.passive {color: #660000;}
|
||||
.disarm {color: #A31919;}
|
||||
.passive {color: #843232;}
|
||||
|
||||
.critical {color: #ff0000; font-weight: bold; font-size: 150%;}
|
||||
.danger {color: #ff0000; font-weight: bold;}
|
||||
.warning {color: #ff0000; font-style: italic;}
|
||||
.rose {color: #ff5050;}
|
||||
.info {color: #0000CC;}
|
||||
.notice {color: #000099;}
|
||||
.alium {color: #00ff00;}
|
||||
.cult {color: #800080; font-weight: bold; font-style: italic;}
|
||||
.critical {color: #FF3232; font-weight: bold; font-size: 150%;}
|
||||
.danger {color: #FF3232; font-weight: bold;}
|
||||
.warning {color: #FF3232; font-style: italic;}
|
||||
.rose {color: #FF8484;}
|
||||
.info {color: #6F6FE2;}
|
||||
.notice {color: #8B8BD0;}
|
||||
.alium {color: #32FF32;}
|
||||
.cult {color: #A64CA6; font-weight: bold; font-style: italic;}
|
||||
|
||||
.reflex_shoot {color: #000099; font-style: italic;}
|
||||
.reflex_shoot {color: #6F6FE2; font-style: italic;}
|
||||
|
||||
/* Languages */
|
||||
|
||||
.alien {color: #543354;}
|
||||
.tajaran {color: #803B56;}
|
||||
.tajaran_signlang {color: #941C1C;}
|
||||
.akhani {color: #AC398C;}
|
||||
.skrell {color: #00B0B3;}
|
||||
.alien {color: #877087;}
|
||||
.tajaran {color: #996277;}
|
||||
.tajaran_signlang {color: #A94949;}
|
||||
.akhani {color: #BC60A3;}
|
||||
.skrell {color: #32BFC2;}
|
||||
.skrellfar {color: #70FCFF;}
|
||||
.soghun {color: #228B22;}
|
||||
.solcom {color: #22228B;}
|
||||
.changeling {color: #800080;}
|
||||
.sergal {color: #0077FF;}
|
||||
.birdsongc {color: #CC9900;}
|
||||
.vulpkanin {color: #B97A57;}
|
||||
.enochian {color: #848A33; letter-spacing:-1pt; word-spacing:4pt; font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;}
|
||||
.daemon {color: #5E339E; letter-spacing:-1pt; word-spacing:0pt; font-family: "Courier New", Courier, monospace;}
|
||||
.vox {color: #AA00AA;}
|
||||
.soghun {color: #4EA24E;}
|
||||
.solcom {color: #4E4EA2;}
|
||||
.changeling {color: #AD5AAD;}
|
||||
.sergal {color: #3292FF;}
|
||||
.birdsongc {color: #D6AD32;}
|
||||
.vulpkanin {color: #C79478;}
|
||||
.enochian {color: #9CA15B; letter-spacing:-1pt; word-spacing:4pt; font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;}
|
||||
.daemon {color: #8E70BB; letter-spacing:-1pt; word-spacing:0pt; font-family: "Courier New", Courier, monospace;}
|
||||
.vox {color: #C34CC3;}
|
||||
.rough {font-family: "Trebuchet MS", cursive, sans-serif;}
|
||||
.say_quote {font-family: Georgia, Verdana, sans-serif;}
|
||||
.terminus {font-family: "Times New Roman", Times, serif, sans-serif}
|
||||
.interface {color: #330033;}
|
||||
.interface {color: #A993A9;}
|
||||
|
||||
BIG IMG.icon {width: 32px; height: 32px;}
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
if(config.wikiurl)
|
||||
if(query)
|
||||
if(config.wikisearchurl)
|
||||
var/output = replacetext(config.wikisearchurl, "%s", url_encode(query))
|
||||
var/output = replacetext(config.wikisearchurl, "%s", url_encode(query))
|
||||
src << link(output)
|
||||
else
|
||||
src << "<span class='warning'> The wiki search URL is not set in the server configuration.</span>"
|
||||
@@ -71,7 +71,7 @@
|
||||
set name = "hotkeys-help"
|
||||
set category = "OOC"
|
||||
|
||||
var/admin = {"<font color='purple'>
|
||||
var/admin = {"<font color='#AD5AAD'>
|
||||
Admin:
|
||||
\tF5 = Aghost (admin-ghost)
|
||||
\tF6 = player-panel-new
|
||||
@@ -79,7 +79,7 @@ Admin:
|
||||
\tF8 = Invisimin
|
||||
</font>"}
|
||||
|
||||
var/hotkey_mode = {"<font color='purple'>
|
||||
var/hotkey_mode = {"<font color='#AD5AAD'>
|
||||
Hotkey-Mode: (hotkey-mode must be on)
|
||||
\tTAB = toggle hotkey-mode
|
||||
\ta = left
|
||||
@@ -104,7 +104,7 @@ Hotkey-Mode: (hotkey-mode must be on)
|
||||
\tShift+Click = examine
|
||||
</font>"}
|
||||
|
||||
var/other = {"<font color='purple'>
|
||||
var/other = {"<font color='#AD5AAD'>
|
||||
Any-Mode: (hotkey doesn't need to be on)
|
||||
\tCtrl+a = left
|
||||
\tCtrl+s = down
|
||||
@@ -133,7 +133,7 @@ Any-Mode: (hotkey doesn't need to be on)
|
||||
\tEND = throw
|
||||
</font>"}
|
||||
|
||||
var/robot_hotkey_mode = {"<font color='purple'>
|
||||
var/robot_hotkey_mode = {"<font color='#AD5AAD'>
|
||||
Hotkey-Mode: (hotkey-mode must be on)
|
||||
\tTAB = toggle hotkey-mode
|
||||
\ta = left
|
||||
@@ -155,7 +155,7 @@ Hotkey-Mode: (hotkey-mode must be on)
|
||||
\tShift+Click = examine
|
||||
</font>"}
|
||||
|
||||
var/robot_other = {"<font color='purple'>
|
||||
var/robot_other = {"<font color='#AD5AAD'>
|
||||
Any-Mode: (hotkey doesn't need to be on)
|
||||
\tCtrl+a = left
|
||||
\tCtrl+s = down
|
||||
|
||||
+48
-1110
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user