From 251c2be5e646bc5a0eed4eadf24db5bdebc1c9ed Mon Sep 17 00:00:00 2001 From: hasherezade Date: Fri, 8 Jan 2021 17:15:43 +0100 Subject: [PATCH] [REFACT] Increased transparency in light mode --- ifl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ifl.py b/ifl.py index b764ac6..0a6a108 100644 --- a/ifl.py +++ b/ifl.py @@ -36,7 +36,7 @@ VERSION_INFO = f"IFL v{__VERSION__} - check for updates: https://github.com/hasherezade/ida_ifl" -transp_l = 255 +transp_l = 230 light_theme = [ QtGui.QColor(173, 216, 230, transp_l), QtGui.QColor(255, 165, 0, transp_l), QtGui.QColor(240, 230, 140, transp_l) ] transp_d = 70 dark_theme = [ QtGui.QColor(173, 216, 240, transp_d), QtGui.QColor(255, 0, 255, transp_d), QtGui.QColor(255, 130, 130, transp_d) ]