Participer au site avec un Tip
Rechercher
 

Améliorations / Corrections

Vous avez des améliorations (ou des corrections) à proposer pour ce document : je vous remerçie par avance de m'en faire part, cela m'aide à améliorer le site.

Emplacement :

Description des améliorations :

Module « curses » Python 3.11.3

Fonction init_color - module curses

Signature de la fonction init_color

def init_color(color_number, r, g, b) 

Description

help(curses.init_color)

Change the definition of a color.

  color_number
    The number of the color to be changed (0 - (COLORS-1)).
  r
    Red component (0 - 1000).
  g
    Green component (0 - 1000).
  b
    Blue component (0 - 1000).

When init_color() is used, all occurrences of that color on the screen
immediately change to the new definition.  This function is a no-op on
most terminals; it is active only if can_change_color() returns true.