funkhaus-format-login

2.0.0 • Public • Published

Quickly generate WP login CSS files for Funkhaus projects.

How

  1. sudo npm install funkhaus-format-login -g
  2. Open Terminal and move to the desired directory
  3. funkhaus-format-login and follow instructions

That's it!

Options

  • -t filename.txt or --template example.txt
    • File to use as a template (default template.txt)
  • -e encoding or --encoding encoding
    • Encoding of the template (default utf8)
  • -o example.txt or --output example.txt
    • Name of output file (default output.txt)

Changing the Template

Everything that happens in the script is based on the template file. funkhaus-format-login scans the template (default templates/template.css) for Mustache-style placeholders, then prompts the user for values to fill those placeholders.

For example, if template.css just contained this:

html {
    color: {{ background-color }};
}

then running funkhaus-format-login would ask you for the background-color:

prompt: background-color (required): [your hex value here]

and would result in this CSS file:

html {
    color: [your hex value here];
}

You can also specify a default value for a placeholder:

html {
    color: {{ background }};
}
body {
    color: {{ body-background default:background }};
}

Name the placeholder as usual, then indicate a default value to look for with default:[default-value-name]. This falls back on the default value if the user doesn't specify the value in the prompt.


Version 2.0

http://funkhaus.us

Readme

Keywords

none

Package Sidebar

Install

npm i funkhaus-format-login

Weekly Downloads

1

Version

2.0.0

License

ISC

Last publish

Collaborators

  • sandermoolin