forked from rschwa6308/Arithma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Colors.py
38 lines (29 loc) · 798 Bytes
/
Colors.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import pygame
pygame.init()
# fonts
piece_font = pygame.font.SysFont("verdana", 25)
piece_font_bold = pygame.font.SysFont("verdana", 25, bold=True)
title_font = pygame.font.SysFont("Dotum", 80)
title_font.set_underline(True)
credits_font = pygame.font.SysFont("Lucida Console", 20)
button_font = pygame.font.SysFont("verdana", 20)
# colors
black = (0, 0, 0)
white = (255, 255, 255)
blue = (84, 155, 255)
green = (128, 255, 0)
purple = (102, 0, 204)
red = (255, 0, 0)
yellow = (255, 219, 88)
brown = (139, 69, 19)
# #worlds worst color scheme
# background_color = (255,0,0)
# grid_color = purple
# piece_color = brown
# text_color = (0,255,255)
A = white
B = black
background_color = A # A
grid_color = B # B
piece_color = B # B
text_color = A # A