Handbook
Glossary
standard-table-style ( -- value )
Vocabulary
io
.
styles
Inputs
None
Outputs
value
a
hashtable
Word description
Outputs a table style where cells are separated by 5-pixel gaps and framed by a light gray border. This style can be passed to
tabular-output
.
Definition
USING:
colors
;
IN:
io.styles
CONSTANT:
standard-table-style
H{
{
table-gap
{
5 5
}
}
{
table-border
T{
rgba
{
red 0.8
}
{
green 0.8
}
{
blue 0.8
}
{
alpha 1.0
}
}
}
}
inline