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/solarized-light.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 'src/themes/solarized-light.json')
-rw-r--r-- | src/themes/solarized-light.json | 214 |
1 files changed, 214 insertions, 0 deletions
diff --git a/src/themes/solarized-light.json b/src/themes/solarized-light.json new file mode 100644 index 0000000..3e7c575 --- /dev/null +++ b/src/themes/solarized-light.json @@ -0,0 +1,214 @@ +{ + "$schema": "https://lnav.org/schemas/config-v1.schema.json", + "ui": { + "theme-defs": { + "solarized-light": { + "vars": { + "base03": "#002b36", + "base02": "#073642", + "base01": "#586e75", + "base00": "#657b83", + "base0": "#839496", + "base1": "#93a1a1", + "base2": "#eee8d5", + "base3": "#fdf6e3", + "black": "#002b36", + "yellow": "#b58900", + "orange": "#cb4b16", + "red": "#dc322f", + "magenta": "#d33682", + "violet": "#6c71c4", + "blue": "#268bd2", + "cyan": "#2aa198", + "green": "#859900", + "semantic_highlight_color": "semantic()" + }, + "styles": { + "identifier": { + "background-color": "$base3", + "color": "semantic()" + }, + "text": { + "color": "$base00", + "background-color": "$base3" + }, + "alt-text": { + "color": "$base00", + "background-color": "$base3", + "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": "$base00", + "background-color": "$base3" + }, + "scrollbar": { + "color": "$base3", + "background-color": "$base00" + }, + "focused": { + "color": "$base03", + "background-color": "$base01" + }, + "disabled-focused": { + "color": "$base0", + "background-color": "$base02" + }, + "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": "$cyan", + "bold": true + }, + "comment": { + "color": "$base1" + }, + "doc-directive": { + "color": "$blue" + }, + "variable": { + "color": "$blue" + }, + "symbol": { + "color": "$blue" + }, + "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": "$base2", + "background-color": "$base0", + "bold": true + }, + "subtitle": { + "color": "$base2", + "background-color": "$base01", + "bold": true + }, + "text": { + "color": "$base2", + "background-color": "$base03" + }, + "warn": { + "color": "$yellow", + "background-color": "$base03" + }, + "alert": { + "color": "$red", + "background-color": "$base03" + }, + "active": { + "color": "$green", + "background-color": "$base03" + }, + "info": { + "color": "$base1", + "background-color": "$base03" + }, + "inactive": { + "color": "$base1", + "background-color": "$base03" + }, + "inactive-alert": { + "color": "$red", + "background-color": "$base03" + } + }, + "log-level-styles": { + "warning": { + "color": "$yellow" + }, + "error": { + "color": "$red" + }, + "critical": { + "color": "$red" + }, + "fatal": { + "color": "$red" + } + } + } + } + } +}
\ No newline at end of file |