Ticket #3724: seasons-spring16M.5.ini

File seasons-spring16M.5.ini, 5.4 KB (added by egmont, 7 years ago)

Spring, v0.4

Line 
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.)
9#   5) A terminal emulator that supports true colors, such as e.g.
10#      GNOME Terminal and other VTE derivatives, KDE's Konsole,
11#      iTerm2 for macOS. See https://gist.github.com/XVilka/8346728 for a
12#      more exhaustive and up to date list.
13#   6) The TERM environment variable describing 256 color support, e.g.:
14#        export TERM=xterm-256color
15#      or inside screen or tmux:
16#        export TERM=screen-256color
17#      Verify by running tput colors, it should report 256.
18#   7) The COLORTERM env variable set to either "truecolor" or "24bit", e.g.:
19#        export COLORTERM=truecolor
20#
21# True colors are referred to by the standard #rrggbb or #rgb notation, the
22# short form is interpreted by doubling each hex digit.
23#
24# In addition to these the 256 palette colors are still available, and
25# obviously so are the attributes. See the sand256.ini skin file for details.
26
27[skin]
28    # Blooming.
29    # Slightly inspired by Gmail's Cherry Blossom theme.
30    description = Four Seasons – Spring
31    truecolors = true
32
33[Lines]
34    horiz = 
35    vert = │
36    lefttop = ┌
37    righttop = ┐
38    leftbottom = └
39    rightbottom = ┘
40    topmiddle = ┬
41    bottommiddle = ┴
42    leftmiddle = ├
43    rightmiddle = ┤
44    cross = ┼
45    dhoriz = ═
46    dvert = ║
47    dlefttop = ╔
48    drighttop = ╗
49    dleftbottom = ╚
50    drightbottom = ╝
51    dtopmiddle = ╤
52    dbottommiddle = ╧
53    dleftmiddle = ╟
54    drightmiddle = ╢
55
56[aliases]
57    Main = #f3ffe7
58    MainFg = #000
59    MarkedFg = #d14576
60    HeaderFg = MarkedFg
61    Selected = #d5f1b7
62    Dialog = Selected
63    DialogFocus = #b3de85
64    Input = Main
65    PaleFg = #777
66    Error = #c62b41
67    ErrorFocus = #e16d7e
68    Top = #f699a6
69    MenuActive = Bottom
70    MenuSelected = Top
71    Bottom = #ffc3cb
72    BottomNumber = #f4ef57
73    BottomNumberFg = #000
74    Help = #f6f28f
75    HelpBoldFg = #a95965
76    HelpItalicFg = Error
77    HelpLinkFg = #699f2f
78    EditorLineNumber = BottomNumber
79    EditorWhitespace = #fafff5
80    EditorRightMargin = EditorWhitespace
81    EditorBookmark = BottomNumber
82    EditorFindAll = Bottom
83    EditorVoid = BottomNumber
84    EditorFrameFg = MainFg
85    EditorFrameActiveFg = MarkedFg
86    EditorFrameDragFg = DialogFocus
87    ViewerSelected = EditorBookmark
88    DiffAdd = #80e080
89    DiffChangedLine = BottomNumber
90    DiffGap = #e08080
91
92[core]
93    _default_ = MainFg;Main
94    selected = ;Selected
95    marked = MarkedFg;;bold
96    markselect = MarkedFg;Selected;bold
97    gauge = ;DialogFocus
98    input = #000;Input
99    inputunchanged = PaleFg;Input
100    inputmark = #000;DialogFocus
101    disabled = PaleFg;Dialog
102    reverse = #000;Bottom
103    commandlinemark = #000;DialogFocus
104    header = HeaderFg
105
106[dialog]
107    _default_ = #000;Dialog
108    dfocus = ;DialogFocus
109    dhotnormal = ;;underline
110    dhotfocus = ;DialogFocus;underline
111    dtitle = ;;bold
112
113[error]
114    _default_ = #fff;Error
115    errdfocus = ;ErrorFocus
116    errdhotnormal = ;;underline
117    errdhotfocus = ;ErrorFocus;underline
118    errdtitle = ;;bold
119
120[filehighlight]
121    directory =
122    executable = rgb030
123    symlink = rgb202
124    hardlink =
125    stalelink = rgb404
126    device = rgb231
127    special = rgb331
128    core = rgb430
129    temp = gray15
130    archive = rgb012
131    doc = rgb103
132    source = rgb310
133    media = rgb024
134    graph = rgb033
135    database = rgb421
136
137[menu]
138    _default_ = #000;MenuActive
139    menusel = ;MenuSelected
140    menuhot = ;;underline
141    menuhotsel = ;MenuSelected;underline
142    menuinactive = ;Top
143
144[popupmenu]
145    _default_ = #000;Dialog
146    menusel = ;DialogFocus
147    menutitle = ;;bold
148
149[buttonbar]
150    hotkey = BottomNumberFg;BottomNumber
151    button = #000;Bottom
152
153[statusbar]
154    _default_ = #000;Top
155
156[help]
157    _default_ = #000;Help
158    helpbold = HelpBoldFg;;bold
159    helpitalic = HelpItalicFg;;italic
160    helplink = HelpLinkFg;;underline
161    helpslink = Help;HelpLinkFg
162
163[editor]
164    editbold = MarkedFg;;bold
165    editmarked = ;Selected
166    editwhitespace = ;EditorWhitespace
167    editlinestate = #000;EditorLineNumber
168    bookmark = #000;EditorBookmark
169    bookmarkfound = #000;EditorFindAll
170    editrightmargin = ;EditorRightMargin
171    editbg = ;EditorVoid
172    editframe = EditorFrameFg
173    editframeactive = EditorFrameActiveFg
174    editframedrag = EditorFrameDragFg
175
176[viewer]
177    viewbold = ;;bold
178    viewunderline = ;;underline
179    viewselected = #000;ViewerSelected
180
181[diffviewer]
182    added = ;DiffAdd
183    changedline = ;DiffChangedLine
184    changednew = ;DiffAdd
185    changed = ;DiffGap
186    removed = ;DiffGap
187    error = #fff;Error
188
189[widget-common]
190    sort-sign-up = 
191    sort-sign-down = ▾
192
193[widget-panel]
194    hiddenfiles-sign-show = 
195    hiddenfiles-sign-hide = ○
196    history-prev-item-sign = ◂
197    history-next-item-sign = ▸
198    history-show-list-sign = ▾
199    filename-scroll-left-char = ◂
200    filename-scroll-right-char = ▸
201
202[widget-scollbar]
203    first-vert-char = 
204    last-vert-char = ▾
205    first-horiz-char = ◂
206    last-horiz-char = ▸
207    current-char = ■
208    background-char = ▒
209
210[widget-editor]
211    window-state-char = 
212    window-close-char = ✕