mirror of
https://github.com/penpot/penpot.git
synced 2025-01-23 15:09:10 -05:00
10 lines
255 B
Text
10 lines
255 B
Text
|
(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+))
|