Skip to content

Commit

Permalink
Update Classifcation Color Codes
Browse files Browse the repository at this point in the history
Fix classification color codes
  • Loading branch information
fcaviggia committed Sep 17, 2017
1 parent 6803e6e commit ef5e7f7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions config/hardening/menu.py
Original file line number Diff line number Diff line change
Expand Up @@ -1023,22 +1023,22 @@ def apply_configuration(self,args):
f.write('bgcolor = "#007A33"\n')
elif int(self.system_classification.get_active()) == 2:
f.write('fgcolor = "#FFFFFF"\n')
f.write('bgcolor = "#007A33"\n')
f.write('bgcolor = "#0033A0"\n')
elif int(self.system_classification.get_active()) == 3:
f.write('fgcolor = "#FFFFFF"\n')
f.write('bgcolor = "#0033A0"\n')
f.write('bgcolor = "#C8102E"\n')
elif int(self.system_classification.get_active()) == 4:
f.write('fgcolor = "#FFFFFF"\n')
f.write('bgcolor = "#C8102E"\n')
f.write('bgcolor = "#FF671F"\n')
elif int(self.system_classification.get_active()) == 5:
f.write('fgcolor = "#FFFFF"\n')
f.write('bgcolor = "#FF671F"\n')
f.write('bgcolor = "#F7EA48"\n')
elif int(self.system_classification.get_active()) == 6:
f.write('fgcolor = "#000000"\n')
f.write('bgcolor = "#F7EA48"\n')
else:
f.write('fgcolor = "#000000"\n')
f.write('bgcolor = "#F7EA48"\n')
f.write('fgcolor = "#FFFFFF"\n')
f.write('bgcolor = "#007A33"\n')
f.close()

# Write Kickstart Configuration
Expand Down

0 comments on commit ef5e7f7

Please sign in to comment.