Home To log in, use the button in gomuks web settings.

Theme schildi v2 by [@al0fdf:envs.net]

Rooms with unread messages are show in bold to make them stand out more. Mimics the behaviour of SchildiChat.

Last updated at 2025-06-05 03:44:11.804486 +0000 +0000

Simplified comparison image to include just the room list.

Raw CSS (or without autoupdate) Version history Edit theme
To use the theme, paste this into your custom CSS:
@import url("https://css.gomuks.app/theme/schildi.css");
Preview image #1 Preview image #2
/* When a room has no unread messages, set the room name thickness to be slightly bold */
div.room-entry > div.room-entry-right > div.room-name {
      font-weight: inherit;
}
/* and the message preview text slightly grey. I couldn't find which variable sets the colour of the composer's 'Send a Message' placeholder text, which is why it's hard-coded */
.message-preview {
    color: #5f5f5f;
}


/* When unread messages are in a room, make the room title bold, and message preview black */
.room-entry:has(.room-entry-unreads) .room-entry-right .room-name {
  font-weight: bold;
}
.room-entry:has(.room-entry-unreads) .room-entry-right .message-preview {
  color: var(--text-color);
}