2011/01/06

Climacs での色(フェイス)の設定

climacs:climacs-rv で起動すると黒背景になる。でも、デフォルトの色付が合わない。そんな場合は次のように各 drawing-options を変更する。

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;; lisp height
;;;; climacs:climacs-rv で起動するとデフォルトのフェイスが合わないので。
(in-package :drei-lisp-syntax)

(setf
*string-drawing-options* (make-drawing-options :face (make-face :ink +light-salmon+))
*comment-drawing-options* (make-drawing-options :face (make-face :ink +chocolate1+))
*keyword-drawing-options* (make-drawing-options :face (make-face :ink +light-steel-blue+))
*special-variable-drawing-options* (make-drawing-options :face (make-face :ink +light-goldenrod+))
*special-operator-drawing-options* (make-drawing-options
:face (make-face :ink +cyan1+
:style (make-text-style nil :bold nil))))

0 件のコメント: