Skip to content

Instantly share code, notes, and snippets.

@TehPeGaSuS
Last active April 17, 2022 23:08
Show Gist options
  • Save TehPeGaSuS/e099ee1879af3d381de955d88e2c8a36 to your computer and use it in GitHub Desktop.
Save TehPeGaSuS/e099ee1879af3d381de955d88e2c8a36 to your computer and use it in GitHub Desktop.
Quassel theme tweaks
// For background on your own messages
/* Replace the line
* ChatLine::sender#plain[sender="self"] { foreground: palette(sender-color-self); }
* with the following
*/
ChatLine#plain[sender="self"] {
foreground: palette(sender-color-self);
background: #d9d9d9;
}
/* Replace the following lines
* ChatLine::sender#action[sender="self"] { foreground: palette(sender-color-self); }
* ChatLine::nick#action[sender="self"] { foreground: palette(sender-color-self); }
* with the following
*/
ChatLine#action[sender="self"] {
foreground: palette(sender-color-self);
background: #d9d9d9;
}
// For smoother highlight background
/* Replace
* ChatLine[label="highlight"] {
* foreground: #000000;
* background: #edd400;
* }
* with the following
*/
ChatLine[label="highlight"] {
foreground: #000000;
background: #fff7b3;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment