Skip to content
This repository has been archived by the owner on Dec 8, 2024. It is now read-only.

azure color #31

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/api/color.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ SCARLET = (255, 36, 0, 255)
TEAL = (0, 128, 128, 255)
TOMATO = (255, 99, 71, 255)
CRIMSON = (220, 20, 60, 0.8)
AZURE = (0, 128, 255, 0.8)
```
## Colortools
### main.colortools
Expand Down
1 change: 1 addition & 0 deletions docs/wiki/color.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ SCARLET = (255, 36, 0, 255)
TEAL = (0, 128, 128, 255)
TOMATO = (255, 99, 71, 255)
CRIMSON = (220, 20, 60, 0.8)
AZURE = (0, 128, 255, 0.8)
```
## Custom color
If you want your own color, you just give your function a tuple argument with RGBA colors, here is an example:
Expand Down
1 change: 1 addition & 0 deletions src/fusionengine/files/color.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ def __init__(self):
self.SCARLET = (255, 36, 0, 255)
self.TOMATO = (255, 99, 71, 255)
self.CRIMSON = (220, 20, 60, 0.8)
self.AZURE= (0, 128, 255, 0.8)


class ColorTools:
Expand Down