Skip to content
Snippets Groups Projects
Commit a7958759 authored by nkour's avatar nkour
Browse files

name the colors with their names

parent c9e30fd6
No related branches found
No related tags found
No related merge requests found
......@@ -87,7 +87,7 @@ def __init__(self, account):
tag.set_property('weight', pango.WEIGHT_BOLD)
tag = buffer.create_tag('time_sometimes')
tag.set_property('foreground', '#9e9e9e')
tag.set_property('foreground', 'grey')
tag.set_property('scale', pango.SCALE_SMALL)
tag.set_property('justification', gtk.JUSTIFY_CENTER)
......@@ -99,12 +99,12 @@ def __init__(self, account):
tag.set_property('foreground', color)
tag = buffer.create_tag('url')
tag.set_property('foreground', '#0000ff')
tag.set_property('foreground', 'blue')
tag.set_property('underline', pango.UNDERLINE_SINGLE)
tag.connect('event', self.hyperlink_handler, 'url')
tag = buffer.create_tag('mail')
tag.set_property('foreground', '#0000ff')
tag.set_property('foreground', 'blue')
tag.set_property('underline', pango.UNDERLINE_SINGLE)
tag.connect('event', self.hyperlink_handler, 'mail')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment