change: make svg silkscreen black and copper gray

This commit is contained in:
King Kévin 2015-09-08 14:57:42 +02:00
parent 3c6e109b0e
commit dbc4503f37
1 changed files with 2 additions and 2 deletions

View File

@ -160,9 +160,9 @@ function json2svg(json) {
svg_title.textContent = json.name;
svg.appendChild(svg_title);
// add layers
layers_desc = [ { name: 'copper', stroke: 'black', fill: 'black'},
layers_desc = [ { name: 'copper', stroke: 'gray', fill: 'gray'},
{ name: 'drill', stroke: 'none', fill: 'white'},
{ name: 'silkscreen', stroke: 'gray', fill: 'none', 'stroke-linecap': 'round'}
{ name: 'silkscreen', stroke: 'black', fill: 'none', 'stroke-linecap': 'round'}
]
layers = []
for (layer_i in layers_desc) {