diff --git a/code/modules/goonchat/browserassets/css/browserOutput.css b/code/modules/goonchat/browserassets/css/browserOutput.css index 1e047ec82f0..79fd9543a48 100644 --- a/code/modules/goonchat/browserassets/css/browserOutput.css +++ b/code/modules/goonchat/browserassets/css/browserOutput.css @@ -366,6 +366,8 @@ h1.alert, h2.alert {color: #a4bad6;} .delvahhi {color: #914123; font-weight: bold;} .siiktau {color: #be3434;} .revenant {color: #1ca5aa; font-style: italic;} +.freespeak {color: #FF4500; font-family: "Trebuchet MS", cursive, sans-serif;} +.tradeband {color: #782CE8; font-family: Georgia, Verdana, sans-serif;} .singing {font-family: "Trebuchet MS", cursive, sans-serif; font-style: italic;} diff --git a/code/modules/goonchat/browserassets/css/browserOutput_white.css b/code/modules/goonchat/browserassets/css/browserOutput_white.css index 68ec44c6a9b..80340a6d81a 100644 --- a/code/modules/goonchat/browserassets/css/browserOutput_white.css +++ b/code/modules/goonchat/browserassets/css/browserOutput_white.css @@ -363,6 +363,8 @@ h1.alert, h2.alert {color: #000080;} .delvahhi {color: #5E2612; font-weight: bold;} .siiktau {color: #A52A2A;} .revenant {color: #215a5c; font-style: italic;} +.freespeak {color: #FF4500; font-family: "Trebuchet MS", cursive, sans-serif;} +.tradeband {color: #5C16C6; font-family: Georgia, Verdana, sans-serif;} .singing {font-family: "Trebuchet MS", cursive, sans-serif; font-style: italic;} diff --git a/code/modules/goonchat/browserassets/css/styles_template.css b/code/modules/goonchat/browserassets/css/styles_template.css index d9e035b4102..2a13df5ddbe 100644 --- a/code/modules/goonchat/browserassets/css/styles_template.css +++ b/code/modules/goonchat/browserassets/css/styles_template.css @@ -332,6 +332,8 @@ h1.alert, h2.alert {color: #000080;} .yassa {color: #400987;} .delvahhi {color: #5E2612; font-weight: bold;} .siiktau {color: #A52A2A;} +.freespeak {color: #FF4500; font-family: "Trebuchet MS", cursive, sans-serif;} +.tradeband {color: #5C16C6; font-family: Georgia, Verdana, sans-serif;} .interface {color: #750e75;} diff --git a/code/modules/mob/language/generic.dm b/code/modules/mob/language/generic.dm index fff5d9e0510..7be04cc94c5 100644 --- a/code/modules/mob/language/generic.dm +++ b/code/modules/mob/language/generic.dm @@ -40,7 +40,7 @@ desc = "Descended from latin and romance languages of old Earth, Tradeband remains the main tongue of the upper class of humanity. The language sounds elegant and well structured to most ears. It remains in popular use with traders, diplomats, and those seeking to hold onto a piece of a romantic past." speech_verb = list("enunciates") sing_verb = list("performs") - colour = "say_quote" + colour = "tradeband" written_style = "tradeband" key = "2" flags = TCOMSSIM @@ -60,7 +60,7 @@ desc = "A language of renegades and frontiersmen descending from various languages from Earth like Hindi combined into a multi-rooted jumble that sounds incoherent or even barbarian to non-native speakers. This language is the only common cultural identity for humans in the frontier. Speaking this language in itself boldly declares the speaker a free spirit. Often called 'Gutter' by Alliance citizens." speech_verb = list("says") sing_verb = list("croons") - colour = "rough" + colour = "freespeak" written_style = "freespeak" key = "3" flags = TCOMSSIM diff --git a/code/stylesheet.dm b/code/stylesheet.dm index 9065e4f0632..82ed522058e 100644 --- a/code/stylesheet.dm +++ b/code/stylesheet.dm @@ -105,6 +105,8 @@ h1.alert, h2.alert {color: #000000;} .yassa {color: #400987;} .delvahhi {color: #5E2612; font-weight: bold;} .siiktau {color: #A52A2A;} +.freespeak {color: #FF4500; font-family: "Trebuchet MS", cursive, sans-serif;} +.tradeband {color: #5C16C6; font-family: Georgia, Verdana, sans-serif;} .interface {color: #330033;} diff --git a/html/changelogs/omicega-colourtime.yml b/html/changelogs/omicega-colourtime.yml new file mode 100644 index 00000000000..4f51b72809f --- /dev/null +++ b/html/changelogs/omicega-colourtime.yml @@ -0,0 +1,41 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +# balance +# admin +# backend +# security +# refactor +################################# + +# Your name. +author: Omicega + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - tweak: "Freespeak and Tradeband now have language colours, much like Sol Common. Very nice and cool!"