Gradient¶
Render any Rich renderable with a smooth horizontal gradient.
Parameters¶
renderable : RenderableType The content to render (Text, Panel, Table, etc.). colors : List[ColorType], optional A list of Rich color identifiers (hex, names, Color). If provided, these are used as gradient stops. If omitted and rainbow=False, Spectrum is used. rainbow : bool If True, uses the full rainbow spectrum instead of custom stops. background : bool If True, applies gradient to the background color; otherwise to foreground.
Source code in src/rich_gradient/gradient.py
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 |
|
__init__(renderable, colors=None, *, rainbow=False, background=False, animated=False, phase=0.0)
¶
Initialize a gradient renderer.
Parameters:¶
renderable: RenderableType The Rich renderable (Text, Panel, Table, etc.) to which the gradient will be applied. colors: Optional[List[Union[Color, str]]] List of color stops as Color instances or color identifiers (hex strings or names). If omitted and rainbow=False, a default spectrum of hues is used. rainbow: bool If True, ignore custom colors and use the full rainbow spectrum. background: bool If True, apply gradient to the background; otherwise to the foreground. phase: float Initial offset for animation (may be fractional for finer control); increments advance the gradient. animated: bool If True, wraps renderable with a footer panel indicating Ctrl+C to stop.
Source code in src/rich_gradient/gradient.py
__rich_console__(console, options)
¶
Render each line of the inner renderable, applying the gradient per character.
Yields:
Name | Type | Description |
---|---|---|
Segment |
RenderResult
|
Styled text segments with gradient coloring. |
Source code in src/rich_gradient/gradient.py
__rich_measure__(console, options)
¶
Measure the size required by the inner renderable under given console constraints.
Returns:
Name | Type | Description |
---|---|---|
Measurement |
Measurement
|
Width constraints for rendering. |
Source code in src/rich_gradient/gradient.py
_color_at(position, width, span)
¶
Compute the hex color code at a given character position within the span.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
position
|
int
|
int Starting cell index of the character or cluster. |
required |
width
|
int
|
int Cell width of the character or cluster. |
required |
span
|
int
|
int Total available width for gradient calculation. |
required |
Returns:
Name | Type | Description |
---|---|---|
str |
str
|
A hex color string (#rrggbb). |
Source code in src/rich_gradient/gradient.py
_compute_frac(position, width, span)
¶
Compute the fractional position for the gradient, including phase shift.
Source code in src/rich_gradient/gradient.py
_compute_stops(colors, rainbow)
¶
Compute the color stops for the gradient.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
colors
|
Optional[List[Union[Color, str]]]
|
Optional[List[Union[Color, str]]] List of color stops as Color instances or color identifiers. |
required |
rainbow
|
bool
|
bool If True, use the full rainbow spectrum. |
required |
Returns:
Type | Description |
---|---|
list
|
List[Tuple[int, int, int]]: List of RGB tuples. |
Source code in src/rich_gradient/gradient.py
_interpolated_color(frac, stops, count)
¶
Interpolate the color at the given fractional position.
Source code in src/rich_gradient/gradient.py
_styled(original, color)
¶
Combine the original style with a gradient color applied to foreground or background.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
original
|
Style
|
Style The existing Rich style for the segment. |
required |
color
|
str
|
str Hex color string to apply. |
required |
Returns:
Name | Type | Description |
---|---|---|
Style |
Style
|
A new Style with gradient coloring merged. |