@pxblue/themes v3.0.2
PX Blue themes for Eaton applications
This package provides theming support for Eaton applications using the PX Blue design system. It includes resources for developers using:
- Angular w/ Angular Material
- React w/ Material UI
- NativeScript
- React Native
Installation
Install with npm
npm install --save @pxblue/themes
or yarn
yarn add @pxblue/themes
Usage
Depending on the framework that you are using, PX Blue themes are applied in different ways.
Angular w/ Angular Material
// in styles.scss or your top-level sass file
import '~@pxblue/themes/angular/theme.scss'
In order to use the default theme font (Open Sans), you will also need to modify your angular.json file "styles" entries (there is one under "build" and one under "test") to include the Open Sans reference:
"styles": [
"src/styles.scss",
"./node_modules/typeface-open-sans"
],
React w/ Material UI
import {
MuiThemeProvider,
createMuiTheme
} from '@material-ui/core/styles';
import * as PXBThemes from '@pxblue/themes/react';
require('typeface-open-sans');
...
<MuiThemeProvider theme={createMuiTheme(PXBThemes.blue)}>
<App />
</MuiThemeProvider>
NativeScript
// in styles.scss or your top-level sass file
import '~@pxblue/themes/nativescript/theme.scss'
React Native
The React Native theme provides a color palette but not a comprehensive automatic styling system. You will need to manually apply the appropriate colors to various elements in your application.
import * as Colors from '@pxblue/themes/react-native'
...
<Text style={{color: Colors.blue['500']}}>Hello World!</Text>
Publishing
To publish this packages to npm, you must be authenticated to npm in your terminal as px-blue. Type the following to see if you are authenticated:
npm whoami
If you are not, you will need to log in:
npm adduser px-blue
You'll be prompted to enter the password and then you'll be ready to publish.
To transpile all of the downstream packages, run one of the following in the root directory:
npm run build:all
yarn build:all
You can then version the packages and publish:
npm version <type>
npm publish
If you would like to transpile all downstream packages, apply a patch version, and publish, you can do so with a single command:
npm run publish:full
yarn publish:full
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago