diff --git a/src/apps/homescreen/layout_homescreen.py b/src/apps/homescreen/layout_homescreen.py index 4e9cdf2381..21b63f62ee 100644 --- a/src/apps/homescreen/layout_homescreen.py +++ b/src/apps/homescreen/layout_homescreen.py @@ -11,11 +11,12 @@ async def swipe_to_rotate(): async def animate_logo(): - icon = res.load('apps/homescreen/res/trezor.toig') + image = res.load('apps/homescreen/res/experiment7.toif') def render(fg): - ui.display.icon(0, 0, icon, fg, ui.BLACK) - await ui.animate_pulse(render, ui.WHITE, ui.GREY, speed=400000) + ui.display.image(0, 0, image) + ui.display.text(52, 220, 'Swipe to rotate', ui.NORMAL, fg, ui.BLACK) + await ui.animate_pulse(render, ui.GREY, ui.DARK_GREY, speed=400000) @unimport diff --git a/src/apps/homescreen/res/experiment1.toif b/src/apps/homescreen/res/experiment1.toif new file mode 100644 index 0000000000..961bd23576 Binary files /dev/null and b/src/apps/homescreen/res/experiment1.toif differ diff --git a/src/apps/homescreen/res/experiment2.toif b/src/apps/homescreen/res/experiment2.toif new file mode 100644 index 0000000000..c808b1312a Binary files /dev/null and b/src/apps/homescreen/res/experiment2.toif differ diff --git a/src/apps/homescreen/res/experiment3.toif b/src/apps/homescreen/res/experiment3.toif new file mode 100644 index 0000000000..7634ef6cb5 Binary files /dev/null and b/src/apps/homescreen/res/experiment3.toif differ diff --git a/src/apps/homescreen/res/experiment7.toif b/src/apps/homescreen/res/experiment7.toif new file mode 100644 index 0000000000..7663b7b75c Binary files /dev/null and b/src/apps/homescreen/res/experiment7.toif differ diff --git a/src/apps/management/layout_reset_device.py b/src/apps/management/layout_reset_device.py index f8a163b277..d0769c8324 100644 --- a/src/apps/management/layout_reset_device.py +++ b/src/apps/management/layout_reset_device.py @@ -85,7 +85,7 @@ async def show_mnemonic_page(page, page_count, mnemonic): if pos > 9: offset += 12 ui.display.text( - 10, top, '%d.' % pos, ui.BOLD, ui.DARK_GREY, ui.BLACK) + 10, top, '%d.' % pos, ui.BOLD, ui.LIGHT_GREEN, ui.BLACK) ui.display.text( 30 + offset, top, '%s' % word, ui.BOLD, ui.WHITE, ui.BLACK) diff --git a/src/trezor/ui/__init__.py b/src/trezor/ui/__init__.py index 45f771e03f..db603b3360 100644 --- a/src/trezor/ui/__init__.py +++ b/src/trezor/ui/__init__.py @@ -35,7 +35,7 @@ GREY = rgbcolor(0x9E, 0x9E, 0x9E) DARK_GREY = rgbcolor(0x3E, 0x3E, 0x3E) BLUE_GRAY = rgbcolor(0x60, 0x7D, 0x8B) BLACK = rgbcolor(0x00, 0x00, 0x00) -WHITE = rgbcolor(0xFF, 0xFF, 0xFF) +WHITE = rgbcolor(0xFA, 0xFA, 0xFA) # password manager palette