From c89c470aecc9755b5e8393b6b10f3d261eeb88df Mon Sep 17 00:00:00 2001 From: ful1e5 <24286590+KaizIqbal@users.noreply.github.com> Date: Mon, 17 Aug 2020 11:30:16 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=A1=20Code=20Reduce?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/round/src/config.ts | 26 ++++++++++++-------------- 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/packages/round/src/config.ts b/packages/round/src/config.ts index dcaa8442..c0b5676a 100644 --- a/packages/round/src/config.ts +++ b/packages/round/src/config.ts @@ -23,22 +23,25 @@ const watchColors = { color4: green // top-left shape color }; -// --------------------------------------- Schemes🌈 +// --------------------------------------- Custimized Corner Colors (Bibata Style) 🚀 +const customize = { + "top_right_corner.svg": { base: red }, + "bottom_right_corner.svg": { base: yellow }, + "bottom_left_corner.svg": { base: green }, + "top_left_corner.svg": { base: blue } +}; + +// --------------------------------------- Schemes🌈 const colorSchemes: ColorSchema = { Ice: { base: black, outline: white, watch: { - background: black, + background: white, ...watchColors }, - customize: { - "top_right_corner.svg": { base: red }, - "bottom_right_corner.svg": { base: yellow }, - "bottom_left_corner.svg": { base: green }, - "top_left_corner.svg": { base: blue } - } + customize }, Classic: { base: black, @@ -47,12 +50,7 @@ const colorSchemes: ColorSchema = { background: black, ...watchColors }, - customize: { - "top_right_corner.svg": { base: red }, - "bottom_right_corner.svg": { base: yellow }, - "bottom_left_corner.svg": { base: green }, - "top_left_corner.svg": { base: blue } - } + customize } };