Button {
  Anchor: (Width: 240, Bottom: 10, Right: 10);
  Padding: (Full: 12);
  Background: (Color: #1a1a1a(0.6));
  LayoutMode: Top;
  Style: (
    Hovered: (
      Background: #2a2a2a(0.8),
    ),
    Pressed: (
      Background: #3a3a3a(0.9),
    )
  );

  Label #SubcommandName {
    Style: (
      FontSize: 14,
      RenderBold: true,
      TextColor: #ffffff
    );
    Anchor: (Bottom: 5);
  }

  Label #SubcommandUsage {
    Style: (
      FontSize: 11,
      TextColor: #7a9cc6
    );
    Anchor: (Bottom: 5);
  }

  Label #SubcommandDescription {
    Style: (
      FontSize: 11,
      TextColor: #ffffff(0.7)
    );
  }
}

