From 9ef4cc702655ea643ce2ffbb3df0633c875e8dd3 Mon Sep 17 00:00:00 2001 From: Rod Kay Date: Sun, 3 Mar 2024 20:27:03 +1100 Subject: [PATCH] opengl.palette: Add 'moonlight' color. --- 3-mid/opengl/source/lean/opengl-palette.ads | 2 ++ 1 file changed, 2 insertions(+) diff --git a/3-mid/opengl/source/lean/opengl-palette.ads b/3-mid/opengl/source/lean/opengl-palette.ads index 2103932..edcac31 100644 --- a/3-mid/opengl/source/lean/opengl-palette.ads +++ b/3-mid/opengl/source/lean/opengl-palette.ads @@ -426,6 +426,7 @@ is Medium_turquoise : constant Color; Midnight_blue : constant Color; Midnight_green : constant Color; + Moonlight : constant Color; Eagle_green : constant Color; Mikado_yellow : constant Color; Mint_green : constant Color; @@ -1034,6 +1035,7 @@ private Medium_turquoise : constant Color := +(72, 209, 204); Midnight_blue : constant Color := +(25, 25, 112); Midnight_green : constant Color := +(0, 73, 83); + Moonlight : constant Color := +(255, 248, 222); Eagle_green : constant Color := +(0, 73, 83); Mikado_yellow : constant Color := +(255, 196, 12); Mint_green : constant Color := +(152, 255, 152);