summaryrefslogtreecommitdiffstats
path: root/palettes.gd
diff options
context:
space:
mode:
Diffstat (limited to 'palettes.gd')
-rw-r--r--palettes.gd17
1 files changed, 17 insertions, 0 deletions
diff --git a/palettes.gd b/palettes.gd
new file mode 100644
index 0000000..80591e6
--- /dev/null
+++ b/palettes.gd
@@ -0,0 +1,17 @@
+class_name Palettes
+extends Node
+
+const BREWER_VIRIDIS = [
+ Color("#000000"),
+ Color("#402859"),
+ Color("#353763"),
+ Color("#275f77"),
+ Color("#388771"),
+ Color("#5a9e5c"),
+ Color("#ffea63"),
+ Color("#d89544"),
+ Color("#8d844a"),
+ Color("#bcb26f"),
+ Color("#ffe5bf"),
+ Color("#ffffff"),
+]