bubble_texture_orange = {
const svg = d3.create("svg")
.attr("viewBox", [0,0, width, 900])
.style('background-color', '#fff')
var t1 = textures.lines()
.orientation("vertical", "horizontal")
.size(4)
.strokeWidth(2)
.shapeRendering("crispEdges")
.stroke("#7DB8CA");
svg.call(t1);
var t2 = textures.circles()
.size(18)
.radius(1)
.fill("#102D23")
svg.call(t2);
svg.append("rect")
.attr("x", 0)
.attr("y", 0)
.attr("width", 200)
.attr("height", 200)
.attr("fill", t1.url());
svg.append("rect")
.attr("x", 400)
.attr("y", 0)
.attr("width", 375)
.attr("height", 812)
.attr("fill", t2.url());
return svg.node()
}