diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 20:01:36 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 20:01:36 +0000 |
commit | 62e4c68907d8d33709c2c1f92a161dff00b3d5f2 (patch) | |
tree | adbbaf3acf88ea08f6eeec4b75ee98ad3b07fbdc /src/themes/eldar.json | |
parent | Initial commit. (diff) | |
download | lnav-62e4c68907d8d33709c2c1f92a161dff00b3d5f2.tar.xz lnav-62e4c68907d8d33709c2c1f92a161dff00b3d5f2.zip |
Adding upstream version 0.11.2.upstream/0.11.2
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | src/themes/eldar.json | 200 |
1 files changed, 200 insertions, 0 deletions
diff --git a/src/themes/eldar.json b/src/themes/eldar.json new file mode 100644 index 0000000..f46b6cf --- /dev/null +++ b/src/themes/eldar.json @@ -0,0 +1,200 @@ +{ + "$schema": "https://lnav.org/schemas/config-v1.schema.json", + "ui": { + "theme-defs": { + "eldar": { + "vars": { + "black": "#000000", + "yellow": "#fce94f", + "red": "#ef2929", + "magenta": "#ad7fa8", + "blue": "#729fcf", + "cyan": "#34e2e2", + "green": "#8ae234", + "white": "#ffffff", + "semantic_highlight_color": "semantic()" + }, + "styles": { + "identifier": { + "background-color": "", + "color": "semantic()" + }, + "text": { + "color": "$white", + "background-color": "" + }, + "alt-text": { + "color": "$white", + "background-color": "", + "bold": true + }, + "ok": { + "color": "$green", + "bold": true + }, + "error": { + "color": "$red", + "bold": true + }, + "warning": { + "color": "$yellow", + "bold": true + }, + "hidden": { + "color": "$yellow", + "bold": true + }, + "cursor-line": { + "color": "$cyan", + "background-color": "$red", + "bold": true, + "underline": true + }, + "adjusted-time": { + "color": "$magenta" + }, + "skewed-time": { + "color": "$yellow" + }, + "offset-time": { + "color": "$cyan" + }, + "invalid-msg": { + "color": "$yellow" + }, + "popup": { + "color": "$black", + "background-color": "Grey37" + }, + "scrollbar": { + "color": "$black", + "background-color": "$white" + }, + "h1": { + "underline": true + }, + "h2": { + "underline": true + }, + "h3": { + "underline": true + }, + "h4": { + "underline": true + }, + "h5": { + "underline": true + }, + "h6": { + "underline": true + } + }, + "syntax-styles": { + "keyword": { + "color": "$yellow" + }, + "string": { + "color": "$magenta", + "bold": true + }, + "comment": { + "color": "$cyan" + }, + "doc-directive": { + "color": "$green" + }, + "number": { + "color": "$red" + }, + "variable": { + "color": "$green" + }, + "symbol": { + "color": "$green" + }, + "re-special": { + "color": "$cyan" + }, + "re-repeat": { + "color": "$yellow" + }, + "diff-delete": { + "color": "$red" + }, + "diff-add": { + "color": "$green" + }, + "diff-section": { + "color": "$magenta" + }, + "spectrogram-low": { + "background-color": "$green" + }, + "spectrogram-medium": { + "background-color": "$yellow" + }, + "spectrogram-high": { + "background-color": "$red" + }, + "file": { + "color": "$blue" + } + }, + "status-styles": { + "title": { + "color": "$black", + "background-color": "$blue", + "bold": true + }, + "subtitle": { + "color": "$black", + "background-color": "$cyan", + "bold": true + }, + "text": { + "color": "$black", + "background-color": "#999" + }, + "warn": { + "color": "$yellow", + "background-color": "#999" + }, + "alert": { + "color": "$red", + "background-color": "#999" + }, + "active": { + "color": "$green", + "background-color": "#999" + }, + "info": { + "color": "$black", + "background-color": "Grey" + }, + "inactive": { + "color": "$black", + "background-color": "Grey" + }, + "inactive-alert": { + "color": "$red", + "background-color": "Grey" + } + }, + "log-level-styles": { + "warning": { + "color": "$yellow" + }, + "error": { + "color": "$red" + }, + "critical": { + "color": "$red" + }, + "fatal": { + "color": "$red" + } + } + } + } + } +}
\ No newline at end of file |