mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-07 17:04:58 +01:00
53 lines
No EOL
883 B
JavaScript
53 lines
No EOL
883 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"
|
|
},
|
|
|
|
CONSTRUCTION : {
|
|
lineWidth : 1,
|
|
strokeStyle : "#aaaaaa",
|
|
fillStyle : "#000000"
|
|
},
|
|
|
|
CONSTRUCTION_OF_OBJECT : {
|
|
lineWidth : 1,
|
|
strokeStyle : "#888888",
|
|
fillStyle : "#000000"
|
|
}
|
|
}; |