[Type] Style
Part of: mobl
Inherits from: mobl::Object
Represents a reference to a style defined using the styling construct.
Example:
style myStyle {
  color: black;
}
screen root() {
  var s : Style = myStyle;
  block(s) {
    "This will be in black"
  }
}
 
