mirror of
https://github.com/zsviczian/obsidian-excalidraw-plugin.git
synced 2025-08-06 05:46:28 +00:00
45 lines
474 B
CSS
45 lines
474 B
CSS
text {
|
|
fill: #aaa;
|
|
}
|
|
|
|
react-calendar-heatmap-small-text {
|
|
font-size: 5px;
|
|
}
|
|
|
|
rect:hover {
|
|
stroke: #555;
|
|
stroke-width: 0.5px;
|
|
}
|
|
|
|
/*
|
|
* Default color scale
|
|
*/
|
|
|
|
.color-empty {
|
|
fill: #eeeeee;
|
|
}
|
|
|
|
.color-filled {
|
|
fill: #8cc665;
|
|
}
|
|
|
|
/*
|
|
* Github color scale
|
|
*/
|
|
|
|
.color-github-0 {
|
|
fill: #eeeeee;
|
|
}
|
|
.color-github-1 {
|
|
fill: #d6e685;
|
|
}
|
|
.color-github-2 {
|
|
fill: #8cc665;
|
|
}
|
|
.color-github-3 {
|
|
fill: #44a340;
|
|
}
|
|
.color-github-4 {
|
|
fill: #1e6823;
|
|
}
|