Unify desktop theming around Rider palette
This commit is contained in:
22
rider-palette/.config/rider-palette/README.md
Normal file
22
rider-palette/.config/rider-palette/README.md
Normal file
@@ -0,0 +1,22 @@
|
||||
# Rider Palette Reuse
|
||||
|
||||
`palette.json` is the single source of truth for your shared Rider palette.
|
||||
|
||||
Regenerate all derived files with:
|
||||
|
||||
```bash
|
||||
python3 ~/.config/rider-palette/generate.py
|
||||
```
|
||||
|
||||
Generated outputs:
|
||||
|
||||
- `palette.sh`: shell env vars for prompts and scripts
|
||||
- `palette.css`: CSS variables for Waybar and Wofi
|
||||
- `palette.hyprland.conf`: Hyprlang variables for Hyprland and Hyprlock
|
||||
- `palette.rasi`: Rasi variables for Rofi
|
||||
- `tmux.conf`: tmux status and pane colors
|
||||
- `bash-prompt.sh`: bash prompt using the shared palette
|
||||
- `p10k.zsh`: Powerlevel10k overrides using the shared palette
|
||||
|
||||
This package is meant to be stowed from the dotfiles repo so that
|
||||
`~/.config/rider-palette/*` becomes available to the rest of the system.
|
||||
Binary file not shown.
32
rider-palette/.config/rider-palette/bash-prompt.sh
Normal file
32
rider-palette/.config/rider-palette/bash-prompt.sh
Normal file
@@ -0,0 +1,32 @@
|
||||
# Generated from palette.json by generate.py. Do not edit directly.
|
||||
# Rider-colored bash prompt using the shared palette.
|
||||
|
||||
# shellcheck shell=bash
|
||||
|
||||
if [ -r "$HOME/.config/rider-palette/palette.sh" ]; then
|
||||
. "$HOME/.config/rider-palette/palette.sh"
|
||||
fi
|
||||
|
||||
rider_fg() {
|
||||
local hex="${1#\#}"
|
||||
printf '\[\033[38;2;%d;%d;%dm\]' "$((16#${hex:0:2}))" "$((16#${hex:2:2}))" "$((16#${hex:4:2}))"
|
||||
}
|
||||
|
||||
RIDER_RESET='\[\033[0m\]'
|
||||
|
||||
__rider_git_branch() {
|
||||
command -v git >/dev/null 2>&1 || return 0
|
||||
git rev-parse --is-inside-work-tree >/dev/null 2>&1 || return 0
|
||||
|
||||
local branch
|
||||
branch="$(git symbolic-ref --quiet --short HEAD 2>/dev/null || git rev-parse --short HEAD 2>/dev/null)" || return 0
|
||||
[ -n "$branch" ] || return 0
|
||||
|
||||
printf ' %sgit:%s%s' "$(rider_fg "$RIDER_FUNC")" "$branch" "$RIDER_RESET"
|
||||
}
|
||||
|
||||
__rider_set_bash_prompt() {
|
||||
PS1="${debian_chroot:+($debian_chroot)}$(rider_fg "$RIDER_FG_BRIGHT")\u@\h${RIDER_RESET}$(rider_fg "$RIDER_BORDER"):$(rider_fg "$RIDER_KEYWORD")\w${RIDER_RESET}$(__rider_git_branch)$(rider_fg "$RIDER_BORDER") \$ ${RIDER_RESET}"
|
||||
}
|
||||
|
||||
PROMPT_COMMAND=__rider_set_bash_prompt
|
||||
239
rider-palette/.config/rider-palette/generate.py
Normal file
239
rider-palette/.config/rider-palette/generate.py
Normal file
@@ -0,0 +1,239 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
from pathlib import Path
|
||||
from textwrap import dedent
|
||||
|
||||
|
||||
ROOT = Path(__file__).resolve().parent
|
||||
PALETTE_FILE = ROOT / "palette.json"
|
||||
|
||||
|
||||
def load_palette() -> dict[str, str]:
|
||||
data = json.loads(PALETTE_FILE.read_text())
|
||||
return data["colors"]
|
||||
|
||||
|
||||
def hex_no_hash(value: str) -> str:
|
||||
return value.lstrip("#")
|
||||
|
||||
|
||||
def camel_from_snake(name: str) -> str:
|
||||
head, *tail = name.split("_")
|
||||
return head + "".join(part.capitalize() for part in tail)
|
||||
|
||||
|
||||
def write(path: Path, content: str) -> None:
|
||||
path.write_text(content.rstrip() + "\n")
|
||||
|
||||
|
||||
def render_palette_sh(colors: dict[str, str]) -> str:
|
||||
lines = [
|
||||
"# Generated from palette.json by generate.py. Do not edit directly.",
|
||||
"",
|
||||
]
|
||||
for name, value in colors.items():
|
||||
lines.append(f'export RIDER_{name.upper()}="{value}"')
|
||||
return "\n".join(lines)
|
||||
|
||||
|
||||
def render_palette_css(colors: dict[str, str]) -> str:
|
||||
lines = [
|
||||
"/* Generated from palette.json by generate.py. Do not edit directly. */",
|
||||
":root {",
|
||||
]
|
||||
for name, value in colors.items():
|
||||
lines.append(f" --rider-{name.replace('_', '-')}: {value};")
|
||||
lines.append("}")
|
||||
lines.append("")
|
||||
for name, value in colors.items():
|
||||
lines.append(f"@define-color rider-{name.replace('_', '-')} {value};")
|
||||
return "\n".join(lines)
|
||||
|
||||
|
||||
def render_palette_hypr(colors: dict[str, str]) -> str:
|
||||
lines = [
|
||||
"# Generated from palette.json by generate.py. Do not edit directly.",
|
||||
"# Usage:",
|
||||
"# source = ~/.config/rider-palette/palette.hyprland.conf",
|
||||
"",
|
||||
]
|
||||
for name, value in colors.items():
|
||||
lines.append(f"${name} = rgb({hex_no_hash(value)})")
|
||||
lines.append(f"${camel_from_snake(name)}Alpha = {hex_no_hash(value)}")
|
||||
return "\n".join(lines)
|
||||
|
||||
|
||||
def render_palette_rasi(colors: dict[str, str]) -> str:
|
||||
lines = [
|
||||
"/* Generated from palette.json by generate.py. Do not edit directly. */",
|
||||
"* {",
|
||||
]
|
||||
for name, value in colors.items():
|
||||
lines.append(f" rider-{name.replace('_', '-')}: {value};")
|
||||
lines.append("}")
|
||||
return "\n".join(lines)
|
||||
|
||||
|
||||
def render_tmux_conf(colors: dict[str, str]) -> str:
|
||||
return dedent(
|
||||
f"""
|
||||
# Generated from palette.json by generate.py. Do not edit directly.
|
||||
# Source this near the end of ~/.tmux.conf, after plugin/theme setup.
|
||||
|
||||
set -g status-style "bg={colors['bg']},fg={colors['fg_bright']}"
|
||||
set -g status-left-style "bg={colors['bg']},fg={colors['fg_bright']}"
|
||||
set -g status-right-style "bg={colors['bg']},fg={colors['fg_bright']}"
|
||||
|
||||
set -g message-style "bg={colors['cursor_line']},fg={colors['fg_bright']}"
|
||||
set -g message-command-style "bg={colors['cursor_line']},fg={colors['fg_bright']}"
|
||||
set -g mode-style "bg={colors['selection']},fg={colors['fg_bright']}"
|
||||
|
||||
set -g pane-border-style "fg={colors['border']}"
|
||||
set -g pane-active-border-style "fg={colors['keyword']}"
|
||||
set -g clock-mode-colour "{colors['keyword']}"
|
||||
|
||||
set -g window-status-style "bg={colors['bg']},fg={colors['fg_gutter']}"
|
||||
set -g window-status-current-style "bg={colors['cursor_line']},fg={colors['fg_bright']}"
|
||||
set -g window-status-current-format "#[fg={colors['func']},bg={colors['cursor_line']},bold] #I #W "
|
||||
set -g window-status-format "#[fg={colors['fg_gutter']},bg={colors['bg']}] #I #W "
|
||||
"""
|
||||
).strip()
|
||||
|
||||
|
||||
def render_bash_prompt() -> str:
|
||||
return dedent(
|
||||
"""
|
||||
# Generated from palette.json by generate.py. Do not edit directly.
|
||||
# Rider-colored bash prompt using the shared palette.
|
||||
|
||||
# shellcheck shell=bash
|
||||
|
||||
if [ -r "$HOME/.config/rider-palette/palette.sh" ]; then
|
||||
. "$HOME/.config/rider-palette/palette.sh"
|
||||
fi
|
||||
|
||||
rider_fg() {
|
||||
local hex="${1#\\#}"
|
||||
printf '\\[\\033[38;2;%d;%d;%dm\\]' "$((16#${hex:0:2}))" "$((16#${hex:2:2}))" "$((16#${hex:4:2}))"
|
||||
}
|
||||
|
||||
RIDER_RESET='\\[\\033[0m\\]'
|
||||
|
||||
__rider_git_branch() {
|
||||
command -v git >/dev/null 2>&1 || return 0
|
||||
git rev-parse --is-inside-work-tree >/dev/null 2>&1 || return 0
|
||||
|
||||
local branch
|
||||
branch="$(git symbolic-ref --quiet --short HEAD 2>/dev/null || git rev-parse --short HEAD 2>/dev/null)" || return 0
|
||||
[ -n "$branch" ] || return 0
|
||||
|
||||
printf ' %sgit:%s%s' "$(rider_fg "$RIDER_FUNC")" "$branch" "$RIDER_RESET"
|
||||
}
|
||||
|
||||
__rider_set_bash_prompt() {
|
||||
PS1="${debian_chroot:+($debian_chroot)}$(rider_fg "$RIDER_FG_BRIGHT")\\u@\\h${RIDER_RESET}$(rider_fg "$RIDER_BORDER"):$(rider_fg "$RIDER_KEYWORD")\\w${RIDER_RESET}$(__rider_git_branch)$(rider_fg "$RIDER_BORDER") \\\\$ ${RIDER_RESET}"
|
||||
}
|
||||
|
||||
PROMPT_COMMAND=__rider_set_bash_prompt
|
||||
"""
|
||||
).strip()
|
||||
|
||||
|
||||
def render_p10k_zsh() -> str:
|
||||
return dedent(
|
||||
"""
|
||||
# Generated from palette.json by generate.py. Do not edit directly.
|
||||
# Rider-colored Powerlevel10k overrides using the shared palette.
|
||||
|
||||
[[ -r "$HOME/.config/rider-palette/palette.sh" ]] && source "$HOME/.config/rider-palette/palette.sh"
|
||||
|
||||
typeset -g POWERLEVEL9K_BACKGROUND="$RIDER_BG"
|
||||
|
||||
typeset -g POWERLEVEL9K_MULTILINE_FIRST_PROMPT_PREFIX="%F{$RIDER_BORDER}╭─%f"
|
||||
typeset -g POWERLEVEL9K_MULTILINE_NEWLINE_PROMPT_PREFIX="%F{$RIDER_BORDER}├─%f"
|
||||
typeset -g POWERLEVEL9K_MULTILINE_LAST_PROMPT_PREFIX="%F{$RIDER_BORDER}╰─%f"
|
||||
typeset -g POWERLEVEL9K_MULTILINE_FIRST_PROMPT_SUFFIX="%F{$RIDER_BORDER}─╮%f"
|
||||
typeset -g POWERLEVEL9K_MULTILINE_NEWLINE_PROMPT_SUFFIX="%F{$RIDER_BORDER}─┤%f"
|
||||
typeset -g POWERLEVEL9K_MULTILINE_LAST_PROMPT_SUFFIX="%F{$RIDER_BORDER}─╯%f"
|
||||
|
||||
typeset -g POWERLEVEL9K_LEFT_SUBSEGMENT_SEPARATOR="%F{$RIDER_BORDER}\\uE0B1%f"
|
||||
typeset -g POWERLEVEL9K_RIGHT_SUBSEGMENT_SEPARATOR="%F{$RIDER_BORDER}\\uE0B3%f"
|
||||
|
||||
typeset -g POWERLEVEL9K_OS_ICON_FOREGROUND="$RIDER_FG_BRIGHT"
|
||||
|
||||
typeset -g POWERLEVEL9K_DIR_FOREGROUND="$RIDER_KEYWORD"
|
||||
typeset -g POWERLEVEL9K_DIR_SHORTENED_FOREGROUND="$RIDER_TYPE"
|
||||
typeset -g POWERLEVEL9K_DIR_ANCHOR_FOREGROUND="$RIDER_FUNC"
|
||||
|
||||
typeset -g POWERLEVEL9K_VCS_VISUAL_IDENTIFIER_COLOR="$RIDER_FUNC"
|
||||
typeset -g POWERLEVEL9K_VCS_LOADING_VISUAL_IDENTIFIER_COLOR="$RIDER_BORDER"
|
||||
typeset -g POWERLEVEL9K_VCS_CLEAN_FOREGROUND="$RIDER_FUNC"
|
||||
typeset -g POWERLEVEL9K_VCS_UNTRACKED_FOREGROUND="$RIDER_FIELD"
|
||||
typeset -g POWERLEVEL9K_VCS_MODIFIED_FOREGROUND="$RIDER_NUMBER"
|
||||
|
||||
typeset -g POWERLEVEL9K_STATUS_OK_FOREGROUND="$RIDER_FUNC"
|
||||
typeset -g POWERLEVEL9K_STATUS_OK_PIPE_FOREGROUND="$RIDER_FUNC"
|
||||
typeset -g POWERLEVEL9K_STATUS_ERROR_FOREGROUND="$RIDER_ERROR"
|
||||
typeset -g POWERLEVEL9K_STATUS_ERROR_SIGNAL_FOREGROUND="$RIDER_ERROR"
|
||||
typeset -g POWERLEVEL9K_STATUS_ERROR_PIPE_FOREGROUND="$RIDER_ERROR"
|
||||
|
||||
typeset -g POWERLEVEL9K_COMMAND_EXECUTION_TIME_FOREGROUND="$RIDER_STRING"
|
||||
typeset -g POWERLEVEL9K_TIME_FOREGROUND="$RIDER_FIELD"
|
||||
typeset -g POWERLEVEL9K_DOTNET_VERSION_FOREGROUND="$RIDER_TYPE"
|
||||
typeset -g POWERLEVEL9K_CONTEXT_FOREGROUND="$RIDER_FG_BRIGHT"
|
||||
"""
|
||||
).strip()
|
||||
|
||||
|
||||
def render_readme() -> str:
|
||||
return dedent(
|
||||
"""
|
||||
# Rider Palette Reuse
|
||||
|
||||
`palette.json` is the single source of truth for your shared Rider palette.
|
||||
|
||||
Regenerate all derived files with:
|
||||
|
||||
```bash
|
||||
python3 ~/.config/rider-palette/generate.py
|
||||
```
|
||||
|
||||
Generated outputs:
|
||||
|
||||
- `palette.sh`: shell env vars for prompts and scripts
|
||||
- `palette.css`: CSS variables for Waybar and Wofi
|
||||
- `palette.hyprland.conf`: Hyprlang variables for Hyprland and Hyprlock
|
||||
- `palette.rasi`: Rasi variables for Rofi
|
||||
- `tmux.conf`: tmux status and pane colors
|
||||
- `bash-prompt.sh`: bash prompt using the shared palette
|
||||
- `p10k.zsh`: Powerlevel10k overrides using the shared palette
|
||||
|
||||
This package is meant to be stowed from the dotfiles repo so that
|
||||
`~/.config/rider-palette/*` becomes available to the rest of the system.
|
||||
"""
|
||||
).strip()
|
||||
|
||||
|
||||
def main() -> None:
|
||||
colors = load_palette()
|
||||
|
||||
outputs = {
|
||||
ROOT / "palette.sh": render_palette_sh(colors),
|
||||
ROOT / "palette.css": render_palette_css(colors),
|
||||
ROOT / "palette.hyprland.conf": render_palette_hypr(colors),
|
||||
ROOT / "palette.rasi": render_palette_rasi(colors),
|
||||
ROOT / "tmux.conf": render_tmux_conf(colors),
|
||||
ROOT / "bash-prompt.sh": render_bash_prompt(),
|
||||
ROOT / "p10k.zsh": render_p10k_zsh(),
|
||||
ROOT / "README.md": render_readme(),
|
||||
}
|
||||
|
||||
for path, content in outputs.items():
|
||||
write(path, content)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
39
rider-palette/.config/rider-palette/p10k.zsh
Normal file
39
rider-palette/.config/rider-palette/p10k.zsh
Normal file
@@ -0,0 +1,39 @@
|
||||
# Generated from palette.json by generate.py. Do not edit directly.
|
||||
# Rider-colored Powerlevel10k overrides using the shared palette.
|
||||
|
||||
[[ -r "$HOME/.config/rider-palette/palette.sh" ]] && source "$HOME/.config/rider-palette/palette.sh"
|
||||
|
||||
typeset -g POWERLEVEL9K_BACKGROUND="$RIDER_BG"
|
||||
|
||||
typeset -g POWERLEVEL9K_MULTILINE_FIRST_PROMPT_PREFIX="%F{$RIDER_BORDER}╭─%f"
|
||||
typeset -g POWERLEVEL9K_MULTILINE_NEWLINE_PROMPT_PREFIX="%F{$RIDER_BORDER}├─%f"
|
||||
typeset -g POWERLEVEL9K_MULTILINE_LAST_PROMPT_PREFIX="%F{$RIDER_BORDER}╰─%f"
|
||||
typeset -g POWERLEVEL9K_MULTILINE_FIRST_PROMPT_SUFFIX="%F{$RIDER_BORDER}─╮%f"
|
||||
typeset -g POWERLEVEL9K_MULTILINE_NEWLINE_PROMPT_SUFFIX="%F{$RIDER_BORDER}─┤%f"
|
||||
typeset -g POWERLEVEL9K_MULTILINE_LAST_PROMPT_SUFFIX="%F{$RIDER_BORDER}─╯%f"
|
||||
|
||||
typeset -g POWERLEVEL9K_LEFT_SUBSEGMENT_SEPARATOR="%F{$RIDER_BORDER}\uE0B1%f"
|
||||
typeset -g POWERLEVEL9K_RIGHT_SUBSEGMENT_SEPARATOR="%F{$RIDER_BORDER}\uE0B3%f"
|
||||
|
||||
typeset -g POWERLEVEL9K_OS_ICON_FOREGROUND="$RIDER_FG_BRIGHT"
|
||||
|
||||
typeset -g POWERLEVEL9K_DIR_FOREGROUND="$RIDER_KEYWORD"
|
||||
typeset -g POWERLEVEL9K_DIR_SHORTENED_FOREGROUND="$RIDER_TYPE"
|
||||
typeset -g POWERLEVEL9K_DIR_ANCHOR_FOREGROUND="$RIDER_FUNC"
|
||||
|
||||
typeset -g POWERLEVEL9K_VCS_VISUAL_IDENTIFIER_COLOR="$RIDER_FUNC"
|
||||
typeset -g POWERLEVEL9K_VCS_LOADING_VISUAL_IDENTIFIER_COLOR="$RIDER_BORDER"
|
||||
typeset -g POWERLEVEL9K_VCS_CLEAN_FOREGROUND="$RIDER_FUNC"
|
||||
typeset -g POWERLEVEL9K_VCS_UNTRACKED_FOREGROUND="$RIDER_FIELD"
|
||||
typeset -g POWERLEVEL9K_VCS_MODIFIED_FOREGROUND="$RIDER_NUMBER"
|
||||
|
||||
typeset -g POWERLEVEL9K_STATUS_OK_FOREGROUND="$RIDER_FUNC"
|
||||
typeset -g POWERLEVEL9K_STATUS_OK_PIPE_FOREGROUND="$RIDER_FUNC"
|
||||
typeset -g POWERLEVEL9K_STATUS_ERROR_FOREGROUND="$RIDER_ERROR"
|
||||
typeset -g POWERLEVEL9K_STATUS_ERROR_SIGNAL_FOREGROUND="$RIDER_ERROR"
|
||||
typeset -g POWERLEVEL9K_STATUS_ERROR_PIPE_FOREGROUND="$RIDER_ERROR"
|
||||
|
||||
typeset -g POWERLEVEL9K_COMMAND_EXECUTION_TIME_FOREGROUND="$RIDER_STRING"
|
||||
typeset -g POWERLEVEL9K_TIME_FOREGROUND="$RIDER_FIELD"
|
||||
typeset -g POWERLEVEL9K_DOTNET_VERSION_FOREGROUND="$RIDER_TYPE"
|
||||
typeset -g POWERLEVEL9K_CONTEXT_FOREGROUND="$RIDER_FG_BRIGHT"
|
||||
40
rider-palette/.config/rider-palette/palette.css
Normal file
40
rider-palette/.config/rider-palette/palette.css
Normal file
@@ -0,0 +1,40 @@
|
||||
/* Generated from palette.json by generate.py. Do not edit directly. */
|
||||
:root {
|
||||
--rider-bg: #262626;
|
||||
--rider-gutter: #282828;
|
||||
--rider-cursor-line: #202424;
|
||||
--rider-selection: #08335E;
|
||||
--rider-border: #404040;
|
||||
--rider-fg: #BDBDBD;
|
||||
--rider-fg-bright: #F0F0F0;
|
||||
--rider-fg-gutter: #808080;
|
||||
--rider-comment: #85C46C;
|
||||
--rider-keyword: #6C95EB;
|
||||
--rider-type: #C191FF;
|
||||
--rider-type-alt: #E1BFFF;
|
||||
--rider-func: #39CC9B;
|
||||
--rider-field: #66C3CC;
|
||||
--rider-string: #C9A26D;
|
||||
--rider-number: #ED94C0;
|
||||
--rider-escape: #D688D4;
|
||||
--rider-error: #FF5647;
|
||||
}
|
||||
|
||||
@define-color rider-bg #262626;
|
||||
@define-color rider-gutter #282828;
|
||||
@define-color rider-cursor-line #202424;
|
||||
@define-color rider-selection #08335E;
|
||||
@define-color rider-border #404040;
|
||||
@define-color rider-fg #BDBDBD;
|
||||
@define-color rider-fg-bright #F0F0F0;
|
||||
@define-color rider-fg-gutter #808080;
|
||||
@define-color rider-comment #85C46C;
|
||||
@define-color rider-keyword #6C95EB;
|
||||
@define-color rider-type #C191FF;
|
||||
@define-color rider-type-alt #E1BFFF;
|
||||
@define-color rider-func #39CC9B;
|
||||
@define-color rider-field #66C3CC;
|
||||
@define-color rider-string #C9A26D;
|
||||
@define-color rider-number #ED94C0;
|
||||
@define-color rider-escape #D688D4;
|
||||
@define-color rider-error #FF5647;
|
||||
40
rider-palette/.config/rider-palette/palette.hyprland.conf
Normal file
40
rider-palette/.config/rider-palette/palette.hyprland.conf
Normal file
@@ -0,0 +1,40 @@
|
||||
# Generated from palette.json by generate.py. Do not edit directly.
|
||||
# Usage:
|
||||
# source = ~/.config/rider-palette/palette.hyprland.conf
|
||||
|
||||
$bg = rgb(262626)
|
||||
$bgAlpha = 262626
|
||||
$gutter = rgb(282828)
|
||||
$gutterAlpha = 282828
|
||||
$cursor_line = rgb(202424)
|
||||
$cursorLineAlpha = 202424
|
||||
$selection = rgb(08335E)
|
||||
$selectionAlpha = 08335E
|
||||
$border = rgb(404040)
|
||||
$borderAlpha = 404040
|
||||
$fg = rgb(BDBDBD)
|
||||
$fgAlpha = BDBDBD
|
||||
$fg_bright = rgb(F0F0F0)
|
||||
$fgBrightAlpha = F0F0F0
|
||||
$fg_gutter = rgb(808080)
|
||||
$fgGutterAlpha = 808080
|
||||
$comment = rgb(85C46C)
|
||||
$commentAlpha = 85C46C
|
||||
$keyword = rgb(6C95EB)
|
||||
$keywordAlpha = 6C95EB
|
||||
$type = rgb(C191FF)
|
||||
$typeAlpha = C191FF
|
||||
$type_alt = rgb(E1BFFF)
|
||||
$typeAltAlpha = E1BFFF
|
||||
$func = rgb(39CC9B)
|
||||
$funcAlpha = 39CC9B
|
||||
$field = rgb(66C3CC)
|
||||
$fieldAlpha = 66C3CC
|
||||
$string = rgb(C9A26D)
|
||||
$stringAlpha = C9A26D
|
||||
$number = rgb(ED94C0)
|
||||
$numberAlpha = ED94C0
|
||||
$escape = rgb(D688D4)
|
||||
$escapeAlpha = D688D4
|
||||
$error = rgb(FF5647)
|
||||
$errorAlpha = FF5647
|
||||
23
rider-palette/.config/rider-palette/palette.json
Normal file
23
rider-palette/.config/rider-palette/palette.json
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"name": "rider-black",
|
||||
"colors": {
|
||||
"bg": "#262626",
|
||||
"gutter": "#282828",
|
||||
"cursor_line": "#202424",
|
||||
"selection": "#08335E",
|
||||
"border": "#404040",
|
||||
"fg": "#BDBDBD",
|
||||
"fg_bright": "#F0F0F0",
|
||||
"fg_gutter": "#808080",
|
||||
"comment": "#85C46C",
|
||||
"keyword": "#6C95EB",
|
||||
"type": "#C191FF",
|
||||
"type_alt": "#E1BFFF",
|
||||
"func": "#39CC9B",
|
||||
"field": "#66C3CC",
|
||||
"string": "#C9A26D",
|
||||
"number": "#ED94C0",
|
||||
"escape": "#D688D4",
|
||||
"error": "#FF5647"
|
||||
}
|
||||
}
|
||||
21
rider-palette/.config/rider-palette/palette.rasi
Normal file
21
rider-palette/.config/rider-palette/palette.rasi
Normal file
@@ -0,0 +1,21 @@
|
||||
/* Generated from palette.json by generate.py. Do not edit directly. */
|
||||
* {
|
||||
rider-bg: #262626;
|
||||
rider-gutter: #282828;
|
||||
rider-cursor-line: #202424;
|
||||
rider-selection: #08335E;
|
||||
rider-border: #404040;
|
||||
rider-fg: #BDBDBD;
|
||||
rider-fg-bright: #F0F0F0;
|
||||
rider-fg-gutter: #808080;
|
||||
rider-comment: #85C46C;
|
||||
rider-keyword: #6C95EB;
|
||||
rider-type: #C191FF;
|
||||
rider-type-alt: #E1BFFF;
|
||||
rider-func: #39CC9B;
|
||||
rider-field: #66C3CC;
|
||||
rider-string: #C9A26D;
|
||||
rider-number: #ED94C0;
|
||||
rider-escape: #D688D4;
|
||||
rider-error: #FF5647;
|
||||
}
|
||||
20
rider-palette/.config/rider-palette/palette.sh
Normal file
20
rider-palette/.config/rider-palette/palette.sh
Normal file
@@ -0,0 +1,20 @@
|
||||
# Generated from palette.json by generate.py. Do not edit directly.
|
||||
|
||||
export RIDER_BG="#262626"
|
||||
export RIDER_GUTTER="#282828"
|
||||
export RIDER_CURSOR_LINE="#202424"
|
||||
export RIDER_SELECTION="#08335E"
|
||||
export RIDER_BORDER="#404040"
|
||||
export RIDER_FG="#BDBDBD"
|
||||
export RIDER_FG_BRIGHT="#F0F0F0"
|
||||
export RIDER_FG_GUTTER="#808080"
|
||||
export RIDER_COMMENT="#85C46C"
|
||||
export RIDER_KEYWORD="#6C95EB"
|
||||
export RIDER_TYPE="#C191FF"
|
||||
export RIDER_TYPE_ALT="#E1BFFF"
|
||||
export RIDER_FUNC="#39CC9B"
|
||||
export RIDER_FIELD="#66C3CC"
|
||||
export RIDER_STRING="#C9A26D"
|
||||
export RIDER_NUMBER="#ED94C0"
|
||||
export RIDER_ESCAPE="#D688D4"
|
||||
export RIDER_ERROR="#FF5647"
|
||||
19
rider-palette/.config/rider-palette/tmux.conf
Normal file
19
rider-palette/.config/rider-palette/tmux.conf
Normal file
@@ -0,0 +1,19 @@
|
||||
# Generated from palette.json by generate.py. Do not edit directly.
|
||||
# Source this near the end of ~/.tmux.conf, after plugin/theme setup.
|
||||
|
||||
set -g status-style "bg=#262626,fg=#F0F0F0"
|
||||
set -g status-left-style "bg=#262626,fg=#F0F0F0"
|
||||
set -g status-right-style "bg=#262626,fg=#F0F0F0"
|
||||
|
||||
set -g message-style "bg=#202424,fg=#F0F0F0"
|
||||
set -g message-command-style "bg=#202424,fg=#F0F0F0"
|
||||
set -g mode-style "bg=#08335E,fg=#F0F0F0"
|
||||
|
||||
set -g pane-border-style "fg=#404040"
|
||||
set -g pane-active-border-style "fg=#6C95EB"
|
||||
set -g clock-mode-colour "#6C95EB"
|
||||
|
||||
set -g window-status-style "bg=#262626,fg=#808080"
|
||||
set -g window-status-current-style "bg=#202424,fg=#F0F0F0"
|
||||
set -g window-status-current-format "#[fg=#39CC9B,bg=#202424,bold] #I #W "
|
||||
set -g window-status-format "#[fg=#808080,bg=#262626] #I #W "
|
||||
Reference in New Issue
Block a user