mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-30 19:08:10 -05:00
UX: coldmap now progressively dimmer primary color
This commit is contained in:
parent
be079ffcc6
commit
8c9cee6fe3
1 changed files with 6 additions and 3 deletions
|
@ -65,14 +65,17 @@ body {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// the default for table cells in topic list
|
||||||
|
// is scale-color($primary, $lightness: 50%)
|
||||||
|
// numbers get dimmer as they get colder
|
||||||
.coldmap-high {
|
.coldmap-high {
|
||||||
color: #91CDF5 !important;
|
color: scale-color($primary, $lightness: 80%) !important;
|
||||||
}
|
}
|
||||||
.coldmap-med {
|
.coldmap-med {
|
||||||
color: #91CDF5 !important;
|
color: scale-color($primary, $lightness: 70%) !important;
|
||||||
}
|
}
|
||||||
.coldmap-low {
|
.coldmap-low {
|
||||||
color: #91AFD2 !important;
|
color: scale-color($primary, $lightness: 60%) !important;
|
||||||
}
|
}
|
||||||
.heatmap-high {
|
.heatmap-high {
|
||||||
color: #fe7a15 !important;
|
color: #fe7a15 !important;
|
||||||
|
|
Loading…
Reference in a new issue