mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-06 06:20:55 -08:00
11 lines
255 B
EmacsLisp
11 lines
255 B
EmacsLisp
;;; custom--test-theme.el --- A test theme. -*- lexical-binding:t -*-
|
|
|
|
(deftheme custom--test
|
|
"A test theme.")
|
|
|
|
(custom-theme-set-variables
|
|
'custom--test
|
|
'(custom--test-user-option 'bar)
|
|
'(custom--test-variable 'bar))
|
|
|
|
(provide-theme 'custom--test)
|