From dce8beab32a4a881dfc52d1433f6a50fd43a4af4 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Wed, 2 Mar 2016 18:10:55 +0200 Subject: [PATCH] Add missing fonts namespace file. --- src/uxbox/library/fonts.cljs | 53 ++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 src/uxbox/library/fonts.cljs diff --git a/src/uxbox/library/fonts.cljs b/src/uxbox/library/fonts.cljs new file mode 100644 index 000000000..b1f2d39b8 --- /dev/null +++ b/src/uxbox/library/fonts.cljs @@ -0,0 +1,53 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + +(ns uxbox.library.fonts) + +(def ^:const +collections+ + [{:id "sourcesanspro" + :name "Source Sans Pro" + :styles [{:name "Extra-Light" + :weight "100" + :style "normal"} + {:name "Extra-Light Italic" + :weight "100" + :style "italic"} + {:name "Light" + :weight "200" + :style "normal"} + {:name "Light Italic" + :weight "200" + :style "italic"} + {:name "Regular" + :weight "normal" + :style "normal"} + {:name "Italic" + :weight "normal" + :style "italic"} + {:name "Semi-Bold" + :weight "500" + :style "normal"} + {:name "Semi-Bold Italic" + :weight "500" + :style "italic"} + {:name "Bold" + :weight "bold" + :style "normal"} + {:name "Bold Italic" + :weight "bold" + :style "italic"} + {:name "Black" + :weight "900" + :style "normal"} + {:name "Black Italic" + :weight "900" + :style "italic"}]} + {:id "bebas" + :name "Bebas" + :styles [{:name "Normal" + :weight "normal" + :style "normal"}]}])