mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-10 10:25:36 +01:00
49 lines
No EOL
787 B
JavaScript
49 lines
No EOL
787 B
JavaScript
export const Styles = {
|
|
DEFAULT : {
|
|
lineWidth : 2,
|
|
strokeStyle : "#ffffff",
|
|
fillStyle : "#000000"
|
|
},
|
|
|
|
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"
|
|
}
|
|
}; |