Class: Vedeu::Background
Overview
The class represents one half (the other, can be found at Foreground) of a terminal colour escape sequence.
Instance Method Summary
collapse
Instance Method Details
#named_codes ⇒ String
10
11
12
|
# File 'lib/vedeu/output/background.rb', line 10
def named_codes
Vedeu::Esc.background_codes[colour]
end
|
#numbered_prefix ⇒ String
15
16
17
|
# File 'lib/vedeu/output/background.rb', line 15
def numbered_prefix
"\e[48;5;"
end
|
20
21
22
|
# File 'lib/vedeu/output/background.rb', line 20
def repository
Vedeu.background_colours
end
|
#rgb_prefix ⇒ String
25
26
27
|
# File 'lib/vedeu/output/background.rb', line 25
def rgb_prefix
"\e[48;2;%s;%s;%sm"
end
|