diff options
Diffstat (limited to '')
-rw-r--r-- | src/themes/night-owl.json | 213 |
1 files changed, 213 insertions, 0 deletions
diff --git a/src/themes/night-owl.json b/src/themes/night-owl.json new file mode 100644 index 0000000..7e775e3 --- /dev/null +++ b/src/themes/night-owl.json @@ -0,0 +1,213 @@ +{ + "$schema": "https://lnav.org/schemas/config-v1.schema.json", + "ui": { + "theme-defs": { + "night-owl": { + "vars": { + "black": "#011627", + "red": "#ff6868", + "green": "#007f00", + "yellow": "#cdcd00", + "blue": "#5394ec", + "magenta": "#ff70ff", + "cyan": "#33cccc", + "white": "#d6deeb", + "semantic_highlight_color": "semantic()" + }, + "styles": { + "identifier": { + "background-color": "#011627", + "color": "semantic()" + }, + "text": { + "color": "#d6deeb", + "background-color": "#011627" + }, + "alt-text": { + "color": "#d6deeb", + "background-color": "#011627", + "bold": true + }, + "ok": { + "color": "$green", + "bold": true + }, + "error": { + "color": "#ef5350", + "bold": true + }, + "warning": { + "color": "#b39554", + "bold": true + }, + "hidden": { + "color": "$yellow", + "bold": true + }, + "adjusted-time": { + "color": "$magenta" + }, + "skewed-time": { + "color": "$yellow" + }, + "offset-time": { + "color": "$cyan" + }, + "invalid-msg": { + "color": "$yellow" + }, + "focused": { + "color": "$black", + "background-color": "#666" + }, + "disabled-focused": { + "color": "$white", + "background-color": "#333" + }, + "popup": { + "color": "$base00", + "background-color": "$base3" + }, + "h1": { + "underline": true + }, + "h2": { + "underline": true + }, + "h3": { + "underline": true + }, + "h4": { + "underline": true + }, + "h5": { + "underline": true + }, + "h6": { + "underline": true + } + }, + "syntax-styles": { + "keyword": { + "color": "#c792ea" + }, + "string": { + "color": "#ecc48d", + "bold": true + }, + "comment": { + "color": "#676e95" + }, + "doc-directive": { + "color": "#addb67" + }, + "variable": { + "color": "#addb67" + }, + "symbol": { + "color": "#82aaff" + }, + "number": { + "color": "#f78c6c" + }, + "re-special": { + "color": "$cyan" + }, + "re-repeat": { + "color": "$yellow" + }, + "diff-delete": { + "color": "#b03435" + }, + "diff-add": { + "color": "#264b33" + }, + "diff-section": { + "color": "$magenta" + }, + "spectrogram-low": { + "background-color": "$green" + }, + "spectrogram-medium": { + "background-color": "$yellow" + }, + "spectrogram-high": { + "background-color": "$red" + }, + "file": { + "color": "#82aaff" + } + }, + "status-styles": { + "disabled-title": { + "color": "#5394ec", + "background-color": "#353535", + "bold": true + }, + "title": { + "color": "#f8f0f0", + "background-color": "#2d5a80", + "bold": true + }, + "subtitle": { + "color": "#f8f8f0", + "background-color": "#005f5f" + }, + "info": { + "color": "#aaa", + "background-color": "#0F1F2B" + }, + "text": { + "color": "#f8f8f0", + "background-color": "#162d40" + }, + "warn": { + "color": "#b39554", + "background-color": "#162d40" + }, + "alert": { + "color": "#ef5350", + "background-color": "#162d40" + }, + "active": { + "color": "#264b33", + "background-color": "#162d40" + }, + "inactive": { + "color": "#f0f0f0", + "background-color": "#0F1F2B" + }, + "inactive-alert": { + "color": "#ef5350", + "background-color": "#0F1F2B" + }, + "hotkey": { + "color": "#2d5a80", + "bold": true, + "underline": true + }, + "title-hotkey": { + "color": "$black", + "background-color": "#2d5a80", + "bold": true, + "underline": true + } + }, + "log-level-styles": { + "warning": { + "color": "#b39554" + }, + "error": { + "color": "#ef5350" + }, + "critical": { + "color": "#ef5350" + }, + "fatal": { + "color": "#ef5350" + } + } + } + } + } +}
\ No newline at end of file |