From 9df7c84c56225188d6adb2b95fca31de08664f42 Mon Sep 17 00:00:00 2001 From: matejcik Date: Tue, 2 Jun 2020 11:29:53 +0200 Subject: [PATCH] core/ui: lower lockscreen brightness --- core/src/trezor/ui/style.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/trezor/ui/style.py b/core/src/trezor/ui/style.py index 363898605..bc63e514c 100644 --- a/core/src/trezor/ui/style.py +++ b/core/src/trezor/ui/style.py @@ -7,7 +7,7 @@ RADIUS = const(2) # backlight brightness BACKLIGHT_NORMAL = const(150) -BACKLIGHT_LOW = const(70) +BACKLIGHT_LOW = const(45) BACKLIGHT_DIM = const(5) BACKLIGHT_NONE = const(2) BACKLIGHT_MAX = const(255)