mirror of
https://github.com/genodelabs/genode.git
synced 2025-01-02 03:56:42 +00:00
ae7fbd6b1a
The terminal now got a configurable palette for 16 colors (8 normal, 8 bright/bold). <config> <palette> <color index="0" value="#000000"/> <!-- black is real black --> <color index="8" value="#101010"/> <!-- bright black stands out a bit --> </palette> </config> Note, the old (undocumented) <color index="..." bg="..."> configuration scheme is no longer supported. Also, this commit adds a pleasing default palette that ensures readability of ViM's standard hightlighting. Fixes #3406
27 lines
753 B
Plaintext
27 lines
753 B
Plaintext
<config>
|
|
<vfs>
|
|
<rom name="Vera.ttf"/>
|
|
<rom name="VeraMono.ttf"/>
|
|
<dir name="fonts">
|
|
<dir name="title">
|
|
<ttf name="regular" path="/Vera.ttf" size_px="18" cache="256K"/>
|
|
</dir>
|
|
<dir name="text">
|
|
<ttf name="regular" path="/Vera.ttf" size_px="14" cache="256K"/>
|
|
</dir>
|
|
<dir name="annotation">
|
|
<ttf name="regular" path="/Vera.ttf" size_px="11" cache="256K"/>
|
|
</dir>
|
|
<dir name="monospace">
|
|
<ttf name="regular" path="/VeraMono.ttf" size_px="14" cache="256K"/>
|
|
</dir>
|
|
</dir>
|
|
</vfs>
|
|
|
|
<!-- policy when using this file as fonts-fs config -->
|
|
<default-policy root="/fonts" />
|
|
|
|
<!-- color definition when this file is used as terminal config -->
|
|
<palette> <color index="0" value="#1c2232"/> </palette>
|
|
</config>
|