diff --git a/src/seedsigner/gui/components.py b/src/seedsigner/gui/components.py index 9193e451..02a090fc 100644 --- a/src/seedsigner/gui/components.py +++ b/src/seedsigner/gui/components.py @@ -23,17 +23,18 @@ class GUIConstants: COMPONENT_PADDING = 8 LIST_ITEM_PADDING = 4 - BACKGROUND_COLOR = "black" + BACKGROUND_COLOR = "#000000" + INACTIVE_COLOR = "#414141" + ACCENT_COLOR = "#FF9F0A" # Active Color WARNING_COLOR = "#FFD60A" - DIRE_WARNING_COLOR = "#FF453A" + DIRE_WARNING_COLOR = "#FF5700" + ERROR_COLOR = "#FF1B0A" SUCCESS_COLOR = "#30D158" - INFO_COLOR = "#0084FF" - ACCENT_COLOR = "#FF9F0A" + INFO_COLOR = "#409CFF" BITCOIN_ORANGE = "#FF9416" TESTNET_COLOR = "#00F100" REGTEST_COLOR = "#00CAF1" GREEN_INDICATOR_COLOR = "#00FF00" - INACTIVE_COLOR = "#414141" ICON_FONT_NAME__FONT_AWESOME = "Font_Awesome_6_Free-Solid-900" ICON_FONT_NAME__SEEDSIGNER = "seedsigner-icons" @@ -126,24 +127,30 @@ class SeedSignerIconConstants: RESTART = "\ue911" # Messaging icons - ERROR = "\ue912" - SUCCESS = "\ue913" - WARNING = "\ue914" + INFO = "\ue912" + ERROR = "\ue913" + SUCCESS = "\ue914" + WARNING = "\ue915" # Informational icons - ADDRESS = "\ue915" - CHANGE = "\ue916" - DERIVATION = "\ue917" - FEE = "\ue918" - FINGERPRINT = "\ue919" - PASSPHRASE = "\ue91a" + ADDRESS = "\ue916" + CHANGE = "\ue917" + DERIVATION = "\ue918" + FEE = "\ue919" + FINGERPRINT = "\ue91a" + PASSPHRASE = "\ue91b" # Misc icons - BITCOIN = "\ue91b" - BITCOIN_ALT = "\ue91c" - BRIGHTNESS = "\ue91d" - MICROSD = "\ue91e" - QRCODE = "\ue91f" + BITCOIN = "\ue91c" + BITCOIN_ALT = "\ue91d" + BRIGHTNESS = "\ue91e" + MICROSD = "\ue91f" + QRCODE = "\ue920" + SIGN = "\ue921" + + # Input icons + DELETE = "\ue922" + SPACE = "\ue923" MIN_VALUE = SCAN MAX_VALUE = QRCODE diff --git a/src/seedsigner/gui/screens/psbt_screens.py b/src/seedsigner/gui/screens/psbt_screens.py index 1a6b6506..5265730c 100644 --- a/src/seedsigner/gui/screens/psbt_screens.py +++ b/src/seedsigner/gui/screens/psbt_screens.py @@ -743,7 +743,7 @@ def __post_init__(self): super().__post_init__() icon = Icon( - icon_name=FontAwesomeIconConstants.PAPER_PLANE, + icon_name=SeedSignerIconConstants.SIGN, icon_color=GUIConstants.INFO_COLOR, icon_size=GUIConstants.ICON_LARGE_BUTTON_SIZE, screen_y=self.top_nav.height + GUIConstants.COMPONENT_PADDING diff --git a/src/seedsigner/resources/fonts/seedsigner-icons.otf b/src/seedsigner/resources/fonts/seedsigner-icons.otf index ef4292b2..3848d912 100644 Binary files a/src/seedsigner/resources/fonts/seedsigner-icons.otf and b/src/seedsigner/resources/fonts/seedsigner-icons.otf differ