-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaterial-ocean-dark-theme.el
66 lines (55 loc) · 1.94 KB
/
material-ocean-dark-theme.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
;;; material-ocean-dark-theme.el --- Material themes: ocean-dark -*- lexical-binding : t -*-
;; URL: https://github.com/Patrick-Poitras/emacs-material-ocean
;; Version: 1.0
;; Package-Requires: ((emacs "26.1"))
(require 'material-ocean-themes)
;;; Commentary:
;; Material theme ocean -- dark variant.
;;; Code:
(material-ocean-themes-deftheme
material-ocean-dark
"A port of the VSCode theme 'Community Material Themes - Ocean Dark'"
((((class color) (min-colors #xffffff)))
;; Element colors.
(Caret "#FFCC00")
(EditorBackground "#000000")
(EditorBackgroundDarker "#000000")
(EditorForeground "#A6ACCD")
(CommentsForeground "#4B526D")
(SelectionBackground "#333955")
(ModeBarBackground "#0F111A")
(ModeBarForeground "#525975")
(HighlightActiveBackground "#090B10")
(LineNumberUnselected "#252836")
(Highlight-Orange "DarkOrange2")
(Highlight-Gray "LightSteelBlue")
;; Text colors.
(White "#FFFFFF")
(Black "#000000")
(Blue "#82AAFF")
(PaleBlue "#B2CCD6")
(Cyan "#89DDFF")
(Green "#C3E88D")
(Magenta "#C792EA")
(Red "#FF5370")
(Yellow "#FFCB6B")
(BrightBlack "#464B5D")
(DeepYellow "#FAA452")
(PaleRed "#FF7777")
(PaleOrange "#F78C6C")
(DiffInactiveBackground "#0E152D")
(A-DiffCurrentBackground "#3F0E15")
(A-DiffFineBackground "#581720")
(B-DiffCurrentBackground "#153B3F")
(B-DiffFineBackground "#23494C")
(C-DiffCurrentBackground "#423D0F")
(C-DiffFineBackground "#5C5618")
(Add-DiffCurrentBackground "#17380C")
(Add-DiffFineBackground "#224E14")))
;;;###autoload
(when (and (boundp 'custom-theme-load-path)
load-file-name)
(add-to-list 'custom-theme-load-path
(file-name-as-directory (file-name-directory load-file-name))))
(provide-theme 'material-ocean-dark)
;;; material-ocean-dark-theme.el ends here