import { LitElement, html, css } from "lit"; import { customElement, property } from "lit/decorators.js"; @customElement("key-pad") export class CalcKeyPad extends LitElement { @property() accentColor = "blue"; @property() textColor = "white"; @property() actionColor = "black"; @property() actionTextColor = "white"; static styles = css` #base { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 0 5px; } keypad-input { display: flex; } `; // Render element DOM by returning a `lit-html` template. render() { return html`