Skip to content

Commit

Permalink
[FEATURE] Changed transparency factor in dark theme
Browse files Browse the repository at this point in the history
  • Loading branch information
hasherezade committed Dec 3, 2020
1 parent 1e4e986 commit d3f5458
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions ifl.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,10 @@

VERSION_INFO = f"IFL v{__VERSION__} - check for updates: https://github.com/hasherezade/ida_ifl"

transp = 150
light_theme = [ QtGui.QColor(173, 216, 230, transp), QtGui.QColor(255, 165, 0, transp), QtGui.QColor(240, 230, 140, transp) ]
dark_theme = [ QtGui.QColor(0, 0, 255, transp), QtGui.QColor(255, 69, 0, transp), QtGui.QColor(0, 0, 0, transp) ]
transp_l = 150
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 = 50
dark_theme = [ QtGui.QColor(0, 0, 255, transp_d), QtGui.QColor(255, 69, 0, transp_d), QtGui.QColor(0, 0, 0, transp_d) ]

COLOR_HILIGHT_FUNC = 0xFFDDBB # BBGGRR
COLOR_HILIGHT_REFTO = 0xBBFFBB
Expand Down

0 comments on commit d3f5458

Please sign in to comment.