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 595a5e8145 - Show all commits

View File

@ -10,13 +10,13 @@
&.dark {
// Even darker shadows for dark mode
--shadow-xs: 0 1px 3px hsla(var(--grey-100-hsl),.12),
0 1px 2px hsla(var(--grey-100-hsl), .24);
--shadow-sm: 0 3px 6px hsla(var(--grey-100-hsl), .12),
0 2px 4px hsla(var(--grey-100-hsl), .10);
--shadow-md: 0 10px 20px hsla(var(--grey-100-hsl), .12),
0 3px 6px hsla(var(--grey-100-hsl), .08);
--shadow-lg: 0 15px 25px hsla(var(--grey-100-hsl), .12),
0 5px 10px hsla(var(--grey-100-hsl), .05);
--shadow-xs: 0 1px 3px var(--white),
0 1px 2px var(--white);
--shadow-sm: 0 3px 6px var(--white),
0 2px 4px var(--white);
--shadow-md: 0 10px 20px var(--white),
0 3px 6px var(--white);
--shadow-lg: 0 15px 25px var(--white),
0 5px 10px var(--white);
}
}