mirror of
https://github.com/penpot/penpot.git
synced 2025-05-29 16:26:19 +02:00
13 lines
438 B
Clojure
13 lines
438 B
Clojure
(ns uxbox.library
|
|
(:require [uxbox.library.colors :as colors]
|
|
[uxbox.util.data :refer (index-by-id)]))
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
;; Colors
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
(def ^:static +color-collections+
|
|
colors/+collections+)
|
|
|
|
(def ^:static +color-collections-by-id+
|
|
(index-by-id colors/+collections+))
|