UNPKG

942 BJavaScriptView Raw
1import { css } from "lit";
2// We set font-size to 16px and all the mdc typography styles
3// because it defaults to rem, which means that the font-size
4// of the host website would influence the ESP Web Tools dialog.
5export const dialogStyles = css `
6 :host {
7 --roboto-font: Roboto, system-ui;
8 --text-color: rgba(0, 0, 0, 0.6);
9 --danger-color: #db4437;
10
11 --md-sys-color-primary: #03a9f4;
12 --md-sys-color-on-primary: #fff;
13 --md-ref-typeface-brand: var(--roboto-font);
14 --md-ref-typeface-plain: var(--roboto-font);
15
16 --md-sys-color-surface: #fff;
17 --md-sys-color-surface-container: #fff;
18 --md-sys-color-surface-container-high: #fff;
19 --md-sys-color-surface-container-highest: #f5f5f5;
20 --md-sys-color-secondary-container: #e0e0e0;
21
22 --md-sys-typescale-headline-font: var(--roboto-font);
23 --md-sys-typescale-title-font: var(--roboto-font);
24 }
25
26 a {
27 color: var(--md-sys-color-primary);
28 }
29`;