how to customize the IDE's theme
Hi,
I'm customizing the IDE's theme.
I'd like to change the theme as in the picture below.
I'd like to change the theme as in the picture below.
・green for functions¯o&special form
・light-green for variables
・light-green for variables
・white for others
・light black for background
I found an article to change the theme.
In the article, the code is like this:
(defun set-pane-background-colors (x)
(typecase x
(capi:echo-area-pane
(setf (capi:simple-pane-background x) (color:make-rgb 1.0 .67 0.67)))
(capi:collector-pane
(setf (capi:simple-pane-background x) (color:make-rgb .8 1.0 .8)))
(capi:listener-pane
(setf (capi:simple-pane-background x) (color:make-rgb .8 .8 1.0)))
(capi:editor-pane
(setf (capi::simple-pane-background x) (color:make-rgb .7 .7 .7)
(capi::simple-pane-foreground x) :white))
(capi:tab-layout
(mapcar 'set-pane-background-colors (capi:tab-layout-panes x)))
(capi:output-pane
(setf (capi:simple-pane-background x) :black
(capi::simple-pane-foreground x) :white))))
Could you tell me how to fix it?
I'd appreciate your advice.
I'd appreciate your advice.
- Hiroki N..