1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-06-19 00:17:51 +02:00

rename color grey to gray

This commit is contained in:
Kelly Brazil
2020-04-03 14:48:19 -07:00
parent 0110078807
commit c0044be7b0

View File

@ -82,13 +82,13 @@ parsers = [
class JcStyle(Style): class JcStyle(Style):
BLUE = '#2c5dcd' BLUE = '#2c5dcd'
GREY = '#4d4d4d' GRAY = '#4d4d4d'
PURPLE = '#5918bb' PURPLE = '#5918bb'
GREEN = '#00cc00' GREEN = '#00cc00'
styles = { styles = {
Name.Tag: 'bold {}'.format(BLUE), # key names Name.Tag: 'bold {}'.format(BLUE), # key names
Keyword: GREY, # true, false, null Keyword: GRAY, # true, false, null
Number: PURPLE, # int, float Number: PURPLE, # int, float
String: GREEN # string String: GREEN # string
} }