+ style = models.CharField(
+ _('style'), max_length=255, blank=True,
+ choices=STYLES,
+ help_text=_('Affects blackout.')
+ )
+ smallfont = models.BooleanField(_('small font'), default=False)
+ text_color = models.CharField(max_length=10, blank=True)
+ background_color = models.CharField(max_length=10, blank=True)