variables.less 477 B

12345678910111213141516
  1. ---
  2. ---
  3. // Variables
  4. // --------------------------
  5. @FontAwesomePath: "../font";
  6. //@FontAwesomePath: "//netdna.bootstrapcdn.com/font-awesome/{{ site.fontawesome.version}}/font"; // for referencing Bootstrap CDN font files directly
  7. @FontAwesomeVersion: "{{ site.fontawesome.version }}";
  8. @borderColor: #eee;
  9. @iconMuted: #eee;
  10. @iconLight: #fff;
  11. @iconDark: #333;
  12. {% for icon in icons %}
  13. @{{ icon.id }}: "\{{ icon.unicode }}";
  14. {% endfor %}