vrifox/gitea-theme
Archived
1
0
Fork 0
This repository has been archived on 2022-09-28. You can view files and clone it, but cannot push or open issues or pull requests.
gitea-theme/scss/import/include.scss
2020-10-30 18:05:31 +01:00

54 lines
1.1 KiB
SCSS

@mixin contribution-heatmap {
div {
h4.total-contributions {}
svg.vch__wrapper {
g.vch__months__labels__wrapper {
text.vch__month__label {
fill: $white-dark;
}
}
g.vch__days__labels__wrapper {
text.vch__day__label {
fill: $white-dark;
}
}
g.vch__legend__wrapper {
text {
fill: $white-dark;
}
rect {
@include contribution-heatmap-colors;
}
}
g.vch__year__wrapper {
g.vch__month__wrapper {
rect.vch__day__square {
@include contribution-heatmap-colors;
}
}
}
}
}
}
@mixin contribution-heatmap-colors {
&[style*="fill: rgb(244, 244, 244);"] {
fill: $bg50 !important;
}
&[style*="fill: rgb(216, 239, 191);"] {
fill: $bg60 !important;
}
&[style*="fill: rgb(159, 219, 129);"] {
fill: $bg70 !important;
}
&[style*="fill: rgb(102, 199, 75);"] {
fill: $bg80 !important;
}
&[style*="fill: rgb(96, 153, 38);"] {
fill: $red-dark !important;
}
&[style*="fill: rgb(2, 89, 0);"] {
fill: $red !important;
}
}