This repository has been archived by the owner on Nov 7, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 52
[Feature Request] Dark mode #33
Comments
Okay I hacked something together... Put this into /* background */
body {
background-color: #232323; /* this is vscode's main background color */
}
/* swimlanes */
#vsckb-card-todo,
#vsckb-card-in-progress,
#vsckb-card-testing,
#vsckb-card-done {
border-color: #444;
}
#vsckb-card-todo .card-header,
#vsckb-card-in-progress .card-header,
#vsckb-card-testing .card-header,
#vsckb-card-done .card-header {
background-color: #232323 !important;
color: #fff !important;
padding: 0.3em 1em !important;
}
#vsckb-card-todo .card-body,
#vsckb-card-in-progress .card-body,
#vsckb-card-testing .card-body,
#vsckb-card-done .card-body {
background-color: #232323 !important;
color: #fff !important;
}
#vsckb-card-todo .card-header,
#vsckb-card-in-progress .card-header,
#vsckb-card-testing .card-header,
#vsckb-card-done .card-header {
padding: 0.3em 1em !important;
}
/* cards */
.vsckb-kanban-card {
background-color: #444 !important;
border-color: rgba(44, 143, 157, 0.25) !important;
}
.vsckb-kanban-card:hover {
border-color: rgba(44, 143, 157, 1) !important;
}
.vsckb-kanban-card .vsckb-kanban-card-info {
background-color: #333 !important;
color: #fff !important;
}
.vsckb-kanban-card .vsckb-kanban-card-footer * {
color: #fff !important;
}
.vsckb-kanban-card .vsckb-kanban-card-type {
background-color: rgba(44, 143, 157, 0.75) !important;
} Notes:
I didn't have time to do dark mode for everything, but I did the main part:
Someone else please finish the other items and post the css here. |
lonix1
changed the title
[Feature Request / Discussion] Dark mode
[Feature Request] Dark mode
Mar 16, 2019
@lonix1 The new name for the CSS file is |
I pulled html file out of vscode and used Dark Reader chrome extension to generate dark mode styles. https://gist.github.com/LiprikON2/8c136f68b13b885fb32a21ba986a3663 |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Would be nice to have this extension in dark mode. There is a way to change the UI with css.
Has anyone worked up a decent-looking dark mode stylsheet that can be shared here?
@mkloubert what are the css classes for background, swimlanes, etc.? They are not referenced in the default stylesheet.
The text was updated successfully, but these errors were encountered: