package RolePage; use Moose::Role; has textFont => ( is => 'rw', isa => 'Str', default => 'Courier' ); has textSize => ( is => 'rw', isa => 'Int', default => 12 );