Existe-t-il un moyen de changer la couleur d'arrière-plan de python-3.5 IDLE sous Windows 10? J'ai essayé Google et lu des documents, mais je ne trouve pas la réponse. Je ne suis pas sûr que ce soit même possible ...
Pour les arrière-plans de fenêtre de texte, accédez à Options => Préférences IDLE => onglet Surbrillance. Enregistrez le thème intégré (les deux sont les mêmes) en tant que thème personnalisé, avec un nouveau nom. Remplacez l'arrière-plan de chaque élément par un arrière-plan blanc par la couleur souhaitée. Appuyez sur Appliquer ou OK. Vous pouvez également copier ce qui suit dans <HOMEDIR>/.idlerc/config-highlight.cfg
(qui peut déjà exister ou non) et modifier #ffffff
à la couleur désirée.
[Custom Light]
normal-foreground= #000000
normal-background= #ffffff
keyword-foreground= #ff7700
keyword-background= #ffffff
builtin-foreground= #900090
builtin-background= #ffffff
comment-foreground= #dd0000
comment-background= #ffffff
string-foreground= #00aa00
string-background= #ffffff
definition-foreground= #0000ff
definition-background= #ffffff
hilite-foreground= #000000
hilite-background= gray
break-foreground= black
break-background= #ffff55
hit-foreground= #ffffff
hit-background= #000000
error-foreground= #000000
error-background= #ff7777
#cursor (only foreground can be set, restart IDLE)
cursor-foreground= black
#Shell window
stdout-foreground= blue
stdout-background= #ffffff
stderr-foreground= red
stderr-background= #ffffff
console-foreground= #770000
console-background= #ffffff
Nous venons d'ajouter un thème IDLE Dark avec un fond bleu cobalt profond. Pour cela, laissez #002240
tel quel ou changez de couleur sombre.
[Custom Dark]
comment-foreground = #dd0000
console-foreground = #ff4d4d
error-foreground = #FFFFFF
hilite-background = #7e7e7e
string-foreground = #02ff02
stderr-background = #002240
stderr-foreground = #ffb3b3
console-background = #002240
hit-background = #fbfbfb
string-background = #002240
normal-background = #002240
hilite-foreground = #FFFFFF
keyword-foreground = #ff8000
error-background = #c86464
keyword-background = #002240
builtin-background = #002240
break-background = #808000
builtin-foreground = #ff00ff
definition-foreground = #5e5eff
stdout-foreground = #c2d1fa
definition-background = #002240
normal-foreground = #FFFFFF
cursor-foreground = #ffffff
stdout-background = #002240
hit-foreground = #002240
comment-background = #002240
break-foreground = #FFFFFF
Nous prévoyons d'ajouter un moyen de changer tous les arrière-plans normaux à la fois. Pouvoir affecter les dialogues sera un projet ultérieur.
Voici les étapes:
Cliquez sur Appliquer puis sur OK
Terminé!