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.
49 lines • 1.47 kB
JavaScript
import { css } from 'lit';
import { styles as bootstrapDark } from './dark/rating.bootstrap.css.js';
import { styles as fluentDark } from './dark/rating.fluent.css.js';
import { styles as indigoDark } from './dark/rating.indigo.css.js';
import { styles as materialDark } from './dark/rating.material.css.js';
import { styles as bootstrapLight } from './light/rating.bootstrap.css.js';
import { styles as fluentLight } from './light/rating.fluent.css.js';
import { styles as indigoLight } from './light/rating.indigo.css.js';
import { styles as materialLight } from './light/rating.material.css.js';
import { styles as shared } from './light/rating.shared.css.js';
import { styles as bootstrap } from './shared/rating.bootstrap.css.js';
import { styles as fluent } from './shared/rating.fluent.css.js';
import { styles as indigo } from './shared/rating.indigo.css.js';
const light = {
shared: css `
${shared}
`,
bootstrap: css `
${bootstrap} ${bootstrapLight}
`,
material: css `
${materialLight}
`,
fluent: css `
${fluent} ${fluentLight}
`,
indigo: css `
${indigo} ${indigoLight}
`,
};
const dark = {
shared: css `
${shared}
`,
bootstrap: css `
${bootstrap} ${bootstrapDark}
`,
material: css `
${materialDark}
`,
fluent: css `
${fluent} ${fluentDark}
`,
indigo: css `
${indigo} ${indigoDark}
`,
};
export const all = { light, dark };
//# sourceMappingURL=themes.js.map