this repo has no description
1/*
2 * react-calendar-heatmap styles
3 *
4 * All of the styles in this file are optional and configurable!
5 * The github and gitlab color scales are provided for reference.
6 */
7
8.react-calendar-heatmap text {
9 font-size: 10px;
10 fill: #aaa;
11}
12
13.react-calendar-heatmap .react-calendar-heatmap-small-text {
14 font-size: 5px;
15}
16
17.react-calendar-heatmap rect:hover {
18 stroke: #555;
19 stroke-width: 1px;
20}
21
22/*
23 * Default color scale
24 */
25
26.react-calendar-heatmap .color-empty {
27 fill: #eeeeee;
28}
29
30.react-calendar-heatmap .color-filled {
31 fill: #8cc665;
32}
33
34/*
35 * Github color scale
36 */
37
38.react-calendar-heatmap .color-github-0 {
39 fill: #eeeeee;
40}
41.react-calendar-heatmap .color-github-1 {
42 fill: #d6e685;
43}
44.react-calendar-heatmap .color-github-2 {
45 fill: #8cc665;
46}
47.react-calendar-heatmap .color-github-3 {
48 fill: #44a340;
49}
50.react-calendar-heatmap .color-github-4 {
51 fill: #1e6823;
52}
53
54/*
55 * Gitlab color scale
56 */
57
58.react-calendar-heatmap .color-gitlab-0 {
59 fill: #ededed;
60}
61.react-calendar-heatmap .color-gitlab-1 {
62 fill: #acd5f2;
63}
64.react-calendar-heatmap .color-gitlab-2 {
65 fill: #7fa8d1;
66}
67.react-calendar-heatmap .color-gitlab-3 {
68 fill: #49729b;
69}
70.react-calendar-heatmap .color-gitlab-4 {
71 fill: #254e77;
72}