This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-04-17
Channels
- # bangalore-clj (2)
- # beginners (202)
- # boot (18)
- # cljs-dev (8)
- # cljsjs (7)
- # cljsrn (4)
- # clojars (2)
- # clojure (401)
- # clojure-boston (2)
- # clojure-dusseldorf (1)
- # clojure-gamedev (36)
- # clojure-greece (2)
- # clojure-italy (1)
- # clojure-russia (16)
- # clojure-spec (27)
- # clojure-uk (7)
- # clojurescript (68)
- # core-async (16)
- # cursive (25)
- # datascript (1)
- # datomic (34)
- # funcool (1)
- # hoplon (1)
- # interop (1)
- # klipse (1)
- # leiningen (2)
- # lumo (75)
- # off-topic (17)
- # om-next (2)
- # onyx (66)
- # re-frame (18)
- # reagent (2)
- # ring-swagger (11)
- # spacemacs (1)
- # specter (1)
- # timbre (3)
- # untangled (48)
- # yada (7)
here's an example of font usage:
;-- colors --------------------------------------------------------------------;
(def grey-fg (rgb 0xF5F5F5))
(def grey-bg (rgb 0xDDDDDD))
(def black (rgb 0x3F3F3F))
;-- typography ----------------------------------------------------------------;
(def lato-medium (font :system ["Lato Medium"] :truetype "lato-medium.ttf" :generic :sans-serif))
(def monospace (font :system ["Souce Code Pro Medium"] :opentype "source-code-pro-medium.otf" :generic :monospace))
(def +label+ {:t 14 :tf lato-medium :tc black})
(def +code+ {:t 16 :tf monospace :tc black})
(elem +code+ :sh (r 1 1) :c grey-bg :b 2 :bc grey-fg
"console.log(\"hello world\");")