-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimple_dark.penta
99 lines (83 loc) · 5.64 KB
/
simple_dark.penta
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
" ==Pentadactyl_Color_Scheme==
" name: Simple Dark
" ==Simple_Colorscheme_Settings==
"Clear previous colorscheme
hi clear
"StatusLine settings
hi StatusLineNormal -a color: #ffffff !important; background-color: #000000 !important; font-weight: bold !important;
hi StatusLineBroken -a color: #000000 !important; background-color: #afafff !important;
hi StatusLineSecure -a color: #000000 !important; background-color: #afffaf !important;
hi StatusLineExtended -a color: #000000 !important; background-color: #afffaf !important;
"CmdLine settings excluding Gradient
hi CmdLine -a color: inherit !important; background: inherit !important; font-weight: normal !important; padding: 3px !important;
hi CmdCmdLine -a color: #ffffff !important; background: #111111 !important; font-weight: normal !important;
hi Normal -a color: #ffffff !important; background: #111111 !important; font-weight: bold !important;
hi CompDesc -a color: inherit; width: 50%; font-size: 8pt;
hi CompGroup -a color: inherit; font-weight: bold !important;
hi CompIcon -a display: none;
hi CompItem -a color: inherit; background: inherit; font-weight: bold !important;
hi CompItem[selected] -a color: #ffffff !important; background: #4683b4; font-weight: bold !important;
hi CompLess -a text-align: center; height: 0; line-height: .5ex; padding-top: 1ex;
hi CompMore -a text-align: center; height: .5ex; line-height: .5ex; margin-bottom: -.5ex;
hi CompMsg -a font-style: italic;
hi CompResult -a width: 45%; overflow: hidden; font-size: 8pt; font-family: monospace; font-weight: normal;
hi CompTitle -a color: #ffffff !important; background: #000000 !important; font-weight: bold !important;
hi CompTitle>* -a padding: 0 .5ex;
hi CompTitleSep -a background: #00bbff !important; background: -moz-linear-gradient(0deg, #000000, #cccccc);
"Options for Filter, uncomment the one you want and make sure others are commented
""Switches from maroon to light blue when selected
"hi Filter -a font-weight: bold; color: #00bfff !important;
"hi 'CompItem[selected] Filter' -a color: #00468f !important;
"hi 'CompItem[selected] Object' -a color: #00468f !important;
" 'CompItem[selected] Object' is needed because of the orange color used to
""" distinguish it from other JavaScript options when using :js
""No switch, stays at olive
"hi Filter -a font-weight: bold; color: #808000 !important;
"hi 'CompItem[selected] Filter' -a color: #808000 !important;
""Same as HintActive color
"hi Filter -a font-weight: bold; color: #4682b4 !important;
"hi 'CompItem[selected] Filter' -a color: #4682b4 !important;
""Stays at saddle brown
hi Filter -a font-weight: bold; color: orange !important;
hi 'CompItem[selected] Filter' -a color: orange !important;
hi 'CompItem[selected] Function' -a color: #aaaaaa !important;
"Used with ]f and [f
hi FrameIndicator -a background-color: #222222; opacity: 0.6; z-index: 999; position: fixed; top: 0; bottom: 0; left: 0; right: 0;
"Hint section
hi Hint font-family: Sans; font-size: 11px !important; font-weight: bold !important; color: #ffffff !important; background-color: rgba(0, 0, 0, 0.7) !important; border: solid 1px #000000 !important; position: absolute !important;
hi Hint::after content: attr(number);
hi HintActive background: #4682b4 !important; color: #ffffff !important;
hi HintElem background-color: inherit !important;
hi HintImage opacity: .5 !important;
"Other important stuff
hi Bell -a border: 0 none; background-color: inherit;
"I don't bother with Disabled and Enabled since they're both satisfactory to me
hi ErrorMsg -a color: red !important; background: inherit !important;
hi Function -a color: green !important; background: inherit !important;
hi Indicator -a color: #8b0000 !important; font-weight: bold; width: 4px;
hi InfoMsg -a color: #ffffff !important; background: #111111 !important; font-weight: normal !important;
hi LineNr -a color: red !important; background: inherit !important;
hi Message -a color: #ffffff !important; background: #111111 !important; font-weight: bold; white-space: normal; min-width: 100%; padding-left: 2em; text-indent: -2em; display: block;
"CmdLine when Not in Use
hi ModeMsg -a color: inherit !important; background: inherit !important; font-weight: bold !important;
hi MoreMsg -a color: inherit !important; background: inherit !important;
hi NonText -a color: lightblue !important; min-height: 16px; padding-left: 2px;
hi Object -a color: orange !important; background: inherit !important;
hi Question -a color: inherit !important; background: inherit !important; font-weight: bold;
hi Search -a font-size: inherit !important; padding: 0; color: inherit !important; background-color: yellow; padding: 0;
hi Tag -a color: inherit !important; background: inherit !important;
hi Title -a color: inherit !important; background: inherit !important; font-weight: bold;
hi URL -a text-decoration: none; color: inherit; background: inherit;
hi URL:hover -a text-decoration: underline; cursor: pointer;
hi WarningMsg -a color: red !important; background: inherit !important;
"For other descriptions of each item, please see :h 'highlight'
"if util.OS.isWindows
" source pentadactyl/colors/userChrome-simple_dark.css
"else
" source .pentadactyl/colors/userChrome-simple_dark.css
"endif
"style -name statusbar chrome://* <<EOM
"#status-bar statusbarpanel { padding: 0 1px !important; }
"statusbarpanel > * { margin: 0 !important; padding: 0 2px 0 0 !important; }
"EOM
" vim: ft=vim: