aboutsummaryrefslogtreecommitdiffstats
path: root/test/data
diff options
context:
space:
mode:
Diffstat (limited to 'test/data')
-rw-r--r--test/data/themes/faces-test-dark-theme.el33
-rw-r--r--test/data/themes/faces-test-light-theme.el32
2 files changed, 65 insertions, 0 deletions
diff --git a/test/data/themes/faces-test-dark-theme.el b/test/data/themes/faces-test-dark-theme.el
new file mode 100644
index 00000000000..2c114069f9c
--- /dev/null
+++ b/test/data/themes/faces-test-dark-theme.el
@@ -0,0 +1,33 @@
1;;; faces-test-dark-theme.el --- A dark theme from tests ;;; -*- lexical-binding: t; -*-
2
3;; Copyright (C) 2019 Free Software Foundation, Inc.
4
5;; This program is free software; you can redistribute it and/or modify
6;; it under the terms of the GNU General Public License as published by
7;; the Free Software Foundation, either version 3 of the License, or
8;; (at your option) any later version.
9
10;; This program is distributed in the hope that it will be useful,
11;; but WITHOUT ANY WARRANTY; without even the implied warranty of
12;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13;; GNU General Public License for more details.
14
15;; You should have received a copy of the GNU General Public License
16;; along with this program. If not, see <https://www.gnu.org/licenses/>.
17
18;;; Commentary:
19
20;;; Code:
21
22(deftheme faces-test-dark
23 "")
24
25(custom-theme-set-faces
26 'faces-test-dark
27 '(diff-added ((t (:foreground "Green" :extend t))))
28 '(diff-changed-face ((t (:foreground "Khaki"))))
29 '(diff-file-header-face ((t (:background "grey20" :foreground "ivory1")))))
30
31(provide-theme 'faces-test-dark)
32
33;;; faces-test-dark-theme.el ends here
diff --git a/test/data/themes/faces-test-light-theme.el b/test/data/themes/faces-test-light-theme.el
new file mode 100644
index 00000000000..fc22d47cf8d
--- /dev/null
+++ b/test/data/themes/faces-test-light-theme.el
@@ -0,0 +1,32 @@
1;;; faces-test-light-theme.el --- A dark theme from tests ;;; -*- lexical-binding: t; -*-
2
3;; Copyright (C) 2019 Free Software Foundation, Inc.
4
5;; This program is free software; you can redistribute it and/or modify
6;; it under the terms of the GNU General Public License as published by
7;; the Free Software Foundation, either version 3 of the License, or
8;; (at your option) any later version.
9
10;; This program is distributed in the hope that it will be useful,
11;; but WITHOUT ANY WARRANTY; without even the implied warranty of
12;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13;; GNU General Public License for more details.
14
15;; You should have received a copy of the GNU General Public License
16;; along with this program. If not, see <https://www.gnu.org/licenses/>.
17
18;;; Commentary:
19
20;;; Code:
21
22(deftheme faces-test-light
23 "")
24
25(custom-theme-set-faces
26 'faces-test-light
27 '(diff-added ((t (:inherit diff-changed :background "light green" :extend t))))
28 '(diff-changed ((t (:background "light steel blue")))))
29
30(provide-theme 'faces-test-light)
31
32;;; faces-test-light-theme.el ends here