summary refs log tree commit diff stats
path: root/tests/stdlib/t9394.nim
blob: 3c0123eb544b5157249f32b45a4f74cd936fbee7 (plain) (blame)
1
2
3
4
5
6
7
import terminal, colors

let codeFg = ansiForegroundColorCode(colAliceBlue)
let codeBg = ansiBackgroundColorCode(colAliceBlue)

doAssert codeFg == "\27[38;2;240;248;255m"
doAssert codeBg == "\27[48;2;240;248;255m"