Last active
April 17, 2022 23:08
-
-
Save TehPeGaSuS/e099ee1879af3d381de955d88e2c8a36 to your computer and use it in GitHub Desktop.
Quassel theme tweaks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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