mirror of
https://gitlab.com/eql/lqml.git
synced 2025-12-06 02:30:38 -08:00
example 'cl-repl': add 'settings/colors.lisp', default '.eclrc'; upgrade LQML version number
This commit is contained in:
parent
cb04d9e3a2
commit
b96d377926
8 changed files with 100 additions and 4 deletions
|
|
@ -0,0 +1,25 @@
|
|||
(in-package :editor)
|
||||
|
||||
(setf *text-color* "black")
|
||||
(setf *background-color* "white")
|
||||
(setf *selected-text-color* "white")
|
||||
(setf *selection-color* "firebrick")
|
||||
(setf *parenthesis-color* "lightslategray")
|
||||
(setf *string-color* "saddlebrown")
|
||||
(setf *comment-color* "lightslategray")
|
||||
(setf *lisp-keyword-color* "#c05050")
|
||||
(setf *eql-keyword-color* "#5050c0")
|
||||
(setf *keyword-color* "#409090")
|
||||
|
||||
(setf *output-text-color* "black")
|
||||
(setf *output-background-color* "lavender")
|
||||
(setf *output-string-color* "saddlebrown")
|
||||
(setf *output-value-color* "#2020ff")
|
||||
(setf *output-trace-color* "darkmagenta")
|
||||
(setf *output-error-color* "red")
|
||||
|
||||
(progn
|
||||
(apply-colors)
|
||||
(q! |clear| ui:*output-model*)
|
||||
(values))
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue