mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-07-02 17:18:31 +00:00
* Added: Chat actions for modding and un-modding users. * Fixed: Settings not being removed when an add-on is unloaded. * Changed: Add a few new icons. * API Added: Add support for header backgrounds for rich token documents. * API Added: Methods for adding/updating emotes to and removing emotes from an emote set. * API Added: Context flag to disable FFZ's chat message processing. * API Changed: Add-ons can now be hot reloaded for development purposes. This feature may be somewhat unstable.
54 lines
851 B
SCSS
54 lines
851 B
SCSS
.ffz-ct--obj-open,
|
|
.ffz-ct--obj-close {
|
|
&[depth="1"], &[depth="5"], &[depth="9"] {
|
|
color: var(--color-text-alt-2);
|
|
}
|
|
|
|
&[depth="2"], &[depth="6"], &[depth="10"] {
|
|
color: var(--color-text-error);
|
|
}
|
|
|
|
&[depth="3"], &[depth="7"], &[depth="11"] {
|
|
color: var(--color-text-prime);
|
|
}
|
|
|
|
&[depth="4"], &[depth="8"] {
|
|
color: var(--color-text-success);
|
|
}
|
|
}
|
|
|
|
|
|
.ffz-ct--obj-sep,
|
|
.ffz-ct--obj-key-sep,
|
|
|
|
.ffz-ct--params,
|
|
.ffz-ct--prefix,
|
|
.ffz-ct--tags {
|
|
color: var(--color-text-alt-2);
|
|
}
|
|
|
|
.ffz-ct--obj-key,
|
|
.ffz-ct--command,
|
|
.ffz-ct--tag {
|
|
color: var(--color-text-warn);
|
|
}
|
|
|
|
.ffz-ct--channel,
|
|
.ffz-ct--user {
|
|
color: var(--color-text-success);
|
|
}
|
|
|
|
.ffz-ct--literal,
|
|
.ffz-ct--param {
|
|
color: var(--color-text-prime);
|
|
}
|
|
|
|
.ffz-ct--string,
|
|
.ffz-ct--tag-value {
|
|
color: var(--color-text-base);
|
|
}
|
|
|
|
.ffz-ct--tags,
|
|
.ffz-ct--params {
|
|
overflow-wrap: anywhere;
|
|
}
|