From 6807c81f3d5690d50a76e55973e2a8ae468a0f5d Mon Sep 17 00:00:00 2001 From: Michael Czechowski Date: Wed, 23 May 2018 18:00:07 +0200 Subject: [PATCH] feat(env): updated environment variables --- src/environments/environment.prod.ts | 16 +++++++++++++++- src/environments/environment.ts | 10 +++++----- 2 files changed, 20 insertions(+), 6 deletions(-) diff --git a/src/environments/environment.prod.ts b/src/environments/environment.prod.ts index 3612073..7028bed 100644 --- a/src/environments/environment.prod.ts +++ b/src/environments/environment.prod.ts @@ -1,3 +1,17 @@ export const environment = { - production: true + production: true, + guilloche: { + colors: { + start: '#f16363', + end: '#5eb1bd' + } + }, + formDefaults: { + width: 9, + height: 16, + directionStart: 0, + directionEnd: 180, + nodes: 3, + scale: 0.3 + } }; diff --git a/src/environments/environment.ts b/src/environments/environment.ts index f91c313..995d044 100644 --- a/src/environments/environment.ts +++ b/src/environments/environment.ts @@ -11,11 +11,11 @@ export const environment = { } }, formDefaults: { - width: 10, - height: 10, - directionStart: 180, - directionEnd: 270, - nodes: 1, + width: 9, + height: 16, + directionStart: 0, + directionEnd: 180, + nodes: 3, scale: 0.3 } };