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(
|
|
"e5f5f999d8c92ca25f",
|
|
"edf8fbb2e2e266c2a4238b45",
|
|
"edf8fbb2e2e266c2a42ca25f006d2c",
|
|
"edf8fbccece699d8c966c2a42ca25f006d2c",
|
|
"edf8fbccece699d8c966c2a441ae76238b45005824",
|
|
"f7fcfde5f5f9ccece699d8c966c2a441ae76238b45005824",
|
|
"f7fcfde5f5f9ccece699d8c966c2a441ae76238b45006d2c00441b"
|
|
).map(colors);
|
|
|
|
export default ramp(scheme);
|