美文网首页
一个Lispworks颜色主题

一个Lispworks颜色主题

作者: 忠驱义感风际中 | 来源:发表于2022-01-25 17:27 被阅读0次

在最新的Lispworks 8.0中,IDE已经支持深色主题,其主要的颜色都是粉色的。根据此调性,参考VScode 的night-pink主题,做了一个Lispworks的颜色主题。
颜色主题修改的文件,参考github的 https://github.com/40ants/lw-color-theme
下载文件后,在其中增加一段

(define-color-theme "night-pink" ()
  :foreground (color:make-rgb  1s0 0.76s0 0.94s0)
  :background (color:make-rgb 0.1s0 0.1s0 0.1s0)
  :region '(:foreground :color_highlighttext
        :background :color_highlight)
  :show-point-face `(:background ,(color:make-rgb 0.6275s0 0.1255s0 0.9412s0))
  :interactive-input-face '(:foreground :pink)
  :highlight '(:bold-p t)
  :non-focus-complete-face '(:background :tweak_background)
  :font-lock-function-name-face `(:foreground ,(color:make-rgb 0.86s0 0.31s0 0.63s0))
  :font-lock-comment-face `(:foreground ,(color:make-rgb 0.65s0 0.66s0 0.69s0))
  :font-lock-type-face `(:foreground ,(color:make-rgb 0.82s0 0.42s0 0.58s0))
  :font-lock-variable-name-face `(:foreground ,(color:make-rgb 1.0s0 1.0s0 1.0s0))
  :font-lock-string-face `(:foreground ,(color:make-rgb 1.0s0 0.6275s0 0.6275s0))
  :font-lock-keyword-face `(:foreground ,(color:make-rgb 0.67s0 0.30s0 0.52s0))
  :font-lock-builtin-face `(:foreground ,(color:make-rgb 0.92s0 0.33s0 0.67s0))
  :compiler-note-highlight '(:foreground :magenta)
  :compiler-warning-highlight '(:foreground :orange)
  :compiler-error-highlight '(:foreground :red))

效果如图


截屏2022-01-25 下午5.26.18.png

相关文章

  • 一个Lispworks颜色主题

    在最新的Lispworks 8.0中,IDE已经支持深色主题,其主要的颜色都是粉色的。根据此调性,参考VScode...

  • 做了两个lispworks颜色主题

    eink主题 效果 borland主题 效果

  • 颜色—1.颜色系统

    材料设计的颜色系统可以被用来创建一个可以反映你的品牌和风格的颜色主题。 目录: 颜色用法和调色板 颜色和主题、原则...

  • flutter主题颜色

    主题色 右下角的FloatingActionButton的颜色就是默认取值MaterialColor, 默认是蓝色...

  • Vs主题颜色

    工具--》选项 --》颜色主题(深色)即可看到黑色的主题

  • vscode主题颜色

    vscode主题颜色 prototype javascript双等号引起的类型转换,js隐性类型转换步骤 code...

  • 教你打造一款颜值逆天的VS Code -2

    三、挑选一个满意的代码高亮主题 首选项 -> 颜色主题,会自动弹出如图所示的颜色主题列表弹窗。VS Code为用户...

  • Flutter创建圆角文字图形

    使用CircleAvatar,默认有背景颜色(主题颜色)

  • Flutter学习中的问题记录: Drawer

    使用Drawer遇到一个问题:iOS刘海没有填充当前主题颜色,Android的状态栏也没有填充当前主题颜色 原代码...

  • Tailwind Color

    Tailwind主题颜色 主题颜色按照红橙黄绿青蓝紫的顺序 主题色描述black黑色white白色gray灰色re...

网友评论

      本文标题:一个Lispworks颜色主题

      本文链接:https://www.haomeiwen.com/subject/spgwhrtx.html