2015-12-25 15:33:58 +02:00
|
|
|
(ns uxbox.library
|
|
|
|
(:require [uxbox.library.colors :as colors]
|
2015-12-25 20:53:00 +02:00
|
|
|
[uxbox.library.icons :as icons]
|
2015-12-25 15:33:58 +02:00
|
|
|
[uxbox.util.data :refer (index-by-id)]))
|
|
|
|
|
2015-12-25 18:51:46 +02:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;; Colors
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
|
2015-12-25 15:33:58 +02:00
|
|
|
(def ^:static +color-collections+
|
|
|
|
colors/+collections+)
|
|
|
|
|
|
|
|
(def ^:static +color-collections-by-id+
|
|
|
|
(index-by-id colors/+collections+))
|
2015-12-25 20:53:00 +02:00
|
|
|
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;; Icons
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
|
|
|
|
(def ^:static +icon-collections+
|
|
|
|
icons/+collections+)
|
|
|
|
|
|
|
|
(def ^:static +icon-collections-by-id+
|
|
|
|
(index-by-id icons/+collections+))
|