From 6d38ab5ad9bbda92e9d16746aeecbc902f8726ba Mon Sep 17 00:00:00 2001 From: ful1e5 <24286590+ful1e5@users.noreply.github.com> Date: Sat, 22 Aug 2020 10:23:23 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=8C=88=20Bibata=20Amber=20Scheme=20added?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/round/src/color.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/packages/round/src/color.ts b/packages/round/src/color.ts index a05fcea0..37a4bc87 100644 --- a/packages/round/src/color.ts +++ b/packages/round/src/color.ts @@ -17,6 +17,7 @@ const baseKeyColor = "#00FF00"; // green Key const outlineKeyColor = "#0000FF"; // blue Key const black = "#000000"; +const amber = "#FF8300"; const white = "#FFFFFF"; // --------------------------------------- Schemes🌈 @@ -29,6 +30,10 @@ const colorSchemes: ColorSchema = { Classic: { base: black, outline: white + }, + Amber: { + base: amber, + outline: white } };