listmonk icon indicating copy to clipboard operation
listmonk copied to clipboard

Night Mode - User Interface

Open benstaf opened this issue 1 year ago • 2 comments

I would like to have a Dark Mode, because the screen is too white

The ideal would be to have a Night/Day Switch

benstaf avatar Sep 03 '24 19:09 benstaf

PRs for this are welcome if anyone is interested in picking up this task. I wouldn't have time to work on this personally.

knadh avatar Sep 04 '24 15:09 knadh

Related: https://github.com/knadh/listmonk/issues/429

The screenshots here https://github.com/knadh/listmonk/pull/438 look pretty nice, but it wasn't working fully for me.

I played around with the CSS under Settings -> Appearance, but I found it easier to just use the Dark Reader addon. https://darkreader.org/

I still use some CSS there though:

Admin:

.tag.list {
  color: rgb(23, 23, 23) !important;
  background-color: rgb(235, 198, 240) !important;

}

.tag:not(body) {
  font-size: 0.9em !important;
  color: rgb(0, 0, 0) !important;
}

Public:

body {
  background: #ddd;
}

.header {
  border-bottom: 1px solid #aaa;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

.wrap {
  background: #d5d5d5;
  padding: 40px;
  box-shadow: 2px 2px 0 #aaa;
  border: 1px solid #aaa;
}

.button {
  background: #023582;
}

footer a {
  color: #7c7c7c;
}
footer a:hover {
  color: #111;
}

MaximilianKohler avatar Sep 04 '24 15:09 MaximilianKohler

This issue has been marked 'stale' after 90 days of inactivity. If there is no further activity, it will be closed in 7 days.

github-actions[bot] avatar Dec 04 '24 02:12 github-actions[bot]