From d27e61a1f7e6af47bb17c161f5eaff11219edf25 Mon Sep 17 00:00:00 2001 From: Roman Hotsiy Date: Tue, 20 Mar 2018 16:18:25 +0200 Subject: [PATCH] fix: make field type color more dark (closes #439) --- src/theme.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/theme.ts b/src/theme.ts index 0729291a..5b498d0f 100644 --- a/src/theme.ts +++ b/src/theme.ts @@ -29,7 +29,7 @@ const defaultTheme: ThemeInterface = { schemaView: { linesColor: theme => lighten(0.25, desaturate(0.35, theme.colors.main)), defaultDetailsWidth: '75%', - typeNameColor: theme => transparentize(0.8, theme.colors.text), + typeNameColor: theme => transparentize(0.2, theme.colors.text), typeTitleColor: theme => theme.schemaView.typeNameColor, requireLabelColor: theme => theme.colors.error, },