Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Night Mode - User Interface #2031

Open
benstaf opened this issue Sep 3, 2024 · 2 comments
Open

Night Mode - User Interface #2031

benstaf opened this issue Sep 3, 2024 · 2 comments
Labels
enhancement New feature or request

Comments

@benstaf
Copy link

benstaf commented Sep 3, 2024

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 benstaf added the enhancement New feature or request label Sep 3, 2024
@knadh
Copy link
Owner

knadh commented Sep 4, 2024

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

@MaximilianKohler
Copy link
Contributor

Related: #429

The screenshots here #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;
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

3 participants