9 lines
238 B
Python
9 lines
238 B
Python
|
|
import colout
|
|
def theme( item ):
|
|
p="([rwxs-])"
|
|
reg="^([d-])"+p*9+"\s.*$"
|
|
colors="blue"+",green"*3+",yellow"*3+",red"*3
|
|
styles="normal"+ ",normal,italic,bold"*3
|
|
return colout.colorup( item, reg, colors, styles, True)
|
|
|