Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for Rio Terminal #14

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 52 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ Take a look at [this thread](https://github.com/pineapplegiant/spaceduck-termina
- [Termux](#termux)
- [Xresources](#xresources)
- [Mintty](#mintty)
- [Rio](#rio)


## Iterm2
Expand Down Expand Up @@ -279,3 +280,54 @@ CursorColour=236,240,193 # #ECF0C1

# vivid
copy `spaceduck-vivid.yml` to your `.config` then add `export LS_COLORS="$(vivid generate ~/.config/spaceduck-vivid.yml)"` to the end of your `.bashrc`

## Rio
For more information on [Rio](https://github.com/raphamorim/rio), check out their repository. To get Spaceduck colors in your Rio terminal, copy the `spaceduck.toml` file to your rio `.config/rio/themes/` directory. Then, if not already created, set up your Rio config file at `.config/rio/config.toml`, and reference the theme using `theme="spaceduck"`

*Note:* You will need to reload your terminal for the changes to take effect.

You can also copy the details here:

```
[colors]
# Regular colors
background = '#0f111b'
black = '#000000'
blue = '#00a3cc'
cursor = '#686f9a'
cyan = '#7a5ccc'
foreground = '#ecf0c1'
green = '#5ccc96'
magenta = '#f2ce00'
red = '#e33400'
white = '#686f9a'
yellow = '#b3a1e6'

# UI colors
tabs = '#686f9a'
tabs-active = '#e33400'
selection-foreground = '#686f9a'
selection-background = '#ecf0c1'

# Dim colors (Refernce to "dark" in most terminal configurations)
dim-black = '#000000'
dim-blue = '#00a3cc'
dim-cyan = '#7a5ccc'
dim-foreground = '#ecf0c1'
dim-green = '#5ccc96'
dim-magenta = '#f2ce00'
dim-red = '#e33400'
dim-white = '#686f9a'
dim-yellow = '#b3a1e6'

# Bright colors
light-black = '#686f9a'
light-red = '#e33400'
light-green = '#5ccc96'
light-yellow = '#f2ce00'
light-blue = '#00a3cc'
light-magenta = '#b3a1e6'
light-cyan = '#7a5ccc'
light-white = '#f0f1ce'
```

40 changes: 40 additions & 0 deletions spaceduck.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
[colors]
# Regular colors
background = '#0f111b'
black = '#000000'
blue = '#00a3cc'
cursor = '#686f9a'
cyan = '#7a5ccc'
foreground = '#ecf0c1'
green = '#5ccc96'
magenta = '#f2ce00'
red = '#e33400'
white = '#686f9a'
yellow = '#b3a1e6'

# UI colors
tabs = '#686f9a'
tabs-active = '#e33400'
selection-foreground = '#686f9a'
selection-background = '#ecf0c1'

# Dim colors
dim-black = '#000000'
dim-blue = '#00a3cc'
dim-cyan = '#7a5ccc'
dim-foreground = '#ecf0c1'
dim-green = '#5ccc96'
dim-magenta = '#f2ce00'
dim-red = '#e33400'
dim-white = '#686f9a'
dim-yellow = '#b3a1e6'

# Bright colors
light-black = '#686f9a'
light-red = '#e33400'
light-green = '#5ccc96'
light-yellow = '#f2ce00'
light-blue = '#00a3cc'
light-magenta = '#b3a1e6'
light-cyan = '#7a5ccc'
light-white = '#f0f1ce'