UNPKG

igniteui-webcomponents

Version:

Ignite UI for Web Components is a complete library of UI components, giving you the ability to build modern web applications using encapsulation and the concept of reusable components in a dependency-free approach.

50 lines 1.59 kB
import { css } from 'lit'; import { styles as bootstrapDark } from './dark/textarea.bootstrap.css.js'; import { styles as fluentDark } from './dark/textarea.fluent.css.js'; import { styles as indigoDark } from './dark/textarea.indigo.css.js'; import { styles as materialDark } from './dark/textarea.material.css.js'; import { styles as bootstrapLight } from './light/textarea.bootstrap.css.js'; import { styles as fluentLight } from './light/textarea.fluent.css.js'; import { styles as indigoLight } from './light/textarea.indigo.css.js'; import { styles as materialLight } from './light/textarea.material.css.js'; import { styles as shared } from './light/textarea.shared.css.js'; import { styles as bootstrap } from './shared/textarea.bootstrap.css.js'; import { styles as fluent } from './shared/textarea.fluent.css.js'; import { styles as indigo } from './shared/textarea.indigo.css.js'; import { styles as material } from './shared/textarea.material.css.js'; const light = { shared: css ` ${shared} `, bootstrap: css ` ${bootstrap} ${bootstrapLight} `, material: css ` ${material} ${materialLight} `, fluent: css ` ${fluent} ${fluentLight} `, indigo: css ` ${indigo} ${indigoLight} `, }; const dark = { shared: css ` ${shared} `, bootstrap: css ` ${bootstrap} ${bootstrapDark} `, material: css ` ${material} ${materialDark} `, fluent: css ` ${fluent} ${fluentDark} `, indigo: css ` ${indigo} ${indigoDark} `, }; export const all = { light, dark }; //# sourceMappingURL=themes.js.map