Custom Lovelace Card - Homekit style card

Thanks! I based on this two designs:

But I’m trying to do as much as I can with DBuits cards.

If you want to get similiar look for homekit style card buttons you can just simply add style below:

   cards:
      - type: 'custom:homekit-card'
        style: | 
          :host {
            --tile-width: 100px;
            --tile-height: 100px;

            --tile-background: rgba(115, 115, 115, 0.2);
            --tile-icon-color: rgba(255, 255, 255, 0.3);
            --tile-name-text-color: var(--tile-icon-color);
            --tile-state-text-color: var(--tile-icon-color);
            --tile-state-changed-text-color: var(--tile-icon-color);

            --tile-on-background: rgba(255, 255, 255, 1) !important;
          }