Handbook
Glossary
thread-status-foreground ( status -- color )
Vocabulary
ui
.
tools
.
walker
Inputs
status
an
object
Outputs
color
an
object
Definition
USING:
combinators
tools.walker
ui.theme
;
IN:
ui.tools.walker
:
thread-status-foreground
( status -- color )
{
{
+stopped+
[
thread-status-stopped-foreground
]
}
{
+suspended+
[
thread-status-suspended-foreground
]
}
{
+running+
[
thread-status-running-foreground
]
}
{
f
[
text-color
]
}
}
case
;