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

Signal

Last updated at 2025-03-17 00:03:02.198467 +0000 +0000

Description

A theme that vaguely looks like the Signal desktop app

Previews

Preview image #1 Preview image #2

Code

To use this theme, paste this into your custom CSS:

@import url("https://css.gomuks.app/theme/signal.css");

Full CSS:

:root {
    --space-list-background-overlay: rgba(0,0,0,0);
    --room-list-background-overlay: rgba(0,0,0,0);
    --room-list-background: #F0F0F0;
    --composer-background-color: #E9E9E9;
    --primary-background-color: #FEFEFE;
}

@media (prefers-color-scheme: dark) {
    :root {
        --room-list-background: #2e2e2e;
        --primary-background-color: #111111;
        --composer-background-color: #3B3B3B;
    }
}

input.toggle {
    --enabled-color: #1A60EE;
}

.room-view {
    background: var(--primary-background-color)
}