Migrate to bulma-css-variables and introduce dark mode #954

Merged
konrad merged 72 commits from adrinux/frontend:bulma-css-variables into main 2021-11-22 21:12:55 +00:00
Showing only changes of commit 1d93bafb2b - Show all commits

View File

@ -1,10 +1,3 @@
$white: #fff;
$black: hsl(0, 0%, 4%) !default;
$orange: #ff851b;
$green: #00db60;
$red: #ff4136;
$blue: #1973ff;
$primary: $blue;
$info-invert: $white;
adrinux marked this conversation as resolved Outdated

Might make sense to add a comment here why this is still defined as hex

Might make sense to add a comment here _why_ this is still defined as hex

Doesn't appear to be used in vikunja code and is a duplicate of the var declared by bulma-css-variables so I removed it instead aff7a1f2ea

Doesn't appear to be used in vikunja code and is a duplicate of the var declared by bulma-css-variables so I removed it instead https://kolaente.dev/adrinux/frontend/commit/aff7a1f2eadc75b690856ff2b2603a4897588209
@ -16,10 +9,10 @@ $pagination-current-border: $primary;
$navbar-item-active-color: $primary;
$dropdown-content-shadow: none;
$dropdown-item-hover-background-color: $grey-100;
$dropdown-item-hover-background-color: var(--grey-100);
$bulmaswatch-import-font: false !default;
$light-background: $grey-100;
$light-background: var(--grey-100);
$transition-duration: 150ms;
$transition: $transition-duration ease;