3.4.0 • Published 5 years ago

presslabs-particles-icons v3.4.0

Weekly downloads
2
License
MIT
Repository
-
Last release
5 years ago

Particles

Particles is a collection of fully editable line icons — using Adobe Illustrator and FontForge Scripting.

Particles was developed by the awesome engineering team at Presslabs, a Managed WordPress Hosting provider.

For more open-source projects, check Presslabs Code.

Usage

There are two ways of using Particles — with Webpack or other bundle system, or with the good old CSS.

For a full list of particles and usage, see project demo

Webpack

First, you have to install Particles with your package manager — using one of the commands below. Webpack will automatically copy the fonts to your output folder.

yarn install presslabs-particles-icons

or

npm install presslabs-particles-icons

Second, import the fonts and style in your sass file.

$particles-font-path: "~presslabs-particles-icons/dist/fonts/";
@import "~presslabs-particles-icons";

Additionally, import the fonts and style where you wish to use them in your style file.

.icon {
  @import particle('add');
}

Or use them directly in HTML markup.

<i class="particle">add</i>

CSS and Fonts

You can copy the fonts to your working directory, in the fonts folder, and particles.css in your css folder. Then, import the style in the header of the HTML file:

<link rel="stylesheet" href="css/particles.css" />

Additionally, add the icons where you wish to use them in your file.

<i class="particle">add</i>

Develop Custom Fonts

To develop custom fonts, you need to install the following: FontForge and WOFF2 Compressor by Google. Next, follow the instructions below.

Start the script

./bin/start

or

Step by step

  1. Generate JSON file
./bin/dump ./config.json > ./dist/icons/particles.json
  1. Replace stroke linecap and linejoin methods (it's a bug with FontForge)
./bin/replace ./config.json stroke-linecap=\"round\" stroke-linecap=\"butt\"
./bin/replace ./config.json stroke-linejoin=\"round\" stroke-linejoin=\"miter\"
  1. Generate font files
fontforge -script ./bin/generate ./config.json ./dist/icons/particles.json
woff2_compress ./dist/fonts/particles.ttf
  1. Build style files and JSON data file
./bin/create_css ./config.json > ./dist/style/particles.css
./bin/create_scss ./config.json > ./dist/style/particles.scss
./bin/create_data ./dist/fonts/particles.svg > ./dist/icons/particles-data.json

Start frontend app

yarn
yarn dev

You're set! Enjoy using our font, or making amazing custom ones!

License

This project is licensed under the MIT License. For more information, read the LICENSE file in the top distribution directory.

3.4.0

5 years ago

3.3.0

6 years ago

3.2.0

6 years ago

3.1.1

6 years ago

3.1.0

6 years ago

2.1.2

6 years ago

2.1.1

6 years ago

2.1.0

6 years ago

2.0.5

6 years ago

2.0.4

6 years ago

2.0.3

6 years ago

2.0.2

6 years ago

2.0.1

6 years ago

2.0.0

6 years ago

1.1.0

6 years ago

1.0.6

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

7 years ago

1.0.0

7 years ago