-
如题,假如我想通过自定义CSS样式修改热力图颜色,该如何修改? |
Beta Was this translation helpful? Give feedback.
Answered by
Wujiao233
Mar 7, 2023
Replies: 2 comments 1 reply
-
Try this .stat-day-l1-bg{
background-color: rgba(255, 208, 243, 1) !important
}
.stat-day-l2-bg{
background-color: rgba(255, 150, 228, 1) !important
}
.stat-day-l3-bg{
background-color: rgba(255, 85, 212, 1) !important
}
.stat-day-l4-bg{
background-color: rgba(190, 0, 141, 1) !important
} just for example, this color scheme is not good... |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
Juskinbo
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Try this
just for example, this color scheme is not good...