piskel/js/Constants.js

36 lines
890 B
JavaScript
Raw Normal View History

// TODO(grosbouddha): put under pskl namespace.
var Constants = {
2012-09-16 20:48:32 +04:00
DEFAULT_SIZE : {
height : 32,
width : 32
},
MAX_HEIGHT : 128,
MAX_WIDTH : 128,
2012-09-03 03:34:11 +04:00
2012-09-11 02:52:09 +04:00
DEFAULT_PEN_COLOR : '#000000',
TRANSPARENT_COLOR : 'TRANSPARENT',
/*
* Fake semi-transparent color used to highlight transparent
* strokes and rectangles:
*/
SELECTION_TRANSPARENT_COLOR: 'rgba(255, 255, 255, 0.6)',
2012-09-16 17:47:39 +04:00
/*
* When a tool is hovering the drawing canvas, we highlight the eventual
* pixel target with this color:
*/
TOOL_TARGET_HIGHLIGHT_COLOR: 'rgba(255, 255, 255, 0.2)',
2012-09-11 02:52:09 +04:00
/*
* Default entry point for piskel web service:
*/
2012-09-21 01:57:26 +04:00
PISKEL_SERVICE_URL: 'http://3.piskel-app.appspot.com',
2012-09-09 01:43:16 +04:00
2012-09-11 02:52:09 +04:00
GRID_STROKE_WIDTH: 1,
GRID_STROKE_COLOR: "lightgray",
LEFT_BUTTON : "left_button_1",
2013-04-09 09:26:37 +04:00
RIGHT_BUTTON : "right_button_2"
};