Solves some stuff missing from the new chat (#67)

This commit is contained in:
SandPoot
2020-09-13 16:20:01 -03:00
committed by GitHub
parent 8e7cd14c48
commit 1382e5ebb3
6 changed files with 36 additions and 2 deletions
+2
View File
@@ -94,6 +94,8 @@ h1.alert, h2.alert {color: #000000;}
.suicide {color: #ff5050; font-style: italic;}
.green {color: #03ff39;}
.nicegreen {color: #14a833;}
.userlove {color: #FF1493; font-style: italic; font-weight: bold; text-shadow: 0 0 6px #ff6dbc;}
.love {color: #ff006a; font-style: italic; text-shadow: 0 0 6px #ff6d6d;}
.shadowling {color: #3b2769;}
.cult {color: #960000;}
.cultlarge {color: #960000; font-weight: bold; font-size: 3;}
@@ -84,6 +84,12 @@ export const MESSAGE_TYPES = [
description: 'Urist McTraitor has stabbed you with a knife!',
selector: '.filter_combat, .danger',
},
{
type: 'lovetype',
name: 'Lewd messages',
description: 'You came!',
selector: '.userlove, .love',
},
{
type: 'unknown',
name: 'Unsorted',
@@ -530,6 +530,19 @@ em {
color: #059223;
}
.userlove {
color: #FF1493;
font-style: italic;
font-weight: bold;
text-shadow: 0 0 6px #ff6dbc;
}
.love {
color: #ff006a;
font-style: italic;
text-shadow: 0 0 6px #ff6d6d;
}
.cult {
color: #aa1c1c;
}
@@ -552,6 +552,19 @@ h1.alert, h2.alert {
color: #14a833;
}
.userlove {
color: #FF1493;
font-style: italic;
font-weight: bold;
text-shadow: 0 0 6px #ff6dbc;
}
.love {
color: #ff006a;
font-style: italic;
text-shadow: 0 0 6px #ff6d6d;
}
.cult {
color: #960000;
}
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long