jsketcher/web/app/sketcher/styles.js
2020-01-24 17:13:34 -08:00

59 lines
No EOL
986 B
JavaScript

export const Styles = {
DEFAULT : {
lineWidth : 2,
strokeStyle : "#ffffff",
fillStyle : "#000000"
},
VIRTUAL: {
lineWidth : 2,
strokeStyle : "#ffffff88",
fillStyle : "#00000088"
},
SERVICE : {
lineWidth : 0.3,
strokeStyle : "#ff0000",
fillStyle : "#FF0000"
},
MARK : {
lineWidth : 2,
strokeStyle : "#ff0000",
fillStyle : "#FF0000"
},
SNAP : {
lineWidth : 2,
strokeStyle : "#00FF00",
fillStyle : "#00FF00"
},
DIM : {
lineWidth : 1,
strokeStyle : "#bcffc1",
fillStyle : "#00FF00"
},
BOUNDS : {
lineWidth : 2,
strokeStyle : "#fff5c3",
fillStyle : "#000000"
},
FULLY_CONSTRAINED: {
lineWidth : 2,
strokeStyle : "#9cd4ff",
fillStyle : "#2c44bc"
},
CONSTRUCTION : {
lineWidth : 1,
strokeStyle : "#aaaaaa",
fillStyle : "#000000"
},
CONSTRUCTION_OF_OBJECT : {
lineWidth : 1,
strokeStyle : "#888888",
fillStyle : "#000000"
}
};