start work on an irssi-like theme
This commit is contained in:
parent
0f10803c4d
commit
c6318db8c1
1 changed files with 16 additions and 0 deletions
16
data/themes/irssi.py
Normal file
16
data/themes/irssi.py
Normal file
|
@ -0,0 +1,16 @@
|
|||
import poezio.theming
|
||||
|
||||
class IrssiTheme(poezio.theming.Theme):
|
||||
COLOR_INFORMATION_BAR = (6, 4)
|
||||
|
||||
COLOR_TAB_NEW_MESSAGE = (15, 4)
|
||||
COLOR_TAB_CURRENT = (7, 12)
|
||||
COLOR_TAB_HIGHLIGHT = (13, 4)
|
||||
COLOR_TAB_DISCONNECTED = (9, 4)
|
||||
|
||||
COLOR_HIGHLIGHT_NICK = (11, -1, 'b')
|
||||
COLOR_ME_MESSAGE = (15, -1)
|
||||
|
||||
theme = IrssiTheme()
|
||||
|
||||
|
Loading…
Reference in a new issue