Set default color style closer to Evennia default

This commit is contained in:
Griatch 2019-04-16 23:31:45 +02:00
parent 9b2604f322
commit 9da63f4baf

View file

@ -502,16 +502,16 @@ TYPECLASS_AGGRESSIVE_CACHE = True
# ("Description", 'Option Class name in evennia.OPTIONS_CLASSES', 'Default Value') # ("Description", 'Option Class name in evennia.OPTIONS_CLASSES', 'Default Value')
OPTIONS_ACCOUNT_DEFAULT = { OPTIONS_ACCOUNT_DEFAULT = {
'border_color': ('Headers, footers, table borders, etc.', 'Color', 'M'), 'border_color': ('Headers, footers, table borders, etc.', 'Color', 'n'),
'header_star_color': ('* inside Header lines.', 'Color', 'm'), 'header_star_color': ('* inside Header lines.', 'Color', 'n'),
'header_text_color': ('Text inside Header lines.', 'Color', 'w'), 'header_text_color': ('Text inside Header lines.', 'Color', 'w'),
'footer_text_color': ('Text inside Footer Lines.', 'Color', 'w'), 'footer_text_color': ('Text inside Footer Lines.', 'Color', 'n'),
'column_names_color': ('Table column header text.', 'Color', 'G'), 'column_names_color': ('Table column header text.', 'Color', 'w'),
'header_fill': ('Fill for Header lines.', 'Text', '='), 'header_fill': ('Fill for Header lines.', 'Text', '='),
'separator_fill': ('Fill for Separator Lines.', 'Text', '-'), 'separator_fill': ('Fill for Separator Lines.', 'Text', '-'),
'footer_fill': ('Fill for Footer Lines.', 'Text', '='), 'footer_fill': ('Fill for Footer Lines.', 'Text', '='),
'help_category_color': ('Help category names.', 'Color', 'g'), 'help_category_color': ('Help category names.', 'Color', 'n'),
'help_entry_color': ('Help entry names.', 'Color', 'c'), 'help_entry_color': ('Help entry names.', 'Color', 'n'),
'timezone': ('Timezone for dates. @tz for a list.', 'Timezone', 'UTC') 'timezone': ('Timezone for dates. @tz for a list.', 'Timezone', 'UTC')
} }
# Modules holding Option classes, responsible for serializing the option and # Modules holding Option classes, responsible for serializing the option and