mirror of
https://github.com/timberjoegithub/grafana-statusmap.git
synced 2026-07-21 23:42:03 +00:00
- fix linter warnings - use yarn: remove Gruntfile.js and package-lock.json ++
15 lines
440 B
JavaScript
15 lines
440 B
JavaScript
import colors from "../colors";
|
|
import ramp from "../ramp";
|
|
|
|
export var scheme = new Array(3).concat(
|
|
"fee0d2fc9272de2d26",
|
|
"fee5d9fcae91fb6a4acb181d",
|
|
"fee5d9fcae91fb6a4ade2d26a50f15",
|
|
"fee5d9fcbba1fc9272fb6a4ade2d26a50f15",
|
|
"fee5d9fcbba1fc9272fb6a4aef3b2ccb181d99000d",
|
|
"fff5f0fee0d2fcbba1fc9272fb6a4aef3b2ccb181d99000d",
|
|
"fff5f0fee0d2fcbba1fc9272fb6a4aef3b2ccb181da50f1567000d"
|
|
).map(colors);
|
|
|
|
export default ramp(scheme);
|