]> gitweb.factorcode.org Git - factor.git/commitdiff
ui.theme.base16: fix parse-colors
authorJohn Benediktsson <mrjbq7@gmail.com>
Wed, 18 May 2022 03:41:21 +0000 (20:41 -0700)
committerJohn Benediktsson <mrjbq7@gmail.com>
Wed, 18 May 2022 03:41:21 +0000 (20:41 -0700)
basis/ui/theme/base16/base16.factor

index 2b0231d33bcc9f6d6b80b6447d80e6e2469faebb..a8ea16500660f7ac1ebd19a113f9bea733335176 100644 (file)
@@ -9,7 +9,7 @@ base16-theme-name [ "greenscreen" ] initialize
 
 MEMO: base16colors ( name -- assoc )
     "vocab:ui/theme/base16/base16-" swap ".txt" 3append
-    utf8 file-lines parse-colors ;
+    utf8 file-lines line-colors ;
 
 : named-base16 ( name -- color )
     dup base16-theme-name get base16colors at [ ] [ no-such-color ] ?if ;