Get a Color instance representing the default color. Returns: Color: Default color.
(cls)
| 421 | |
| 422 | @classmethod |
| 423 | def default(cls) -> "Color": |
| 424 | """Get a Color instance representing the default color. |
| 425 | |
| 426 | Returns: |
| 427 | Color: Default color. |
| 428 | """ |
| 429 | return cls(name="default", type=ColorType.DEFAULT) |
| 430 | |
| 431 | @classmethod |
| 432 | @lru_cache(maxsize=1024) |
no outgoing calls