-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.py
More file actions
28 lines (26 loc) · 726 Bytes
/
Copy pathsettings.py
File metadata and controls
28 lines (26 loc) · 726 Bytes
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
# default values
ROTATE_DEFAULT = 0.0
ZOOM_DEFAULT = 0.0
FLIP_OPTIONS = ['Ninguno', 'X', 'Y', 'Ambos']
BLUR_DEFAULT = 0.0
CONTRAST_DEFAULT = 1.0
EFFECT_OPTIONS = ['Ningún Efecto', 'Emboss', 'Bordes Find', 'Contour', 'Bordes Enhance', 'Bordes Enhance+', 'Blur', 'Detalles', 'Nítido', 'Suave', 'Suave+']
BRIGHTNESS_DEFAULT = 1
VIBRANCE_DEFAULT = 1.0
GRAYSCALE_DEFAULT = False
SEPIA_DEFAULT = False
INVERT_DEFAULT = False
CLARITY_DEFAULT = 1.0
# Colors
BACKGROUND_COLOR = '#242424'
WHITE = '#FFF'
GREY = 'grey'
BLUE = '#1f6aa5'
DARK_GREY = '#4a4a4a'
CLOSE_RED = '#F42236'
SLIDER_BG = '#64686b'
DROPDOWN_MAIN_COLOR = '#444'
DROPDOWN_HOVER_COLOR = '#333'
DROPDOWN_MENU_COLOR = '#666'
PURPLE = '#8C45D1'
DARK_PURPLE = '#8C00D1'