/usr/share/pyshared/Editeur/basestyle.py is in eficas 6.4.0-1-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | class STYLE:
background='gray90'
foreground='black'
entry_background='white'
list_background='white'
list_select_background='#00008b'
list_select_foreground='grey'
tooltip_background="yellow"
standard = ("Helvetica",12)
standard_italique = ("Helvetica",12,'italic')
standard_gras = ("Helvetica",12,'bold')
standard_gras_souligne = ("Helvetica",12,'bold','underline')
canvas = ('Helvetica',10)
canvas_italique = ('Helvetica',10,'italic')
canvas_gras = ("Helvetica",10,'bold')
canvas_gras_italique = ("Helvetica",12,'bold','italic')
standard12 = ("Helvetica",14)
standard12_gras = ("Helvetica",14,'bold')
standard12_gras_italique = ( "Helvetica",14,'bold','italic')
standardcourier10 = ("Courier",14)
statusfont = ("Helvetica",16)
style=STYLE()
|