public CodexLabelWithLargeIcon(string text, CodexTextStyle style, Tuple <Sprite, Color> coloredSprite, string targetEntrylinkID)
     : base(text, style, coloredSprite, 128, 128)
 {
     base.icon  = new CodexImage(128, 128, coloredSprite);
     base.label = new CodexText(text, style);
     linkID     = targetEntrylinkID;
 }
 public CodexText(string text, CodexTextStyle style = CodexTextStyle.Body)
 {
     this.text  = text;
     this.style = style;
 }