Files
.emacs.d/lisp/my-base16-palette.el
User ea8d9945fa chore(config): Refactor Emacs configuration with multiple improvements
- Replace projectile with built-in project.el
- Add cal-china-x for Chinese lunar calendar support
- Add dired-gitignore integration with dirvish
- Add mwim for smarter line navigation
- Add keycast mode for key display
- Add ef-themes theme collection
- Improve corfu terminal handling for Emacs 31+
- Add gptel-agent-project and consult-ripgrep-project helpers
- Remove custom.el from repo, support init-local.el for local config
- Update theme faces for transient, keycast, and calendar holidays
- Various keybinding additions and cleanup
2026-05-24 12:34:41 +08:00

35 lines
996 B
EmacsLisp

;;; my-base16-palette.el --- Base16 color palette for solarized -*- lexical-binding: t -*-
;;; Commentary:
;; Palette of my-base16-theme .
;;; Code:
(defvar my-base16-dark-core-palette
'("#062624" ; darkest-base: 最深背景
"#E3FCFB" ; brightest-base: 最亮前景
"#A87C04" ; yellow: 黄色
"#C24713" ; orange: 橙色
"#CE2825" ; red: 红色
"#d33682" ; magenta: 品红
"#6c71c4" ; violet: 紫罗兰
"#2570CD" ; blue: 蓝色
"#01928D" ; cyan: 青色
"#3A9C36")) ; green: 绿色
(defvar my-base16-light-core-palette
'("#062624" ; darkest-base: 最深背景
"#E3FFE6" ; brightest-base: 最亮前景
"#A87C04" ; yellow: 黄色
"#C24713" ; orange: 橙色
"#CE2825" ; red: 红色
"#d33682" ; magenta: 品红
"#6c71c4" ; violet: 紫罗兰
"#2570CD" ; blue: 蓝色
"#01928D" ; cyan: 青色
"#3A9C36")) ; green: 绿色
(provide 'my-base16-palette)
;;; my-base16-palette.el ends here