besogo
Version:
Embeddable SGF player for the game of Go (aka Weiqi, Baduk)
51 lines (41 loc) • 708 B
CSS
/* Dark board theme */
.besogo-svg-board {
fill: #3c4142;
}
.besogo-svg-lines {
stroke: black;
stroke-width: 3.5;
fill: none;
}
.besogo-svg-hoshi {
stroke: black;
stroke-width: 14;
}
.besogo-svg-blackStone {
fill: black;
stroke: black;
stroke-width: 4;
}
.besogo-svg-whiteStone {
fill: #929591;
stroke: #929591;
stroke-width: 4;
}
.besogo-svg-greyStone {
fill: #536267;
stroke: #536267;
stroke-width: 4;
}
/* Overriding standard GUI theme */
.besogo-container {
color: #929591;
background: #1b2431;
}
.besogo-blackInfo {
color: #929591;
background: black;
}
.besogo-whiteInfo {
color: black;
background: #929591;
}