diff options
Diffstat (limited to '')
-rw-r--r-- | src/themes/solarized-dark.json | 204 |
1 files changed, 204 insertions, 0 deletions
diff --git a/src/themes/solarized-dark.json b/src/themes/solarized-dark.json new file mode 100644 index 0000000..3451cda --- /dev/null +++ b/src/themes/solarized-dark.json @@ -0,0 +1,204 @@ +{ + "$schema": "https://lnav.org/schemas/config-v1.schema.json", + "ui": { + "theme-defs": { + "solarized-dark": { + "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": "$base03", + "color": "semantic()" + }, + "text": { + "color": "$base0", + "background-color": "$base03" + }, + "alt-text": { + "color": "$base0", + "background-color": "$base03", + "bold": true + }, + "ok": { + "color": "$green", + "bold": true + }, + "error": { + "color": "$red", + "bold": true + }, + "warning": { + "color": "$yellow", + "bold": true + }, + "hidden": { + "color": "$yellow", + "bold": true + }, + "adjusted-time": { + "color": "$magenta" + }, + "skewed-time": { + "color": "$yellow" + }, + "offset-time": { + "color": "$cyan" + }, + "invalid-msg": { + "color": "$yellow" + }, + "popup": { + "color": "$base00", + "background-color": "$base3" + }, + "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": "$base01" + }, + "doc-directive": { + "color": "$cyan" + }, + "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": "$base02", + "background-color": "$blue", + "bold": true + }, + "subtitle": { + "color": "$base00", + "background-color": "$cyan", + "bold": true + }, + "text": { + "color": "$base2", + "background-color": "$base01" + }, + "warn": { + "color": "$yellow", + "background-color": "$base01" + }, + "alert": { + "color": "$red", + "background-color": "$base01" + }, + "active": { + "color": "$green", + "background-color": "$base01" + }, + "info": { + "color": "$base1", + "background-color": "$base02" + }, + "inactive": { + "color": "$base1", + "background-color": "$base02" + }, + "inactive-alert": { + "color": "$red", + "background-color": "$base02" + } + }, + "log-level-styles": { + "warning": { + "color": "$yellow" + }, + "error": { + "color": "$red" + }, + "critical": { + "color": "$red" + }, + "fatal": { + "color": "$red" + } + } + } + } + } +}
\ No newline at end of file |