Skip to content

Instantly share code, notes, and snippets.

View JohnDoneth's full-sized avatar

John Doneth JohnDoneth

View GitHub Profile
@agoose77
agoose77 / ayu-mirage.yaml
Last active March 27, 2022 21:21
Alacritty ayu-mirage theme
colors:
# Default colors
primary:
background: '#1f2430'
foreground: '#cbccc6'
bright_foreground: '#f28779'
# Normal colors
normal:
black: '#212733' #
@roman01la
roman01la / react-native-stylesheet.cljs
Last active August 5, 2022 19:31
Access React Native compiled styles map using Clojure's keywords.
(def stylesheet (.-StyleSheet ReactNative))
(defn create-stylesheet [styles]
(->> styles
(clj->js)
(.create stylesheet)
(js->clj)
(clojure.walk/keywordize-keys)))
; usage