-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcontainer.ts
More file actions
57 lines (53 loc) · 1.67 KB
/
container.ts
File metadata and controls
57 lines (53 loc) · 1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import { css } from 'lit';
import type { Themes } from '../../../theming/types.js';
// Dark Overrides
import { styles as bootstrapDark } from './dark/container/list.bootstrap.css.js';
import { styles as fluentDark } from './dark/container/list.fluent.css.js';
import { styles as indigoDark } from './dark/container/list.indigo.css.js';
import { styles as materialDark } from './dark/container/list.material.css.js';
import { styles as sharedDark } from './dark/container/list.shared.css.js';
// Light Overrides
import { styles as bootstrapLight } from './light/container/list.bootstrap.css.js';
import { styles as fluentLight } from './light/container/list.fluent.css.js';
import { styles as indigoLight } from './light/container/list.indigo.css.js';
import { styles as materialLight } from './light/container/list.material.css.js';
import { styles as sharedLight } from './light/container/list.shared.css.js';
// Shared Styles
import { styles as bootstrap } from './shared/container/list.bootstrap.css.js';
import { styles as fluent } from './shared/container/list.fluent.css.js';
import { styles as indigo } from './shared/container/list.indigo.css.js';
const light = {
shared: css`
${sharedLight}
`,
bootstrap: css`
${bootstrap} ${bootstrapLight}
`,
material: css`
${materialLight}
`,
fluent: css`
${fluent} ${fluentLight}
`,
indigo: css`
${indigo} ${indigoLight}
`,
};
const dark = {
shared: css`
${sharedDark}
`,
bootstrap: css`
${bootstrap} ${bootstrapDark}
`,
material: css`
${materialDark}
`,
fluent: css`
${fluent} ${fluentDark}
`,
indigo: css`
${indigo} ${indigoDark}
`,
};
export const all: Themes = { light, dark };