1 | # The Four Seasons skins demonstrate how to use direct RGB true colors. |
---|
2 | # |
---|
3 | # As a prerequisite, you will need: |
---|
4 | # 1) Midnight Commander version 4.8.19 or newer. |
---|
5 | # 2) Midnight Commander being compiled against S-Lang (rather than ncurses). |
---|
6 | # 3) S-Lang version 2.3.1 or newer. |
---|
7 | # 4) A 64-bit operating system. (Future S-Lang version 3 will support |
---|
8 | # true colors on 32-bit OSes too. Until then, you can install a patched |
---|
9 | # S-Lang and compile MC against it by following the instructions at |
---|
10 | # http://midnight-commander.org/wiki/doc-devel/slang-16Mcolors-32bits.) |
---|
11 | # 5) A terminal emulator that supports true colors, such as e.g. |
---|
12 | # GNOME Terminal and other VTE derivatives, KDE's Konsole, |
---|
13 | # iTerm2 for macOS. See https://gist.github.com/XVilka/8346728 for a |
---|
14 | # more exhaustive and up to date list. |
---|
15 | # 6) The TERM environment variable describing 256 color support, e.g.: |
---|
16 | # export TERM=xterm-256color |
---|
17 | # or inside screen or tmux: |
---|
18 | # export TERM=screen-256color |
---|
19 | # Verify by running tput colors, it should report 256. |
---|
20 | # 7) The COLORTERM env variable set to either "truecolor" or "24bit", e.g.: |
---|
21 | # export COLORTERM=truecolor |
---|
22 | # |
---|
23 | # True colors are referred to by the standard #rrggbb or #rgb notation, the |
---|
24 | # short form is interpreted by doubling each hex digit. |
---|
25 | # |
---|
26 | # In addition to these the 256 palette colors are still available, and |
---|
27 | # obviously so are the attributes. See the sand256.ini skin file for details. |
---|
28 | |
---|
29 | [skin] |
---|
30 | # Sunshine, ocean, beach, beachball, sunshades, ice cream. |
---|
31 | # (Pistachio is out.) |
---|
32 | description = Four Seasons – Summer |
---|
33 | truecolors = true |
---|
34 | |
---|
35 | [Lines] |
---|
36 | horiz = ─ |
---|
37 | vert = │ |
---|
38 | lefttop = ┌ |
---|
39 | righttop = ┐ |
---|
40 | leftbottom = └ |
---|
41 | rightbottom = ┘ |
---|
42 | topmiddle = ┬ |
---|
43 | bottommiddle = ┴ |
---|
44 | leftmiddle = ├ |
---|
45 | rightmiddle = ┤ |
---|
46 | cross = ┼ |
---|
47 | dhoriz = ═ |
---|
48 | dvert = ║ |
---|
49 | dlefttop = ╔ |
---|
50 | drighttop = ╗ |
---|
51 | dleftbottom = ╚ |
---|
52 | drightbottom = ╝ |
---|
53 | dtopmiddle = ╤ |
---|
54 | dbottommiddle = ╧ |
---|
55 | dleftmiddle = ╟ |
---|
56 | drightmiddle = ╢ |
---|
57 | |
---|
58 | [aliases] |
---|
59 | Main = #ffedb3 |
---|
60 | MainFg = #000 |
---|
61 | MarkedFg = #e311aa |
---|
62 | HeaderFg = MarkedFg |
---|
63 | Selected = #d9b64a |
---|
64 | Dialog = #a7f25a |
---|
65 | DialogFocus = #f864f6 |
---|
66 | Input = #d7ffad |
---|
67 | PaleFg = #777 |
---|
68 | Error = #d40707 |
---|
69 | ErrorFocus = #db7b7b |
---|
70 | Top = #46cef3 |
---|
71 | MenuActive = #85e1fb |
---|
72 | MenuSelected = #fae728 |
---|
73 | Bottom = #f4ff83 |
---|
74 | BottomNumber = DialogFocus |
---|
75 | BottomNumberFg = #000 |
---|
76 | Help = Bottom |
---|
77 | HelpBoldFg = DialogFocus |
---|
78 | HelpItalicFg = ErrorFocus |
---|
79 | HelpLinkFg = #168bac |
---|
80 | EditorLineNumber = #fff5d5 |
---|
81 | EditorWhitespace = EditorLineNumber |
---|
82 | EditorRightMargin = EditorWhitespace |
---|
83 | EditorBookmark = Bottom |
---|
84 | EditorFindAll = Top |
---|
85 | EditorVoid = #f9faac |
---|
86 | EditorFrameFg = MainFg |
---|
87 | EditorFrameActiveFg = MarkedFg |
---|
88 | EditorFrameDragFg = Top |
---|
89 | ViewerBoldFg = MarkedFg |
---|
90 | ViewerUnderlinedFg = HelpLinkFg |
---|
91 | ViewerSelected = Dialog |
---|
92 | DiffAdd = #80e080 |
---|
93 | DiffChangedLine = Bottom |
---|
94 | DiffGap = #e08080 |
---|
95 | |
---|
96 | [core] |
---|
97 | _default_ = MainFg;Main |
---|
98 | selected = ;Selected |
---|
99 | marked = MarkedFg;;bold |
---|
100 | markselect = MarkedFg;Selected;bold |
---|
101 | gauge = ;DialogFocus |
---|
102 | input = #000;Input |
---|
103 | inputunchanged = PaleFg;Input |
---|
104 | inputmark = #000;DialogFocus |
---|
105 | disabled = PaleFg;Dialog |
---|
106 | reverse = #000;Bottom |
---|
107 | commandlinemark = #000;DialogFocus |
---|
108 | header = HeaderFg |
---|
109 | |
---|
110 | [dialog] |
---|
111 | _default_ = #000;Dialog |
---|
112 | dfocus = ;DialogFocus |
---|
113 | dhotnormal = ;;underline |
---|
114 | dhotfocus = ;DialogFocus;underline |
---|
115 | dtitle = ;;bold |
---|
116 | |
---|
117 | [error] |
---|
118 | _default_ = #fff;Error |
---|
119 | errdfocus = ;ErrorFocus |
---|
120 | errdhotnormal = ;;underline |
---|
121 | errdhotfocus = ;ErrorFocus;underline |
---|
122 | errdtitle = ;;bold |
---|
123 | |
---|
124 | [filehighlight] |
---|
125 | directory = |
---|
126 | executable = #00af00 |
---|
127 | symlink = #870087 |
---|
128 | hardlink = |
---|
129 | stalelink = #d70000 |
---|
130 | device = #87af5f |
---|
131 | special = #afaf5f |
---|
132 | core = #d7af00 |
---|
133 | temp = #9e9e9e |
---|
134 | archive = #005f87 |
---|
135 | doc = #5f00af |
---|
136 | source = #af5f00 |
---|
137 | media = #0087d7 |
---|
138 | graph = #00afaf |
---|
139 | database = #d7875f |
---|
140 | |
---|
141 | [menu] |
---|
142 | _default_ = #000;MenuActive |
---|
143 | menusel = ;MenuSelected |
---|
144 | menuhot = ;;underline |
---|
145 | menuhotsel = ;MenuSelected;underline |
---|
146 | menuinactive = ;Top |
---|
147 | |
---|
148 | [popupmenu] |
---|
149 | _default_ = #000;Dialog |
---|
150 | menusel = ;DialogFocus |
---|
151 | menutitle = ;;bold |
---|
152 | |
---|
153 | [buttonbar] |
---|
154 | hotkey = BottomNumberFg;BottomNumber |
---|
155 | button = #000;Bottom |
---|
156 | |
---|
157 | [statusbar] |
---|
158 | _default_ = #000;Top |
---|
159 | |
---|
160 | [help] |
---|
161 | _default_ = #000;Help |
---|
162 | helpbold = HelpBoldFg;;bold |
---|
163 | helpitalic = HelpItalicFg;;italic |
---|
164 | helplink = HelpLinkFg;;underline |
---|
165 | helpslink = Help;HelpLinkFg |
---|
166 | |
---|
167 | [editor] |
---|
168 | editbold = MarkedFg;;bold |
---|
169 | editmarked = ;Selected |
---|
170 | editwhitespace = ;EditorWhitespace |
---|
171 | editlinestate = #000;EditorLineNumber |
---|
172 | bookmark = #000;EditorBookmark |
---|
173 | bookmarkfound = #000;EditorFindAll |
---|
174 | editrightmargin = ;EditorRightMargin |
---|
175 | editbg = ;EditorVoid |
---|
176 | editframe = EditorFrameFg |
---|
177 | editframeactive = EditorFrameActiveFg |
---|
178 | editframedrag = EditorFrameDragFg |
---|
179 | |
---|
180 | [viewer] |
---|
181 | viewbold = ViewerBoldFg;;bold |
---|
182 | viewunderline = ViewerUnderlinedFg;;underline |
---|
183 | viewselected = #000;ViewerSelected |
---|
184 | |
---|
185 | [diffviewer] |
---|
186 | added = ;DiffAdd |
---|
187 | changedline = ;DiffChangedLine |
---|
188 | changednew = ;DiffAdd |
---|
189 | changed = ;DiffGap |
---|
190 | removed = ;DiffGap |
---|
191 | error = #fff;Error |
---|
192 | |
---|
193 | [widget-common] |
---|
194 | sort-sign-up = ▴ |
---|
195 | sort-sign-down = ▾ |
---|
196 | |
---|
197 | [widget-panel] |
---|
198 | hiddenfiles-sign-show = • |
---|
199 | hiddenfiles-sign-hide = ○ |
---|
200 | history-prev-item-sign = ◂ |
---|
201 | history-next-item-sign = ▸ |
---|
202 | history-show-list-sign = ▾ |
---|
203 | filename-scroll-left-char = ◂ |
---|
204 | filename-scroll-right-char = ▸ |
---|
205 | |
---|
206 | [widget-scollbar] |
---|
207 | first-vert-char = ▴ |
---|
208 | last-vert-char = ▾ |
---|
209 | first-horiz-char = ◂ |
---|
210 | last-horiz-char = ▸ |
---|
211 | current-char = ■ |
---|
212 | background-char = ▒ |
---|
213 | |
---|
214 | [widget-editor] |
---|
215 | window-state-char = ↕ |
---|
216 | window-close-char = ✕ |
---|