10.1.0 • Published 3 years ago

ng-stamy-plugin-theme v10.1.0

Weekly downloads
3
License
MIT
Repository
github
Last release
3 years ago

ng-stamy-plugin-theme

NG-STAMY theme plugin.

NPM version Ci

Features

  • themeCss Generate theme styles for theme switching
  • colorLess Generate color.less, dynamically customize colors

Usage

Install ng-stamy-plugin-theme to devDependencies.

# via yarn
yarn add -D ng-stamy-plugin-theme
# via npm
npm i ng-stamy-plugin-theme --save-dev

You can use npx to complete the generated project color.less and theme style, like this:

# Generate theme styles for theme switching
npx ng-stamy-plugin-theme -t=themeCss
# Generate `color.less`, dynamically customize colors
npx ng-stamy-plugin-theme -t=colorLess

# DEBUG MODE
npx ng-stamy-plugin-theme -t=themeCss -debug

Theme Styles

You muse add ng-stamy.json file in root path, for example, you want to generate dark and dust style:

{
  "$schema": "./node_modules/ng-stamy/schema.json",
  "theme": {
    "list": [
      {
        "theme": "dark"
      },
      {
        "key": "dust",
        "modifyVars": {
          "@primary-color": "#F5222D"
        }
      }
    ]
  }
}

We provide a completed JSON Schema that you can write very conveniently.

Execute the following command:

npx ng-stamy-plugin-theme -t=themeCss

You can refer to how ng-stamy scaffold uses style.dark.css.

Dynamically Customize Colors

If you using NG-stamy scaffold, execute the following command with default parameters:

npx ng-stamy-plugin-theme -t=colorLess

You can refer to how stlon document site uses color.less.

Or use ng-stamy.json to change the default parameters:

{
  "$schema": "./node_modules/ng-stamy/schema.json",
  "colorLess": {
    "variables": ["@primary-color"],
    "ngZorroAntd": "./node_modules/ng-zorro-antd/",
    "styleFilePath": "./src/styles.less",
    "themeFilePath": "./src/styles/theme.less",
    "outputFilePath": "./src/assets/color.less"
  }
}

License

MIT