Anypoint styles definition for web components.
npm install @anypoint-web-components/anypoint-stylesThis component has been moved to anypoint-web-components/awc.
====
The component provides simple ways to use Anypoint CSS styles
in an application. The following imports are available:
1. colors.js:
a complete list of the colors defined in the Anypoint palette
2. typography.js:
Anypoint font styles and sizes
3. anypoint-theme.js:
Default theme for anypoint applications.
We recommend importing each of these individual files, and using the style variables
available in each ones, rather than the aggregated anypoint-styles.js as a whole.
Note, typography does not include font definition (the din-pro.js) file.
It assumes the for is already loaded into the web application. If not, additionally import the din-pro.js file.
sh
npm install --save @anypoint-web-components/anypoint-styles
`$3
`html
Content title
`$3
`js
import { LitElement, html, css } from 'lit-element';
import '@anypoint-web-components/anypoint-styles/default-theme.js';class SampleElement extends LitElement {
static get styles() {
return css
;
} render() {
return html
;
}
}
customElements.define('sample-element', SampleElement);
`Development
`sh
git clone https://github.com/anypoint-web-components/anypoint-styles
cd anypoint-styles
npm install
`$3
`sh
npm start
`$3
`sh
npm test
``