Skip to content

Commit

Permalink
nicer colors
Browse files Browse the repository at this point in the history
  • Loading branch information
jedie committed Aug 28, 2014
1 parent 9504a0a commit 949fe0b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions basic_editor/highlighting.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ def __init__(self, editor):

basic_parser.CODE_TYPE_CODE: {"foreground":"#222222", "font":bold_font},
basic_parser.CODE_TYPE_DATA: {"foreground":"#ddaaff", "font":bold_font},
basic_parser.CODE_TYPE_STRING: {"foreground":"#aaddee", "font":bold_font},
basic_parser.CODE_TYPE_COMMENT: {"foreground":"#07aa00"},
basic_parser.CODE_TYPE_STRING: {"foreground":"#0000ff"},# , "font":bold_font},
basic_parser.CODE_TYPE_COMMENT: {"foreground":"#00aa00"},
}
for tag, args in self.tagdefs.items():
self.text.tag_configure(tag, **args)
Expand Down Expand Up @@ -123,4 +123,4 @@ def recolorize(self):

def removecolors(self):
for tag in self.tagdefs:
self.text.tag_remove(tag, "1.0", "end")
self.text.tag_remove(tag, "1.0", "end")

0 comments on commit 949fe0b

Please sign in to comment.