mirror of
https://github.com/penpot/penpot.git
synced 2025-01-24 23:49:45 -05:00
9 lines
255 B
Clojure
9 lines
255 B
Clojure
(ns uxbox.library
|
|
(:require [uxbox.library.colors :as colors]
|
|
[uxbox.util.data :refer (index-by-id)]))
|
|
|
|
(def ^:static +color-collections+
|
|
colors/+collections+)
|
|
|
|
(def ^:static +color-collections-by-id+
|
|
(index-by-id colors/+collections+))
|