Skip to content

Commit

Permalink
Create colors.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mniamme authored Mar 30, 2018
1 parent 126fa74 commit 8e1a241
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions src/colors.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
"This file defines the colors tuples"

# white
white = (255, 255, 255)

# black
black = (0, 0, 0)

# red color
red = (255, 0, 0)

# different transparent red degrees
red1L = (255, 26, 26)
red2L = (255, 51, 51)
red3L = (255, 77, 77)
red4L = (255, 102, 102)
red5L = (255, 128, 128)
red6L = (255, 153, 153)

# green
green = (0, 255, 0)

# blue
blue = (0, 0, 255)

0 comments on commit 8e1a241

Please sign in to comment.