// グラデーション func GradMono(px, py, x, y int, flag bool) string { if flag { return tcol256.Bg256String(" ", (32+x/2+y)%128+16, (96+x/2+y*2)%64+192, (64+x/4+y*3)%128+32) } else { return " " } }
// グラデーション func Grad(px, py, x, y int, flag bool) string { if flag { return tcol256.Bg256String(" ", x*6+32, (x/3+y)*8+24, (x+y)*7+128) } else { return " " } }